1 2004-09-28 Diego Novillo <dnovillo@redhat.com>
3 * tree-ssa-loop.c (pass_record_bounds): Do not assign a
6 2004-09-28 Steven Bosscher <stevenb@suse.de>
8 * common.opt (flag_gcse_sm): Disable by default.
9 (flag_gcse_las): Likewise.
10 (flag_web): Likewise. Create from this file.
11 * flags.h: Remove flag_web declaration.
12 * toplev.c (flag_web): Likewise.
13 (process_options): Never set flag_web.
15 2004-09-28 Steven Bosscher <stevenb@suse.de>
17 * Makefile.in (tree-ssa-propagate.o): Depend on vec.h.
18 * tree-ssa-propagate.c: Include vec.h.
19 (interesting_ssa_edges, varying_ssa_edges): Make these VECs
21 (cfg_blocks_add): Assert the block is not already in the worklist.
22 Update uses of interesting_ssa_edges and varying_ssa_edges.
23 (process_ssa_edge_worklist, ssa_prop_init, ssa_prop_fini,
24 ssa_propagate): Likewise.
26 2004-09-28 Joseph S. Myers <jsm@polyomino.org.uk>
29 * c-decl.c (start_decl): Check for initializing incomplete array
31 (build_compound_literal): Check for TYPE being error_mark_node.
32 * c-parse.in (primary): Check for VLA compound literals.
34 2004-09-28 Diego Novillo <dnovillo@redhat.com>
36 * tree-ssa-live.c (calculate_live_on_entry): Fix warnings
37 with --disable-checking.
39 2004-09-28 Devang Patel <dpatel@apple.com>
41 * tree-pretty-print.c (dump_generic_node): Print vector types.
43 2004-09-28 Nick Clifton <nickc@redhat.com>
45 * config/sh/sh.h (INIT_CUMULATIVE_ARGS): Replace with an
46 invocation of the function sh_init_cumulative_args.
47 (INIT_CUMULATIVE_LIBCALL_ARGS): Likewise.
48 (INIT_CUMULATIVE_INCOMING_ARGS): Delete.
49 * config/sh/sh-protos.h: Prototype sh_init_cumulative_args.
50 * config/sh/sh.c (sh_init_cumulative_args): New function based
51 on the contents of the old INIT_CUMULATIVE_ARGS macro but with a
52 heuristic added to determine the setting of force_mem when a
53 library function is being called.
55 2004-09-28 Diego Novillo <dnovillo@redhat.com>
57 * tree-ssa-loop-im.c (single_reachable_address) <PHI_NODE>:
58 Skip constant arguments.
60 2004-09-28 Diego Novillo <dnovillo@redhat.com>
62 * tree-ssa-alias.c (create_name_tags): If PTR points to a
63 volatile type, mark the tag volatile.
64 (get_tmt_for): If TAG_TYPE is a volatile type, mark the tag
67 2004-09-28 Andrew Pinski <pinskia@physics.uc.edu>
69 * tree.def (vec_cond_expr): Fix. Change 'e'
72 2004-09-28 Kazu Hirata <kazu@cs.umass.edu>
74 * basic-block.h: Fix a comment typo.
76 2004-09-28 Kazu Hirata <kazu@cs.umass.edu>
78 * optabs.c, optabs.h: Fix comment typos.
80 2004-09-28 Eric Botcazou <ebotcazou@act-europe.fr>
82 * config/sparc/sparc.md (call_address_struct_value_sp32):
83 Properly mask the immediate field of the 'unimp' instruction.
84 (call_symbolic_struct_value_sp32): Likewise.
86 2004-09-24 Ben Elliston <bje@au.ibm.com>
87 Steven Bosscher <stevenb@suse.de>
88 Andrew Pinski <pinskia@physics.uc.edu>
90 Merge from edge-vector-branch:
91 * basic-block.h: Include vec.h, errors.h. Instantiate a VEC(edge).
92 (struct edge_def): Remove pred_next, succ_next members.
93 (struct basic_block_def): Remove pred, succ members. Add preds
94 and succs members of type VEC(edge).
95 (FALLTHRU_EDGE): Redefine using EDGE_SUCC.
96 (BRANCH_EDGE): Likewise.
97 (EDGE_CRITICAL_P): Redefine using EDGE_COUNT.
98 (EDGE_COUNT, EDGE_I, EDGE_PRED, EDGE_SUCC): New.
100 (ei_start, ei_last, ei_end_p, ei_one_before_end_p): New.
101 (ei_next, ei_prev, ei_edge, ei_safe_edge): Likewise.
102 (FOR_EACH_EDGE): New.
103 * bb-reorder.c (find_traces): Use FOR_EACH_EDGE and EDGE_* macros
105 (rotate_loop): Likewise.
106 (find_traces_1_route): Likewise.
107 (bb_to_key): Likewise.
108 (connect_traces): Likewise.
109 (copy_bb_p): Likewise.
110 (find_rarely_executed_basic_blocks_and_crossing_edges): Likewise.
111 (add_labels_and_missing_jumps): Likewise.
112 (fix_up_fall_thru_edges): Likewise.
113 (find_jump_block): Likewise.
114 (fix_crossing_conditional_branches): Likewise.
115 (fix_crossing_unconditional_branches): Likewise.
116 (add_reg_crossing_jump_notes): Likewise.
117 * bt-load.c (augment_live_range): Likewise.
118 * cfg.c (clear_edges): Likewise.
119 (unchecked_make_edge): Likewise.
120 (cached_make_edge): Likewise.
121 (make_single_succ_edge): Likewise.
122 (remove_edge): Likewise.
123 (redirect_edge_succ_nodup): Likewise.
124 (check_bb_profile): Likewise.
125 (dump_flow_info): Likewise.
126 (alloc_aux_for_edges): Likewise.
127 (clear_aux_for_edges): Likewise.
128 (dump_cfg_bb_info): Likewise.
129 * cfganal.c (forwarder_block_p): Likewise.
130 (can_fallthru): Likewise.
131 (could_fall_through): Likewise.
132 (mark_dfs_back_edges): Likewise.
133 (set_edge_can_fallthru_flag): Likewise.
134 (find_unreachable_blocks): Likewise.
135 (create_edge_list): Likewise.
136 (verify_edge_list): Likewise.
137 (add_noreturn_fake_exit_edges): Likewise.
138 (connect_infinite_loops_to_exit): Likewise.
139 (flow_reverse_top_sort_order_compute): Likewise.
140 (flow_depth_first_order_compute): Likewise.
141 (flow_preorder_transversal_compute): Likewise.
142 (flow_dfs_compute_reverse_execute): Likewise.
143 (dfs_enumerate_from): Likewise.
144 (compute_dominance_frontiers_1): Likewise.
145 * cfgbuild.c (make_edges): Likewise.
146 (compute_outgoing_frequencies): Likewise.
147 (find_many_sub_basic_blocks): Likewise.
148 (find_sub_basic_blocks): Likewise.
149 * cfgcleanup.c (try_simplify_condjump): Likewise.
150 (thread_jump): Likewise.
151 (try_forward_edges): Likewise.
152 (merge_blocks_move): Likewise.
153 (outgoing_edges_match): Likewise.
154 (try_crossjump_to_edge): Likewise.
155 (try_crossjump_bb): Likewise.
156 (try_optimize_cfg): Likewise.
157 (merge_seq_blocks): Likewise.
158 * cfgexpand.c (expand_gimple_tailcall): Likewise.
159 (expand_gimple_basic_block): Likewise.
160 (construct_init_block): Likewise.
161 (construct_exit_block): Likewise.
162 * cfghooks.c (verify_flow_info): Likewise.
164 (delete_basic_block): Likewise.
165 (split_edge): Likewise.
166 (merge_blocks): Likewise.
167 (make_forwarder_block): Likewise.
168 (tidy_fallthru_edges): Likewise.
169 (can_duplicate_block_p): Likewise.
170 (duplicate_block): Likewise.
171 * cfglayout.c (fixup_reorder_chain): Likewise.
172 (fixup_fallthru_exit_predecessor): Likewise.
173 (can_copy_bbs_p): Likewise.
174 (copy_bbs): Likewise.
175 * cfgloop.c (flow_loops_cfg_dump): Likewise.
176 (flow_loop_entry_edges_find): Likewise.
177 (flow_loop_exit_edges_find): Likewise.
178 (flow_loop_nodes_find): Likewise.
179 (mark_single_exit_loops): Likewise.
180 (flow_loop_pre_header_scan): Likewise.
181 (flow_loop_pre_header_find): Likewise.
182 (update_latch_info): Likewise.
183 (canonicalize_loop_headers): Likewise.
184 (flow_loops_find): Likewise.
185 (get_loop_body_in_bfs_order): Likewise.
186 (get_loop_exit_edges): Likewise.
187 (num_loop_branches): Likewise.
188 (verify_loop_structure): Likewise.
189 (loop_latch_edge): Likewise.
190 (loop_preheader_edge): Likewise.
191 * cfgloopanal.c (mark_irreducible_loops): Likewise.
192 (expected_loop_iterations): Likewise.
193 * cfgloopmanip.c (remove_bbs): Likewise.
194 (fix_bb_placement): Likewise.
195 (fix_irreducible_loops): Likewise.
196 (remove_path): Likewise.
197 (scale_bbs_frequencies): Likewise.
200 (fix_loop_placement): Likewise.
201 (loop_delete_branch_edge): Likewise.
202 (duplicate_loop_to_header_edge): Likewise.
203 (mfb_keep_just): Likewise.
204 (create_preheader): Likewise.
205 (force_single_succ_latches): Likewise.
206 (loop_split_edge_with): Likewise.
207 (create_loop_notes): Likewise.
208 * cfgrtl.c (rtl_split_block): Likewise.
209 (rtl_merge_blocks): Likewise.
210 (rtl_can_merge_blocks): Likewise.
211 (try_redirect_by_replacing_jump): Likewise.
212 (force_nonfallthru_and_redirect): Likewise.
213 (rtl_tidy_fallthru_edge): Likewise.
214 (commit_one_edge_insertion): Likewise.
215 (commit_edge_insertions): Likewise.
216 (commit_edge_insertions_watch_calls): Likewise.
217 (rtl_verify_flow_info_1): Likewise.
218 (rtl_verify_flow_info): Likewise.
219 (purge_dead_edges): Likewise.
220 (cfg_layout_redirect_edge_and_branch): Likewise.
221 (cfg_layout_can_merge_blocks_p): Likewise.
222 (rtl_flow_call_edges_add): Likewise.
223 * cse.c (cse_cc_succs): Likewise.
224 * df.c (hybrid_search): Likewise.
225 * dominance.c (calc_dfs_tree_nonrec): Likewise.
226 (calc_dfs_tree): Likewise.
227 (calc_idoms): Likewise.
228 (recount_dominator): Likewise.
229 * domwalk.c (walk_dominator_tree): Likewise.
230 * except.c (emit_to_new_bb_before): Likewise.
231 (connect_post_landing_pads): Likewise.
232 (sjlj_emit_function_enter): Likewise.
233 (sjlj_emit_function_exit): Likewise.
234 (finish_eh_generation): Likewise.
235 * final.c (compute_alignments): Likewise.
236 * flow.c (calculate_global_regs_live): Likewise.
237 (initialize_uninitialized_subregs): Likewise.
238 (init_propagate_block_info): Likewise.
239 * function.c (thread_prologue_and_epilogue_insns): Likewise.
240 * gcse.c (find_implicit_sets): Likewise.
241 (bypass_block): Likewise.
242 (bypass_conditional_jumps): Likewise.
243 (compute_pre_data): Likewise.
244 (insert_insn_end_bb): Likewise.
245 (insert_store): Likewise.
246 (remove_reachable_equiv_notes): Likewise.
247 * global.c (global_conflicts): Likewise.
248 (calculate_reg_pav): Likewise.
249 * graph.c (print_rtl_graph_with_bb): Likewise.
250 * ifcvt.c (mark_loop_exit_edges): Likewise.
251 (merge_if_block): Likewise.
252 (find_if_header): Likewise.
253 (block_jumps_and_fallthru_p): Likewise.
254 (find_if_block): Likewise.
255 (find_cond_trap): Likewise.
256 (block_has_only_trap): Likewise.
257 (find_if_case1): Likewise.
258 (find_if_case_2): Likewise.
259 * lambda-code.c (lambda_loopnest_to_gcc_loopnest): Likewise.
260 (perfect_nestify): Likewise.
261 * lcm.c (compute_antinout_edge): Likewise.
262 (compute_laterin): Likewise.
263 (compute_available): Likewise.
264 (compute_nearerout): Likewise.
265 * loop-doloop.c (doloop_modify): Likewise.
266 * loop-init.c (loop_optimizer_init): Likewise.
267 * loop-invariant.c (find_exits): Likewise.
268 * loop-iv.c (simplify_using_initial_values): Likewise.
269 (check_simple_exit): Likewise.
270 (find_simple_exit): Likewise.
271 * loop-unroll.c (peel_loop_completely): Likewise.
272 (unroll_loop_constant_iterations): Likewise.
273 (unroll_loop_runtime_iterations): Likewise.
274 * loop-unswitch.c (may_unswitch_on): Likewise.
275 (unswitch_loop): Likewise.
276 * modulo-sched.c (generate_prolog_epilog): Likewise.
277 (sms_schedule): Likewise.
278 * postreload-gcse.c (eliminate_partially_redundant_load):
280 * predict.c (can_predict_insn_p): Likewise.
281 (set_even_probabilities): Likewise.
282 (combine_predictions_for_bb): Likewise.
283 (predict_loops): Likewise.
284 (estimate_probability): Likewise.
285 (tree_predict_by_opcode): Likewise.
286 (tree_estimate_probability): Likewise.
287 (last_basic_block_p): Likewise.
288 (propagate_freq): Likewise.
289 (estimate_loops_at_level): Likewise.
290 (estimate_bb_frequencies): Likewise.
291 * profile.c (instrument_edges): Likewise.
292 (get_exec_counts): Likewise.
293 (compute_branch_probabilities): Likewise.
294 (branch_prob): Likewise.
295 * ra-build.c (live_in): Likewise.
296 * ra-rewrite.c (rewrite_program2): Likewise.
297 * ra.c (reg_alloc): Likewise.
298 * reg-stack.c (reg_to_stack): Likewise.
299 (convert_regs_entry): Likewise.
300 (compensate_edge): Likewise.
301 (convert_regs_1): Likewise,
302 (convert_regs_2): Likewise.
303 (convert_regs): Likewise.
304 * regrename.c (copyprop_hardreg_forward): Likewise.
305 * reload1.c (fixup_abnormal_edges): Likewise.
306 * sbitmap.c (sbitmap_intersection_of_succs): Likewise.
307 (sbitmap_insersection_of_preds): Likewise.
308 (sbitmap_union_of_succs): Likewise.
309 (sbitmap_union_of_preds): Likewise.
310 * sched-ebb.c (compute_jump_reg_dependencies): Likewise.
311 (fix_basic_block_boundaries): Likewise.
312 (sched_ebbs): Likewise.
313 * sched-rgn.c (build_control_flow): Likewise.
314 (find_rgns): Likewise.
315 * tracer.c (find_best_successor): Likewise.
316 (find_best_predecessor): Likewise.
317 (tail_duplicate): Likewise.
318 * tree-cfg.c (make_edges): Likewise.
319 (make_ctrl_stmt_edges): Likewise.
320 (make_goto_expr_edges): Likewise.
321 (tree_can_merge_blocks_p): Likewise.
322 (tree_merge_blocks): Likewise.
323 (cfg_remove_useless_stmts_bb): Likewise.
324 (remove_phi_nodes_and_edges_for_unreachable_block): Likewise.
325 (tree_block_forwards_to): Likewise.
326 (cleanup_control_expr_graph): Likewise.
327 (find_taken_edge): Likewise.
328 (dump_cfg_stats): Likewise.
329 (tree_cfg2vcg): Likewise.
330 (disband_implicit_edges): Likewise.
331 (tree_find_edge_insert_loc): Likewise.
332 (bsi_commit_edge_inserts): Likewise.
333 (tree_split_edge): Likewise.
334 (tree_verify_flow_info): Likewise.
335 (tree_make_forwarder_block): Likewise.
336 (tree_forwarder_block_p): Likewise.
337 (thread_jumps): Likewise.
338 (tree_try_redirect_by_replacing_jump): Likewise.
339 (tree_split_block): Likewise.
340 (add_phi_args_after_copy_bb): Likewise.
341 (rewrite_to_new_ssa_names_bb): Likewise.
342 (dump_function_to_file): Likewise.
343 (print_pred_bbs): Likewise.
344 (print_loop): Likewise.
345 (tree_flow_call_edges_add): Likewise.
346 (split_critical_edges): Likewise.
347 (execute_warn_function_return): Likewise.
348 (extract_true_false_edges_from_block): Likewise.
349 * tree-if-conv.c (tree_if_conversion): Likewise.
350 (if_convertable_bb_p): Likewise.
351 (find_phi_replacement_condition): Likewise.
352 (combine_blocks): Likewise.
353 * tree-into-ssa.c (compute_global_livein): Likewise.
354 (ssa_mark_phi_uses): Likewise.
355 (ssa_rewrite_initialize_block): Likewise.
356 (rewrite_add_phi_arguments): Likewise.
357 (ssa_rewrite_phi_arguments): Likewise.
358 (insert_phi_nodes_for): Likewise.
359 (rewrite_into_ssa): Likewise.
360 (rewrite_ssa_into_ssa): Likewise.
361 * tree-mudflap.c (mf_build_check_statement_for): Likewise.
362 * tree-outof-ssa.c (coalesce_abnormal_edges): Likewise.
363 (rewrite_trees): Likewise.
364 * tree-pretty-print.c (dump_bb_header): Likewise.
365 (dump_implicit_edges): Likewise.
366 * tree-sra.c (insert_edge_copies): Likewise.
367 (find_obviously_necessary_stmts): Likewise.
368 (remove_data_stmt): Likewise.
369 * tree-ssa-dom.c (thread_across_edge): Likewise.
370 (dom_opt_finalize_block): Likewise.
371 (single_incoming_edge_ignoring_loop_edges): Likewise.
372 (record_equivalences_from_incoming_edges): Likewise.
373 (cprop_into_successor_phis): Likewise.
374 * tree-ssa-live.c (live_worklist): Likewise.
375 (calculate_live_on_entry): Likewise.
376 (calculate_live_on_exit): Likewise.
377 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Likewise.
378 (copy_loop_headers): Likewise.
379 * tree-ssa-loop-im.c (loop_commit_inserts): Likewise.
380 (fill_always_executed_in): Likewise.
381 * tree-ssa-loop-ivcanon.c (create_canonical_iv): Likewise.
382 * tree-ssa-loop-ivopts.c (find_interesting_uses): Likewise.
383 (compute_phi_arg_on_exit): Likewise.
384 * tree-ssa-loop-manip.c (add_exit_phis_edge): Likewise.
385 (get_loops_exit): Likewise.
386 (split_loop_exit_edge): Likewise.
387 (ip_normal_pos): Likewise.
388 * tree-ssa-loop-niter.c (simplify_using_initial_conditions):
390 * tree-ssa-phiopt.c (candidate_bb_for_phi_optimization): Likewise.
391 (replace_phi_with_stmt): Likewise.
392 (value_replacement): Likewise.
393 * tree-ssa-pre.c (compute_antic_aux): Likewise.
394 (insert_aux): Likewise.
395 (init_pre): Likewise.
396 * tree-ssa-propagate.c (simulate_stmt): Likewise.
397 (simulate_block): Likewise.
398 (ssa_prop_init): Likewise.
399 * tree-ssa-threadupdate.c (thread_block): Likewise.
400 (create_block_for_threading): Likewise.
401 (remove_last_stmt_and_useless_edges): Likewise.
402 * tree-ssa.c (verify_phi_args): Likewise.
403 (verify_ssa): Likewise.
404 * tree_tailcall.c (independent_of_stmt_p): Likewise.
405 (find_tail_calls): Likewise.
406 (eliminate_tail_call): Likewise.
407 (tree_optimize_tail_calls_1): Likewise.
408 * tree-vectorizer.c (vect_transform_loop): Likewise.
409 * var-tracking.c (prologue_stack_adjust): Likewise.
410 (vt_stack_adjustments): Likewise.
411 (vt_find_locations): Likewise.
412 * config/frv/frv.c (frv_ifcvt_modify_tests): Likewise.
413 * config/i386/i386.c (ix86_pad_returns): Likewise.
414 * config/ia64/ia64.c (ia64_expand_prologue): Likewise.
415 * config/rs6000/rs6000.c (rs6000_emit_prologue): Likewise.
417 2004-09-28 Eric Botcazou <ebotcazou@libertysurf.fr>
420 * config/sparc/sparc.c (struct machine_function): New field
421 'leaf_function_p' and 'prologue_data_valid_p'.
422 (sparc_leaf_function_p, sparc_prologue_data_valid_p): New macro
423 to conveniently access the above fields.
424 (TARGET_LATE_RTL_PROLOGUE_EPILOGUE): Delete.
425 (eligible_for_return_delay): Use 'sparc_leaf_function_p' instead
426 of the generic flavor 'current_function_uses_only_leaf_regs'.
427 (eligible_for_sibcall_delay): Likewise.
428 (sparc_expand_prologue): Compute 'sparc_leaf_function_p' and set
429 'sparc_prologue_data_valid_p'. Use 'sparc_leaf_function_p'.
430 (sparc_asm_function_prologue): Add sanity check for the assumption
431 made in 'sparc_expand_prologue'. Use 'sparc_leaf_function_p'.
432 (sparc_can_use_return_insn_p): New function.
433 (sparc_expand_epilogue): Use 'sparc_leaf_function_p'.
434 (output_restore): Likewise.
435 (output_sibcall): Likewise.
436 (sparc_output_mi_thunk): Likewise.
437 * config/sparc/sparc-protos.h (sparc_can_use_return_insn_p): Declare.
438 * config/sparc/sparc.md (return): New expander.
440 * config/sparc/sparc.h (INITIAL_ELIMINATION_OFFSET): Minor tweak.
442 2004-09-27 Mark Mitchell <mark@codesourcery.com>
445 * stor-layout.c (layout_decl): Use fold_convert, not convert.
446 (bit_from_pos): Likewise.
447 (byte_from_pos): Likewise.
448 (pos_from_bit): Likewise.
449 (normalize_offset): Likewise.
450 (place_field): Likewise.
451 (finalize_type_size): Likewise.
452 (layout_type): Likewise.
453 * tree.c (build_index_type): Likewise.
455 2004-09-27 Devang Patel <dpatel@apple.com>
457 * expr.c (expand_expr_real_1): Handle VEC_COND_EXPR.
458 * genopinit.c (optabs): New entry for vcond_gen_code and
460 * optabs.c (vcond_gen_code, vcondu_gen_code): New optabs.
461 (get_rtx_code): New function.
462 (vector_compare_rtx): New function.
463 (init_optabs): Initialize vcond_gen_code and vcondu_gen_code.
464 (expand_vec_cond_expr_p): New function.
465 (expand_vec_cond_expr): New function.
466 (get_vcond_icode): New function.
467 * optabs.h (expand_vec_cond_expr, expand_vec_cond_expr_p): New externs.
468 (vcond_gen_code, vcondu_gen_code): Same.
470 2004-09-27 Kelley Cook <kcook@gcc.gnu.org>
472 * Makefile.in (STAGESTUFF): Split into ...
473 (STAGECOPYSTUFF, STAGEMOVESTUFF): ... these.
474 (mostlyclean): Update.
475 (stage1-start, stage2-start, stage3-start, stage4-start,
476 stageprofile-start, stagefeedback-start): Copy the STAGECOPYSTUFF.
477 Move the STAGEMOVESTUFF.
479 2004-09-27 Eric Botcazou <ebotcazou@libertysurf.fr>
481 * system.h (getpagesize): Return 'int' instead of 'long'.
483 2004-09-27 Michael Matz <matz@suse.de>
487 * bitmap.h (bmp_iter_single_init, bmp_iter_and_not_init,
488 bmp_iter_and_init): Shift by bit_in_word.
490 2004-09-27 Kelley Cook <kcook@gcc.gnu.org>
492 * aclocal.m4: Quote m4_includes. Include ../config/gcc-lib-path.m4.
493 * configure.ac: Don't sinclude it here.
494 * configure: Regenerate.
496 2004-09-27 Dorit Naishlos <dorit@il.ibm.com>
498 * config/rs6000/rs6000.c (rs6000_legitimate_address, print_operand):
501 2004-09-27 Joseph S. Myers <jsm@polyomino.org.uk>
504 * c-typeck.c (build_component_ref): Name type involved in
505 diagnostic for structure or union without a member of the given
508 2004-09-27 DJ Delorie <dj@redhat.com>
510 * config/stormy16/stormy16.c (xstormy16_asm_output_aligned_common):
511 .comm alignment is bytes, not bits.
513 2004-09-27 Devang Patel <dpatel@apple.com>
515 * tree-pretty-print.c (dump_generic_node): Print VEC_COND_EXPR.
516 (print_call_name): Do not print VEC_COND_EXPR.
518 2004-09-27 Devang Patel <dpatel@apple.com>
520 * tree-pretty-print.c (dump_generic_node): Print VEC_COND_EXPR.
522 2004-09-27 Jan Hubicka <jh@suse.cz>
524 * i386.c (athlon_cost, k8_cost): Set BRANCH_COST to 5.
526 2004-09-27 Kazu Hirata <kazu@cs.umass.edu>
528 * bitmap.h: Fix a comment typo.
530 2004-09-27 Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
532 * libgcc2.c (getpagesize): Change type of return value to int.
534 2004-09-26 Matt Austern <austern@apple.com>
536 * ggc-page.c (GGC_QUIRE_SIZE): Bump up from 16 to 256 if we're
539 2004-09-26 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
541 * bitmap.h (EXECUTE_IF_SET_IN_BITMAP, EXECUTE_IF_AND_COMPL_IN_BITMAP,
542 EXECUTE_IF_AND_IN_BITMAP): Changed to iterator style.
543 (bitmap_iterator): New type.
544 (bmp_iter_common_next_1, bmp_iter_single_next_1, bmp_iter_single_init,
545 bmp_iter_end_p, bmp_iter_single_next, bmp_iter_and_not_next_1,
546 bmp_iter_and_not_init, bmp_iter_and_not_next, bmp_iter_and_next_1,
547 bmp_iter_and_init, bmp_iter_and_next): New functions.
548 * basic-block.h (EXECUTE_IF_SET_IN_REG_SET,
549 EXECUTE_IF_AND_COMPL_IN_REG_SET, EXECUTE_IF_AND_IN_REG_SET): Changed to
550 use iterator-style EXECUTE_IF_IN_BITMAP macros.
551 * bitmap.c (bitmap_print): Ditto.
552 * bt-load.c (clear_btr_from_live_range, add_btr_to_live_range,
553 btr_def_live_range): Ditto.
554 * cfganal.c (compute_dominance_frontiers_1) Ditto.
555 * cgraphunit.c (convert_UIDs_in_bitmap, cgraph_characterize_statics):
557 * ddg.c (build_inter_loop_deps): Ditto.
558 * df.c (FOR_EACH_BB_IN_BITMAP, df_bb_reg_info_compute, df_refs_update):
560 * except.c (remove_eh_handler): Ditto.
561 * flow.c (reg_set_to_hard_reg_set): Ditto.
562 * gcse.c (clear_modify_mem_tables): Ditto.
563 * global.c (build_insn_chain): Ditto.
564 * ifcvt.c (dead_or_predicable): Ditto.
565 * loop-invariant.c (get_inv_cost, set_move_mark, move_invariant_reg):
567 * ra-build.c (livethrough_conflicts_bb, conflicts_between_webs): Ditto.
568 * ra-rewrite.c (reloads_to_loads, rewrite_program2,
569 detect_web_parts_to_rebuild, delete_useless_defs, actual_spill): Ditto.
570 * tree-cfg.c (allocate_ssa_names, tree_duplicate_sese_region,
571 tree_purge_all_dead_eh_edges): Ditto.
572 * tree-into-ssa.c (compute_global_livein, insert_phi_nodes,
573 insert_phi_nodes_for, debug_def_blocks_r, invalidate_name_tags,
574 rewrite_ssa_into_ssa): Ditto.
575 * tree-outof-ssa.c (find_replaceable_exprs): Ditto.
576 * tree-sra.c (scan_function, decide_instantiations, scalarize_parms):
578 * tree-ssa-alias.c (init_alias_info, compute_points_to_and_addr_escape,
579 compute_flow_sensitive_aliasing, maybe_create_global_var,
580 dump_points_to_info_for): Ditto.
581 * tree-ssa-dce.c (EXECUTE_IF_CONTROL_DEPENDENT): Ditto.
582 * tree-ssa-dse.c (dse_finalize_block): Ditto.
583 * tree-ssa-live.c (live_worklist, calculate_live_on_entry,
584 calculate_live_on_exit, build_tree_conflict_graph, dump_live_info):
586 * tree-ssa-loop-ivopts.c (find_induction_variables,
587 find_interesting_uses, add_old_ivs_candidates, alloc_use_cost_map,
588 determine_use_iv_costs, determine_set_costs, find_best_candidate,
589 set_cost_up_to, create_new_ivs, remove_unused_ivs, free_loop_data):
591 * tree-ssa-loop-manip.c (add_exit_phis_var, add_exit_phis): Ditto.
592 * tree-ssa-operands.c (get_asm_expr_operands, add_call_clobber_ops,
593 add_call_read_ops): Ditto.
594 * tree-ssa-pre.c (bitmap_print_value_set, insert_aux): Ditto.
596 2004-09-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
598 * pa.c (print_operand): Use non-trapping completers for UNLE, UNLT,
599 UNGE, UNGT, UNEQ, UNORDERED and ORDERED comparisons.
601 2004-09-26 Ulrich Weigand <uweigand@de.ibm.com>
603 * builtins.c (expand_builtin_memcmp): Adjust MEM_SIZE to
604 reflect size of memory regions being compared.
606 2004-09-26 Ulrich Weigand <uweigand@de.ibm.com>
608 * builtins.c (get_memory_rtx): Set mem attributes for non-ADDR_EXPR
609 expressions. Always clear MEM_SIZE and alias set.
611 2004-09-26 Roger Sayle <roger@eyesopen.com>
612 Giovanni Bajo <giovannibajo@gcc.gnu.org>
615 * stor-layout.c (compute_record_mode): For records with a single
616 field, only use the field's mode if its size matches what we'd
617 have choosen for the record ourselves. This forces the use of
618 BLKmode for packed records that don't completely fill a mode.
620 2004-09-26 Roger Sayle <roger@eyesopen.com>
623 * combine.c (force_to_mode): Remove dubious early return test that
624 inhibits further optimization.
626 2004-09-26 Kazu Hirata <kazu@cs.umass.edu>
628 * profile.c: Fix a comment typo.
630 2004-09-26 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
633 * tree-ssa-loop-im.c (for_each_index): Call callback for component_refs
635 * tree-ssa-loop-ivopts.c (abnormal_ssa_name_p): New function.
636 (idx_contains_abnormal_ssa_name_p): Scan step and lower bound for
638 (expr_invariant_in_loop_p): New function.
639 (idx_find_step): Handle step and lower bound for ARRAY_REFs. Handle
640 component_ref_field_offset for COMPONENT_REFs. Do not allow
641 ALIGN_INDIRECT_REFs and MISALIGNED_INDIRECT_REFs.
642 (add_address_candidates): Do not handle ALIGN_INDIRECT_REFs and
643 MISALIGNED_INDIRECT_REFs.
644 (idx_remove_ssa_names): Handle step and lower bound for ARRAY_REFs.
645 (rewrite_address_base): Do not handle ALIGN_INDIRECT_REFs and
646 MISALIGNED_INDIRECT_REFs.
648 2004-09-26 Joseph S. Myers <jsm@polyomino.org.uk>
651 * gcc.c (cpp_options, cc1_options): Preserve relative order of
652 -std and -ansi options.
654 2004-09-26 Jan Hubicka <jh@suse.cz>
656 * dwarf2out.c (dwarf2out_finish): Set parent to comp_unit_die
657 for nested functions whose proper parent has not been output.
659 * profile.c (compute_branch_probabilities): Use REG_BR_PROB notes
660 when re-constructing profile previously invalidated by loop.
662 2004-09-25 Dale Johannesen <dalej@apple.com>
664 * tree-gimple.c: Move GIMPLE definition...
665 * doc/tree-ssa.texi: here.
667 2004-09-25 Kazu Hirata <kazu@cs.umass.edu>
669 * tree-vectorizer.c: Fix a comment typo.
671 2004-09-25 Kazu Hirata <kazu@cs.umass.edu>
673 * c-typeck.c, defaults.h, dwarf.h, dwarf2out.c, fold-const.c,
674 gthr-dce.h, gthr-posix.h, gthr-solaris.h, gthr-win32.h,
675 lambda-code.c, lambda-mat.c, libgcc2.c, stmt.c,
676 tree-ssa-pre.c, tree-vn.c, tree.h: Fix comment formatting.
678 2004-09-25 Kazu Hirata <kazu@cs.umass.edu>
680 * tree-ssa-loop-unswitch.c: Fix a comment typo.
682 2004-09-25 Kazu Hirata <kazu@cs.umass.edu>
684 * doc/passes.texi: Fix a typo.
686 2004-09-25 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
688 * tree-optimize.c (init_tree_optimization_passes): Add
690 * tree-pass.h (pass_record_bounds): Declare.
691 * tree-ssa-loop.c (tree_ssa_loop_bounds, pass_record_bounds):
694 2004-09-25 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
696 PR tree-optimization/17474
697 * tree-ssa-ccp.c (maybe_fold_offset_to_component_ref): Determine
698 offset of the field correctly when DECL_FIELD_BIT_OFFSET != 0.
700 2004-09-25 Jan Hubicka <jh@suse.cz>
702 * predict.c (counts_to_freqs): Make global.
703 * predict.h (counts_to_freqa): Declare.
704 * profile.c (compute_branch_probabilities): Compute frequencies
705 * tree-profile.c (do_tree_profiling): Refine conditional on when
706 tree profiling pass is needed.
708 * passes.c (rest_of_handle_cfg): Disable const/pure function
709 detection when doing tree based profiling.
711 * tree-inline.c (expand_call_inline): Fix incorrectly reversed
714 2004-09-25 Richard Sandiford <rsandifo@redhat.com>
716 * config/mips/mips.h (struct mips_args): Clarify comments.
717 * config/mips/mips.c (struct mips_arg_info): Likewise.
718 (mips_arg_info): Don't allow fpr_p to affect the register or
719 stack alignment. Remove o64 silliness.
720 (function_arg): Deal with the o32 float,float case specially.
722 2004-09-25 Richard Sandiford <rsandifo@redhat.com>
724 * config/mips/mips.md (loadx, storex): Define for V2SF.
726 2004-09-25 Ulrich Weigand <uweigand@de.ibm.com>
728 * config/s390/s390-protos.h (s390_back_chain_rtx): Add prototype.
729 * config/s390/s390.c (s390_back_chain_rtx): New function.
730 * config/s390/s390.md ("allocate_stack"): Use s390_back_chain_rtx.
731 Call anti_adjust_stack.
732 ("restore_stack_block"): Use s390_back_chain_rtx. Enable pattern
733 only if compiling with back chain.
734 ("save_stack_nonlocal", "restore_stack_nonlocal"): Save/restore
735 back chain only if back chain enabled. Use s390_back_chain_rtx.
737 2004-09-25 Joseph S. Myers <jsm@polyomino.org.uk>
739 * doc/trouble.texi: Remove obsolete information. Update
740 information on how to regenerate fixincluded headers.
742 2004-09-25 Joseph S. Myers <jsm@polyomino.org.uk>
745 * doc/invoke.texi: Document that
746 -Wno-error-implicit-function-declaration is not accepted.
748 2004-09-24 Richard Henderson <rth@redhat.com>
750 * config/alpha/alpha.h (UNITS_PER_SIMD_WORD): New.
751 * config/alpha/alpha.c (alpha_vector_mode_supported_p): Don't depend
753 (alpha_expand_mov): Allow unaligned vectors.
754 (alpha_expand_unaligned_store): Use CONST0_RTX.
755 (TARGET_VECTORIZE_MISALIGNED_MEM_OK): New.
757 2004-09-24 Jeff Law <law@redhat.com>
759 * tree-ssa-dom.c (dom_opt_finalize_block): Fix violation of strict
761 (simplify_cond_and_lookup_avail_expr): Likewise.
763 2004-09-24 Joseph S. Myers <jsm@polyomino.org.uk>
766 * doc/extend.texi (Unnamed Fields): Remove "." from end of long
767 title. Document interaction with -fms-extensions.
768 * doc/invoke.texi (-fms-extensions): Refer to Unnamed Fields
771 2004-09-24 Joseph S. Myers <jsm@polyomino.org.uk>
774 * doc/extend.texi: Document interaction of attribute noreturn and
777 2004-09-24 Richard Henderson <rth@redhat.com>
780 * regclass.c (subregs_of_mode): Turn into an htab. Make static.
781 (som_hash, som_eq): New.
782 (init_subregs_of_mode, record_subregs_of_mode): New.
783 (cannot_change_mode_set_regs): Rewrite for htab implementation.
784 (invalid_mode_change_p): Likewise.
785 * combine.c (gen_lowpart_for_combine): Use record_subregs_of_mode.
786 * flow.c (mark_used_regs): Likewise.
787 (life_analysis): Use init_subregs_of_mode.
788 * regs.h (subregs_of_mode): Remove.
789 * rtl.h (init_subregs_of_mode, record_subregs_of_mode): Declare.
791 2004-09-24 Andrew Pinski <pinskia@physics.uc.edu>
793 * tree-ssa-phiopt.c (conditional_replacement): Use the correct
794 type with the copy of the conditional.
796 2004-09-24 Andrew Pinski <pinskia@physics.uc.edu>
799 * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
800 Prevent renaming if the aliasing sets of the type which the
801 pointer points to are different.
803 2004-09-24 Joseph S. Myers <jsm@polyomino.org.uk>
806 * c-decl.c (diagnose_mismatched_decls): Check for duplicate
807 declarations of enumerators.
808 (start_struct): Check TYPE_SIZE rather than TYPE_FIELDS to check
809 for redefinition. Check for nested redefinition.
810 (finish_struct): Don't check for nested redefinition.
811 (start_enum): Check for nested redefinition.
813 2004-09-24 Devang Patel <dpatel@apple.com>
815 * tree-if-conv.c (tree_if_convert_cond_expr0: Create temp. variable
816 only when necesssary.
817 (combine_blocks): Combine loop header and exit block.
819 2004-09-24 Paolo Bonzini <bonzini@gnu.org>
821 * hooks.c (hook_tree_tree_bool_null): New.
822 * hooks.h (hook_tree_tree_bool_null): Declare it.
823 * target-def.c (TARGET_FOLD_BUILTIN): Point to it.
824 * targhooks.c (default_fold_builtin): Remove.
825 * targhooks.h (default_fold_builtin): Remove.
827 2004-09-24 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
829 PR rtl-optimization/17625
830 * loop-doloop.c (doloop_modify): Unshare rtl before emitting it.
832 2004-09-24 Andrew Pinski <pinskia@physics.uc.edu>
835 * tree-ssa-forwprop.c (record_single_argument_cond_exprs):
836 Reject if any of the operands occur in an abnormal PHI.
838 2004-09-24 Andreas Schwab <schwab@suse.de>
840 * tree-ssa-dom.c (record_range): Fix violation of strict aliasing
843 2004-09-24 Eric Botcazou <ebotcazou@libertysurf.fr>
845 * config.gcc (sparc64-*-solaris2*): Include sparc/sol2-gas.h
846 if the GNU assembler is used.
847 (sparc-*-solaris2*): Likewise.
848 * dbxout.c (NO_DBX_BNSYM_ENSYM): Default to zero.
849 (dbxout_function_end): Protect N_ENSYM with it.
850 (dbxout_begin_prologue): Protect N_BNSYM with it.
851 * doc/tm.texi (NO_DBX_BNSYM_ENSYM): Document it.
852 * config/sparc/sol2.h (NO_DBX_BNSYM_ENSYM): Define to 1.
853 * config/sparc/sol2-gas.h: New file.
855 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
858 * Makefile.in (@set_gcc_lib_path@): Added.
860 * configure.ac: Include ../config/gcc-lib-path.m4. Use
861 TL_AC_GNU_MAKE_GCC_LIB_PATH.
862 * configure: Regenerated.
864 2004-09-24 Joseph S. Myers <jsm@polyomino.org.uk>
867 * c-typeck.c (build_c_cast): Improve wording of
868 -Wbad-function-cast diagnostic.
870 2004-09-23 Hans-Peter Nilsson <hp@axis.com>
873 * config/cris/cris.md (moverside, movemside): Rename variable
874 "reg" to "otherop". To generate canonical RTX, check that otherop
875 isn't constant instead of checking that operand 1 is a register.
877 2004-09-23 Jakub Jelinek <jakub@redhat.com>
879 * tree-ssa-propagate.c (set_rhs): Fail if EXPR is COMPOUND_EXPR.
881 2004-09-23 Diego Novillo <dnovillo@redhat.com>
882 Jakub Jelinek <jakub@redhat.com>
884 * tree-flow.h (find_new_referenced_vars): Add prototype.
885 * tree-sra.c (find_new_referenced_vars_1, find_new_referenced_vars):
887 * tree-dfa.c (find_new_referenced_vars_1, find_new_referenced_vars):
889 (mark_new_vars_to_rename): Walk through all operands.
890 * tree-ssa-ccp.c (convert_to_gimple_builtin): New function.
891 (execute_fold_all_builtins): Use it.
892 (pass_fold_builtins): Add TODO_rename_vars to todo_flags_finish.
894 2004-09-23 P.J. Darcy <darcypj@us.ibm.com>
896 * gthr-tpf.h: New file.
897 * config.gcc (s390x-ibm-tpf*): Add thread_file='tpf'.
898 * gthr.h: Use gthr-tpf.h on TPF OS.
900 2004-09-23 Jeff Law <law@redhat.com>
902 * tree-ssa-ccp.c (get_default_value): Use SSA_NAME_VALUE rather
903 than SSA_NAME_EQUIV and SET_SSA_NAME_EQUIV.
904 (substitute_and_fold): Likewise.
905 * tree-ssa-dom.c (tree_ssa_dominator_optimize): Remove everything
906 except invariants from SSA_NAME_VALUE.
907 (thread_across_edge): Use SSA_NAME_VALUE rather than SSA_NAME_EQUIV
908 and SET_SSA_NAME_EQUIV.
909 (restore_vars_to_original_value, record_const_or_copy): Likewise.
910 (record_equivalences_from_phis, record_const_or_copy_1): Likewise.
911 (record_equality, cprop_into_successor_phis): Likewise.
912 (record_equivalences_from_stmt, cprop_operand): Likewise.
913 (lookup_avail_expr): Likewise.
914 * tree-ssa-pre.c (fini_pre): Remove everything except invariants
916 * tree.h (SSA_NAME_EQUIV, SET_SSA_NAME_EQUIV): Kill.
917 (struct tree_ssa_name): Kill EQUIV field. Remove GGC skip
918 annotation from the VALUE_HANDLE field.
920 2004-09-21 Fariborz Jahanian <fjahanian@apple.com>
924 * tree.c (reconstruct_complex_type): Remove extra "this".
925 * config/rs6000/rs6000.c (rs6000_handle_altivec_attribute):
926 Add V4SFmode to case statement.
928 2004-09-23 Joseph S. Myers <jsm@polyomino.org.uk>
931 * doc/extend.texi, doc/invoke.texi: Document interaction of
932 -fno-builtin with format checks. Note that built-in functions
933 have effects beyond generating code that avoids calls to those
936 2004-09-23 Frank Ch. Eigler <fche@redhat.com>
938 PR tree-optimization/17533
939 * dominance.c (verify_dominators): Tolerate even more incorrect
940 dominance data during error message printing.
941 * tree-mudflap.c (mf_build_check_statement_for): Build basic blocks
942 and edges more correctly.
944 2004-09-23 Dorit Naishlos <dorit@il.ibm.com>
946 * tree.def (ALIGN_INDIRECT_REF, MISALIGNED_INDIRECT_REF):
948 * tree.h (REF_ORIGINAL): Consider ALIGN_INDIRECT_REF and
949 MISALIGNED_INDIRECT_REF.
950 * alias.c (get_alias_set, nonoverlapping_memrefs_p): Likewise.
951 * emit-rtl.c (mem_expr_equal_p, set_mem_attributes_minus_bitpos):
953 * expr.c (safe_from_p, expand_expr_real_1, rewrite_address_base)
954 (find_interesting_uses_address): Likewise.
955 * fold-const.c (non_lvalue, operand_equal_p): Likewise.
956 (build_fold_addr_expr_with_type): Likewise.
957 * gimplify.c (gimplify_addr_expr, gimplify_expr): Likewise.
958 * print-rtl.c (print_mem_expr): Likewise.
959 * tree-dump.c (dequeue_and_dump): Likewise.
960 * tree-eh.c (tree_could_trap_p): Likewise.
961 * tree-gimple.c (is_gimple_addressable, get_base_address): Likewise.
962 * tree-pretty-print.c (op_prio, op_symbol, dump_generic_node): Likewise.
963 * tree-ssa-alias.c (find_ptr_dereference, ptr_is_dereferenced_by):
965 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
966 * tree-ssa-dom.c (record_equivalences_from_stmt): Likewise.
967 * tree-ssa-loop-im.c (for_each_index, is_call_clobbered_ref): Likewise.
968 * tree-ssa-loop-ivopts.c (find_interesting_uses_address): Likewise.
969 (add_address_candidates, rewrite_address_base): Likewise.
970 * tree-ssa-operands.c (get_expr_operands, get_indirect_ref_operands):
972 * tree.c (staticp, build1_stat): Likewise.
974 * tree.def (REALIGN_LOAD_EXPR, REALIGN_STORE_EXPR): New tree-codes.
975 * tree-pretty-print.c (dump_generic_node): Consider REALIGN_LOAD_EXPR.
976 * tree-ssa-operands.c (get_expr_operands): Likewise.
977 * expr.c (expand_expr_real_1): Likewise.
979 * optabs.h (vec_realign_store_optab, vec_realign_load_optab): New
981 (OTI_vec_realign_store, OTI_vec_realign_load): New optab_index values
983 (expand_ternary_op): New function.
984 * genopinit.c (optabs): Handle the new optabs.
985 * optabs.c (optab_for_tree_code): Add cases for the new tree-codes.
986 (init_optabs): Initialize vec_realign_load_optab.
987 (expand_ternary_op): New functions.
989 * target-def.h (TARGET_VECTORIZE): New member for struct gcc_target.
990 (TARGET_VECTORIZE_MISALIGNED_MEM_OK): New member for targetm.vectorize.
991 (TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD): Likewise.
992 (TARGET_VECTORIZE_BUILTIN_MASK_FOR_STORE): Likewise.
993 * target.h (struct vectorize): New member for struct gcc_target.
994 (misaligned_mem_ok): New member for targetm.vectorize.
995 (builtin_mask_for_load): Likewise.
996 (builtin_mask_for_store): Likewise.
997 * targethooks.c (default_vect_misaligned_mem_ok): New function.
998 * targethooks.h (default_vect_misaligned_mem_ok): New function.
1000 * config/rs6000/altivec.md (build_vector_mask_for_load): New
1002 (vec_realign_load_v4si, vec_realign_load_v4sf, vec_realign_load_v8hi)
1003 (vec_realign_load_v16qi): New define_insn.
1004 * config/rs6000/rs6000.h (ALTIVEC_BUILTIN_MASK_FOR_LOAD):
1005 (ALTIVEC_BUILTIN_MASK_FOR_STORE): New target builtins.
1006 * config/rs6000/rs6000.c (altivec_builtin_mask_for_load):
1007 (altivec_builtin_mask_for_store): New variables.
1008 (rs6000_builtin_mask_for_load): New function. Implements
1009 TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD.
1010 (rs6000_builtin_mask_for_store): New function. Implements
1011 TARGET_VECTORIZE_BUILTIN_MASK_FOR_STORE.
1012 (rs6000_expand_builtin): Expand the target builtins
1013 builtin_mask_for_load and builtin_mask_for_store.
1014 (altivec_init_builtins): Initialize the new target builtins.
1015 * config/i386/i386.c (ix86_misaligned_mem_ok): New function.
1016 Implements the target hook TARGET_VECTORIZE_MISALIGNED_MEM_OK.
1018 * tree-vectorizer.c (vect_create_data_ref): Renamed to
1019 vect_create_data_ref_ptr. Returns a pointer instead of an array-ref.
1020 (vect_create_addr_base_for_vector_ref): Additional argument (offset).
1021 (vectorizable_store): Call vect_create_data_ref_ptr with additional
1022 arguments, and create an indirect_ref with its return value data_ref.
1023 Check aligned_access_p.
1024 (vectorizable_load): Handle misaligned loads, using software-pipelined
1025 scheme with REALIGN_LOAD_EXPR and ALIGN_INDIRECT_REF if
1026 vec_realign_load_optab is supported, or using a scheme without
1027 software-pipelining with MISALIGNED_INDIRECT_REF if the target hook
1028 misaligned_mem_ok is supported.
1030 (vect_finish_stmt_generation): Typo.
1031 (vect_enhance_data_refs_alignment): Rename loop_vinfo to loop_info.
1032 (vect_analyze_data_refs_alignment): Don't fail vectorization in the
1033 presence of misaligned loads.
1034 (vect_analyze_data_ref_access): Add check for constant init.
1035 (vect_get_symbl_and_dr): Remove duplicate line.
1036 * tree-vectorizer.h (DR_MISALIGNMENT): Add comment.
1038 2004-09-23 Kazu Hirata <kazu@cs.umass.edu>
1040 * builtins.c: Fix a comment typo.
1042 2004-09-23 Jan Hubicka <jh@suse.cz>
1044 * profile.c (branch_prob): Do not verify flow info in the middle of the
1047 2004-09-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
1049 * cfgloop.h (update_single_exits_after_duplication): Declare.
1050 (loopify, split_loop_bb): Declaration changed.
1051 * cfgloopmanip.c (split_loop_bb): Take void * as an argument instead
1053 (loopify): Added redirect_all_edges argument.
1054 (update_single_exits_after_duplication): Export.
1055 * loop-unswitch.c (unswitch_loop): Changed due to loopify change.
1056 * tree-flow.h (tree_duplicate_loop_to_header_edge,
1057 tree_ssa_loop_version): Declare.
1058 * tree-ssa-loop-manip.c (copy_phi_node_args, rename_variables,
1059 set_phi_def_stmts, tree_duplicate_loop_to_header_edge,
1060 lv_adjust_loop_header_phi, lv_adjust_loop_entry_edge,
1061 lv_update_pending_stmts, tree_ssa_loop_version): New functions.
1063 * tree-ssa-loop-unswitch.c: New file.
1064 * Makefile.in (tree-ssa-loop-unswitch.o): Add.
1065 * timevar.def (TV_TREE_LOOP_UNSWITCH): New timevar.
1066 * tree-flow.h (tree_ssa_unswitch_loops): Declare.
1067 * tree-optimize.c (init_tree_optimization_passes): Add pass_unswitch.
1068 * tree-pass.h (pass_unswitch): Declare.
1069 * tree-ssa-loop.c (tree_ssa_loop_unswitch,
1070 gate_tree_ssa_loop_unswitch, pass_unswitch): New pass.
1071 * doc/passes.texi: Documen tree level loop unswitching.
1073 2004-09-23 Kazu Hirata <kazu@cs.umass.edu>
1075 * cfgexpand.c, config/s390/tpf-eh.c: Fix comment typos.
1077 2004-09-22 Eric Christopher <echristo@redhat.com>
1079 * builtins.c (simplify_builtin_va_start): Remove.
1080 (simplify_builtin): Ditto.
1081 (fold_builtin_strchr): Ditto.
1082 (simplify_builtin_*): Rename remainders to fold_builtin_*.
1083 (expand_builtin): Fix up for above changes.
1084 (fold_builtin_1): Add new folders. Change for above.
1085 (expand_builtin_va_start): Call fold_builtin_next_arg.
1086 * gimplify.c (gimplify_call_expr): Fix calls to simplify_builtin.
1087 * tree.h: Remove prototype for simplify_builtin.
1089 2004-09-23 Jan Hubicka <jh@suse.cz>
1092 * dwarf2out.c (dwarf2out_finish): Deal with nested functions
1093 of fully inlined functions.
1094 * tree-inline.c (inline_forbidden_p_1): Nested functions can be
1097 * cfgexpand.c (add_reg_br_prob_note): New function.
1098 (expand_gimple_cond_expr): Use it.
1099 (tree_expand_cfg): No longer kill the profile.
1100 * cfgrt.c (rtl_verify_flow_info_1): Check profile consistency
1101 only if it is present.
1102 * passes.c (rest_of_handle_loop_optimize): Kill the profile.
1103 * predict.c (combine_predictions_for_insn): Set the probabilities
1104 based on REG_BR_PROB note if present.
1105 * predict.c (branch_prob): Profile is read only with
1106 flag_branch_probabilities.
1108 2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
1110 * aclocal.m4: Add in gettext's m4 includes.
1111 (AC_ICONV, AC_LCMESSAGES, GCC_PATH_PROG): Remove.
1112 * configure.ac: Add in check for iconv.h
1113 * configure: Regenerate.
1115 2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
1117 * aclocal.m4: Update for rename of gettext-sister.m4.
1119 2004-09-22 Daniel Berlin <dberlin@dberlin.org>
1121 Fix PR tree-optimization/17587
1122 * tree-ssa-pre.c (fini_pre): Commit edge inserts here.
1123 (insert_aux): Instead of here.
1125 2004-09-22 Diego Novillo <dnovillo@redhat.com>
1127 PR tree-optimization/16721
1128 * tree-dfa.c (dump_variable): Show TREE_THIS_VOLATILE.
1129 * tree-ssa-alias.c (create_memory_tag): Move setting of
1130 TREE_THIS_VOLATILE ...
1131 (get_tmt_for): ... here.
1133 2004-09-22 Eric Botcazou <ebotcazou@libertysurf.fr>
1135 * config/sparc/sparc.md (cmove splitter): Fix formatting.
1136 (conditional_trap expander): Reject inappropriate CCmodes.
1137 (conditional trap insn): Use V9 syntax if possible.
1139 2004-09-22 Joseph S. Myers <jsm@polyomino.org.uk>
1142 * c-typeck.c (build_component_ref): Don't special-case
1145 2004-09-22 Frank Ch. Eigler <fche@redhat.com>
1147 * dominance.c (verify_dominators): Don't SEGV if recount_dominator
1150 2004-09-22 Kazu Hirata <kazu@cs.umass.edu>
1152 * doc/c-tree.texi (TRUTH_NOT_EXPR, TRUTH_ANDIF_EXPR,
1153 TRUTH_ORIF_EXPR, TRUTH_AND_EXPR, TRUTH_OR_EXPR,
1154 TRUTH_XOR_EXPR): Mention the restriction on types.
1156 2004-09-22 Matt Austern <austern@apple.com>
1158 * config/darwin.c (darwin_make_decl_one_only):
1159 Allow coalesced symbol to appear in static archive's table of contents
1161 2004-09-22 Kazu Hirata <kazu@cs.umass.edu>
1163 PR tree-optimization/17512
1164 * convert.c (convert_to_integer): Don't handle TRUTH_*_EXPR as
1167 2004-09-22 David Edelsohn <edelsohn@gnu.org>
1169 * dbxout.c (get_lang_number): Do not define if
1170 DBX_OUTPUT_MAIN_SOURCE_DIRECTORY is defined.
1172 2004-09-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1175 * config/rs6000/rtems.h (TARGET_OS_CPP_BUILTINS): Add
1176 builtin_define ("__USE_INIT_FINI__").
1178 2004-09-22 P.J. Darcy <darcypj@us.ibm.com>
1180 * config/s390/s390-protos.h (s390_emit_tpf_eh_return): Add prototype.
1181 * config/s390/s390.c (s390_emit_tpf_eh_return): New function.
1182 * config/s390/s390.h (TARGET_TPF): New macro.
1183 * config/s390/s390.md ("eh_return"): New expander.
1184 * config/s390/t-tpf (LIB2ADDEH): Use unwind-dw2-fde.c rather than
1185 unwind-dw2-fde-glibc.c. Add config/s390/tpf-eh.c.
1186 (LIB2ADDEHDEP): Remove unwind-dw2-fde.c.
1187 * config/s390/tpf.h (TARGET_TPF): Define to 1.
1188 (STACK_POINTER_OFFSET): Increase to 448.
1189 (TARGET_DEFAULT): Set -mtpf-trace on as default.
1190 (TPF_LOC_DIFF_OFFSET): New macro.
1191 (ASM_PREFERRED_EH_DATA_FORMAT): Redefine to always use absolute
1193 (__isPATrange): Add prototype.
1194 (MD_FALLBACK_FRAME_STATE_FOR): Define.
1195 * config/s390/tpf-eh.c: New file.
1197 2004-09-22 Diego Novillo <dnovillo@redhat.com>
1199 * fold-const.c (fold): Avoid non INTEGER_TYPEs when widening
1200 operands in an integer comparison.
1201 * tree-cfg.c (find_taken_edge): Call fold() to determine
1202 whether the predicate is known.
1204 2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
1206 * aclocal.m4: Import AM_PROG_CC_C_O and AM_AUX_DIR_EXPAND.
1207 * configure.ac: Call AM_PROG_CC_C_O instead of AC_PROG_CC_C_O.
1208 Create build and doc directories along with the language directories.
1209 Don't create doc directory separately.
1210 * configure: Regenerate.
1211 * Makefile.in: Create all object and executables files built
1212 with the build compiler in a build/ directory.
1213 (genobjnames): Add missing build objects.
1214 (STAGESTUFF): Don't stage the gen* programs.
1215 (ggc-none.o): Define dependencies for the target compiler.
1216 (build-print-rtl.o): Rename to build/print-rtl.o.
1217 (build-errors.o): Rename to build/errors.o.
1218 (build-varray.o): Rename to build/varray.o.
1219 (maintainerclean): Delete the contents of the build directory.
1220 ($(genobjs): %.o): Explicitly use -o.
1221 (build/insn-conditions.o): Delete specfic rule to use generic rule.
1222 (build/gengtype-lex.o): Likewise.
1223 (build/gengtype-yacc.o): Likewise.
1224 (build/gcov-iov.o): Likewise.
1226 2004-09-22 Nathan Sidwell <nathan@codesourcery.com>
1228 * vec.h (VEC_space): Return true if there _is_ space.
1229 (VEC_reserve): Adjust.
1231 2004-09-22 Richard Sandiford <rsandifo@redhat.com>
1233 * config/mips/mips.c (mips_function_value): For o32, o64, n32 and n64,
1234 use FPRs for scalar, complex and vector types only.
1236 2004-09-21 Jeff Law <law@redhat.com>
1238 * tree-ssa-dom.c (opt_stats): Move so that it lives just after
1239 the opt_stats_d structure.
1240 (vrp_data): Change from a varray into a hash table.
1241 (vrp_hash_elt): New structure for elements in the vrp hash table.
1242 (vrp_hash, vrp_eq):New functions for hashing and testing equality
1243 in the vrp hash table.
1244 (tree_ssa_dominator_optimize): Initialize VRP_DATA. Reorganize
1245 initialization slightly to make it easier to read. No longer need
1246 to grow/clear the varray. Instead empty and delete the hash table.
1247 (dom_opt_finalize_block): Update due to change of VRP_DATA from
1248 a varray to a hash table.
1249 (simplify_cond_and_loop_avail_expr, record_range): Similarly.
1251 * tree-ssa-ccp.c (get_default_value): If we have a constant
1252 value recorded for an SSA_NAME, then use that constant as
1253 the initial lattice value.
1254 (substitute_and_fold): Transfer equivalences discovered into
1257 * tree.h (SSA_NAME_EQUIV): Add comments.
1258 (SET_SSA_NAME_EQUIV): Similarly.
1260 2004-09-21 David Edelsohn <edelsohn@gnu.org>
1262 * config/rs6000/linux64.h (PROCESSOR_DEFAULT64): Default to POWER4.
1264 * config/rs6000/rs6000.c (rs6000_adjust_cost): dep_insn is used.
1266 2004-09-21 Mark Mitchell <mark@codesourcery.com>
1268 * c-decl.c (implicityl_declare): Call maybe_apply_renaming_pragma.
1269 (finish_decl): Likewise.
1271 2004-09-21 Devang Patel <dpatel@apple.com>
1273 * tree.def (VEC_COND_EXPR): New tree node.
1274 * tree-ssa-operands.c (get_expr_operands): Handle VEC_COND_EXPR.
1276 2004-09-21 Stan Shebs <shebs@apple.com>
1278 * config/rs6000/darwin-tramp.asm: Add __ppc64__ case.
1279 * config/rs6000/darwin-world.asm: Likewise.
1281 2004-09-21 Daniel Berlin <dberlin@dberlin.org>
1283 * tree-ssa.c (verify_def): Use print_generic_stmt,
1284 not debug_generic_stmt.
1285 (verify_use): Ditto.
1286 (verify_phi_args): Ditto.
1287 (verify_ssa): Ditto.
1289 2004-09-21 Paul Brook <paul@codesourcery.com>
1291 * varasm.c (default_assemble_integer): Return false for values wider
1292 than the target word size. Works around GAS bug.
1294 2004-09-21 Zack Weinberg <zack@codesourcery.com>
1296 * reg-notes.def (REG_DEP_TRUE): New entry, place first so it
1298 * print-rtl.c (print_rtx): Print the name of a REG_NOTE even
1301 2004-09-21 Daniel Berlin <dberlin@dberlin.org>
1303 * c-typeck.c (build_function_call): Give name of object
1304 we are attempting to call in error message.
1305 * c-objc-common.c (c_tree_printer): Call pp_expression,
1306 not return false, for 'E' case.
1308 2004-09-21 Steven Bosscher <stevenb@suse.de>
1310 PR rtl-optimization/17482
1311 * postreload-gcse.c (reg_avail_info, oprs_unchanged_p,
1312 load_killed_in_block_p): Clarify comments.
1313 (record_last_reg_set_info): Make static inline.
1314 (mark_call, mark_set, mark_clobber, mark_oprs_set): Remove.
1315 (record_opr_changes): New function to replace the above.
1316 (compute_hash_table): Clarify comments. Use record_opr_changes.
1317 (reg_set_between_after_reload_p): Clean up.
1318 (reg_used_between_after_reload_p): Likewise.
1319 (eliminate_partially_redundant_load): Clarify comments.
1321 2004-09-21 Eric Botcazou <ebotcazou@libertysurf.fr>
1323 PR rtl-optimization/17266
1324 * regmove.c (optimize_reg_copy_3): Make a new SUBREG for each insn.
1326 2004-09-21 Uros Bizjak <uros@kss-loka.si>
1328 PR rtl-optimization/14851
1329 * rtlanal.c (commutative_operand_precedence): Calculate
1330 precedence of stripped constant.
1332 2004-09-20 Jeff Law <law@redhat.com>
1333 Jan Hubicka <jh@suse.cz>
1335 * tree-ssanames.c (make_ssa_name): No longer need to clear, then
1336 initialize key elements here.
1337 (release_ssa_name): Zero the released SSA_NAME here.
1338 * tree.h (SSA_NAME_EQUIV, SET_SSA_NAME_EQUIV): New macros.
1339 (struct tree_ssa_name): Add new "equiv" field.
1340 * tree-ssa-dom.c (const_and_copies): Kill the global varray.
1341 (tree_ssa_dominator_optimize): No longer allocate, resize or
1342 clear CONST_AND_COPIES.
1343 (get_value_for, set_value_for): Kill.
1344 (thread_across_edge): Get/set the equivalency using
1345 SSA_NAME_EQUIV and SET_SSA_NAME_EQUIV.
1346 (restore_vars_to_original_value): Likewise.
1347 (record_equivalences_from_phis): Likewise.
1348 (record_dominating_conditions): Likewise.
1349 (record_const_or_copy, record_equality): Likewise.
1350 (lookup_avail_expr): Likewise.
1351 (record_equivalences_from_stmt, cprop_operand): Likewise.
1352 (cprop_into_successor_phis): No longer need to pass around
1353 CONST_AND_COPIES. Callers updated. Get equivalences via
1355 (cprop_into_phis): Likewise.
1357 2004-09-20 Matt Austern <austern@apple.com>
1358 Zack Weinberg <zack@codesourcery.com>
1360 * c-common.c (fix_string_type): Build the unqualified array
1361 type unconditionally, then use c_build_qualified_type to get
1362 the proper const-qualified variant, and set its
1363 TYPE_MAIN_VARIANT to refer to the unqualified type.
1364 * c-lex.c (c_lex_return_raw_string): New global.
1365 (c_lex_with_flags): Honor it.
1366 * c-pragma.h: Declare it.
1368 2004-09-20 Daniel Berlin <dberlin@dberlin.org>
1370 * Makefile.in: Fix flags.h dependencies to be $(FLAGS_H).
1372 2004-09-21 Jan Hubicka <jh@suse.cz>
1375 * tree-optimize.c (update_inlined_to_pointers): Fix the recursion.
1376 (tree_rest_of_compilation): Cleanup.
1378 2004-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1380 * config/s390/s390.c (s390_select_rtx_section): Remove.
1381 (TARGET_ASM_SELECT_RTX_SECTION): Do not redefine.
1383 2004-09-20 Kaz Kojima <kkojima@gcc.gnu.org>
1385 * config/sh/sh.c (sh_expand_prologue): Add a REG_FRAME_RELATED_EXPR
1386 note to pretend a direct save from the original register when an
1387 intermediate register is used for the save.
1389 2004-09-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1391 * tsystem.h (alloca): Provide a default definition.
1394 2001-08-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1395 * unwind-dw2.c: Call __builtin_alloca, not alloca.
1397 2004-09-20 Andrew Pinski <pinskia@physics.uc.edu>
1400 * tree-ssa-copy.c (may_propagate_copy): Only allow if the
1401 aliasing sets are the same rather than just conflicting.
1403 2004-09-20 Jan Hubicka <jh@suse.cz>
1407 * cgraph.c (cgraph_unnest_node): New function.
1408 (c_finalize): Rename to ....
1409 (c_warn_unused_result_recursivly): ... this one; do only the warning
1410 (finish_function): Finalize the toplevel function; do not lower nested tree.
1411 * cgraph.h (cgraph_unnest_node): Declare.
1412 * cgraphunit.c (decide_is_function_needed): Do not use cgraph
1413 nestedness datastructure.
1414 * cse.c (cse_insn): Do not cprop nonlocal LABEL_REFs.
1415 * reload1.c (set_label_offsets): Fix call of set_label_offsets.
1416 * tree-nested.c (finlize_nesting_tree_1): Use un-nesting code.
1418 2004-09-20 Richard Henderson <rth@redhat.com>
1420 * config/alpha/alpha.c (some_small_symbolic_operand_int): Rename
1421 from some_small_symbolic_operand_1; export.
1422 (some_small_symbolic_operand): Remove.
1423 * config/alpha/alpha.md (some_small_symbolic_operand splitter): Remove
1425 * config/alpha/predicates.md (some_small_symbolic_operand): New.
1427 2004-09-20 Jan Hubicka <jh@suse.cz>
1429 * predict.c (return_prediction): New function.
1430 (apply_return_prediction): Likewise.
1431 (tree_bb_level_predictions): Likewise.
1432 (tree_estimate_probability): Add noreturn exit edges; call
1433 bb_level_predictions; fix logic of return heuristics.
1434 (predict_paths_leading_to): Rescuesce from old CVS version of
1435 process_note_prediction function.
1436 * predict.def (PRED_TREE_EARLY_RETURN): New predictor.
1438 2004-09-20 Andreas Krebbel <krebbel1@de.ibm.com>
1440 * config/s390/s390.c (s390_frame_info): Added alignment statement for
1441 floating point register area on stack.
1443 2004-09-20 Jakub Jelinek <jakub@redhat.com>
1445 * predict.c (expr_expected_value): Use *_CLASS_P macros.
1447 2004-09-20 Daniel Berlin <dberlin@dberlin.org>
1449 * tree-ssa-pre.c (compute_antic_aux): Use malloc'd worklist, to avoid
1450 generating useless garbage.
1452 2004-09-20 Paolo Bonzini <bonzini@gnu.org>
1454 * builtins.c (fold_builtin): Call the new omonymous
1455 target hook for machine-dependent built-ins.
1456 * target-def.h (TARGET_FOLD_BUILTIN): New.
1457 * target.h (struct gcc_target): Add the fold_builtin hook.
1458 * targhooks.c (default_fold_builtin): New.
1459 * targhooks.h (default_fold_builtin): Declare it.
1461 2004-09-20 Kazu Hirata <kazu@cs.umass.edu>
1463 * cfg.c, tree-ssa-threadupdate.c, tree-vectorizer.c: Fix
1466 2004-09-20 Richard Sandiford <rsandifo@redhat.com>
1469 * config/mips/mips.md (define_asm_attributes): Set can_delay to no.
1471 2004-09-20 Jan Hubicka <jh@suse.cz>
1473 * predict.c (estimate_probability): Remove unnecesary code.
1475 2004-09-19 Ira Rosen <irar@il.ibm.com>
1477 * tree-vectorizer.h (stmt_vec_info): Add vect_dr_base field.
1478 (STMT_VINFO_VECT_DR_BASE): Declare.
1479 (VECT_SMODULO): Declare.
1480 * tree-vectorizer.c (vect_compute_array_ref_alignment): New function.
1481 (vect_compute_array_base_alignment): New function.
1482 (vect_analyze_data_ref_access): Check array indices. Remove one
1483 dimensional arrays restriction.
1484 (vect_get_ptr_offset): New function.
1485 (vect_get_symbl_and_dr): New function.
1486 (vect_get_base_and_bit_offset): Support additional data refs. Renamed
1487 (former name vect_get_base_decl_and_bit_offset).
1488 (vect_create_index_for_array_ref): Removed.
1489 (vect_create_index_for_vector_ref): New function.
1490 (vect_create_addr_base_for_vector_ref): New function.
1491 (vect_create_data_ref): Handle additional data refs. Call
1492 vect_create_index_for_vector_ref and vect_create_addr_base_for_vector_ref.
1493 (vect_compute_data_ref_alignment): Support the changes. Call
1494 vect_get_base_and_bit_offset.
1495 (vect_analyze_data_refs): Call vect_get_symbl_and_dr. Support additional
1496 data refs. Store vect_dr_base.
1497 (vect_analyze_data_ref_accesses): Support nonconstant init.
1498 (new_stmt_vec_info): Initialize vect_dr_base field.
1499 (vect_is_simple_iv_evolution): Call initial_condition_in_loop_num.
1500 (get_vectype_for_scalar_type): Check for BLKmode.
1501 * tree-chrec.h (initial_condition_in_loop_num): Declare.
1502 * tree-chrec.c (initial_condition_in_loop_num): New function.
1503 (chrec_component_in_loop_num): New function.
1504 (evolution_part_in_loop_num): Call chrec_component_in_loop_num.
1505 * tree-data-ref.c (analyze_array_indexes): Change parameter (access_fns)
1506 to be pointer to varray_type.
1508 2004-09-19 Jan Hubicka <jh@suse.cz>
1510 * basic-block.h (update_bb_profile_after_threading): Declare.
1511 * cfg.c (update_bb_profile_after_threading): Break out from ...
1512 * cfgcleanup.c (try_forward_edges): ... here; use it.
1513 * tree-ssa-dom.c (thread_across_edge): Use it.
1514 * tree-ssa-threadupdate.c (create_block_for_threading): Zero out
1515 profile of the new BB.
1517 2004-09-19 Daniel Berlin <dberlin@dberlin.org>
1519 * tree-ssa-pre.c (insert_into_set): Don't put
1520 is_gimple_min_invariant values into the set.
1522 2004-09-19 Andreas Jaeger <aj@suse.de>
1524 * tree-ssa-dom.c (restore_nonzero_vars_to_original_value): Fix
1527 2004-09-18 Kazu Hirata <kazu@cs.umass.edu>
1529 * config/cris/cris.h: Preserve the original spelling in a
1532 2004-09-18 Jeff Law <law@redhat.com>
1534 * tree-ssa-dom.c (nonzero_vars_stack, vrp_variables_stack): New
1535 global varrays to replace the block local varrays.
1536 (struct dom_walk_block_data): Remove, no longer used.
1537 (get_eq_expr_value): No longer need to pass around pointers to local
1538 varrays. Callers updated. Unused markers added to unused parameters.
1539 (record_range, record_equivalences_from_stmt): Likewise.
1540 (record_equivalences_from_incoming_edge): Likewise.
1541 (record_var_is_nonzero): Likewise. Update now that we have a
1542 single global varray of SSA_NAMEs that need restoring.
1543 (dom_opt_initialize_block_local_data): Kill, no longer used.
1544 (tree_ssa_dominator_optimize): Initialize new global varrays.
1545 Update callbacks in dominator walker structure.
1546 (dom_opt_initialize_block): Add markers to NONZERO_VAR_STACK and
1547 VRP_VARIABLES_STACK.
1548 (restore_nonzero_vars_to_original_value): Update now that we have
1549 a single global varray of SSA_NAMEs that need restoring.
1550 (dom_opt_finalize_block): Similarly for VRP_VARIABLES_STACK.
1551 Remove unused variables.
1552 (optimize_stmt): Remove unused variable.
1554 2004-09-18 Jan Hubicka <jh@suse.cz>
1556 * tree-cfg.c (thread_jumps): Fix updating of the profile.
1558 * tree-optimize.c (tree_rest_of_compilation): Kill forgotten
1561 2004-09-18 Kazu Hirata <kazu@cs.umass.edu>
1563 * alias.c, crtstuff.c, dbxout.c, domwalk.c, domwalk.h, gcc.c,
1564 gcse.c, global.c, lambda-code.c, loop.c, mips-tdump.c,
1565 optabs.h, predict.c, reg-stack.c, regclass.c, sched-rgn.c,
1566 tree-optimize.c, tree-ssa-dom.c, tree-ssa-forwprop.c,
1567 tree-ssa-operands.c, tree-ssa-phiopt.c,
1568 tree-ssa-threadupdate.c: Fix comment typos.
1570 2004-09-18 Kazu Hirata <kazu@cs.umass.edu>
1572 * config/darwin-c.c, config/arc/arc.c, config/arc/arc.md,
1573 config/arm/README-interworking, config/arm/arm-cores.def,
1574 config/arm/arm.c, config/arm/arm.h, config/arm/pe.c,
1575 config/arm/vfp.md, config/c4x/c4x.c, config/c4x/c4x.h,
1576 config/cris/cris.c, config/cris/cris.h, config/fr30/fr30.c,
1577 config/fr30/fr30.h, config/fr30/fr30.md, config/frv/frv.c,
1578 config/frv/frv.md, config/i386/winnt.c,
1579 config/ia64/unwind-ia64.c, config/iq2000/iq2000.c,
1580 config/iq2000/iq2000.h, config/m68hc11/m68hc11.c,
1581 config/m68hc11/m68hc11.md, config/m68k/m68k.c,
1582 config/mcore/mcore.c, config/mips/mips.h,
1583 config/mn10300/mn10300.md, config/pa/pa.c,
1584 config/pa/pa64-regs.h, config/pdp11/pdp11.c,
1585 config/rs6000/rs6000.c, config/sh/symbian.c,
1586 config/sparc/sparc.h: Fix comment typos. Follow spelling
1589 2004-09-18 Joseph S. Myers <jsm@polyomino.org.uk>
1592 * c-typeck.c (c_expr_sizeof_expr): Check for error_mark_node.
1594 2004-09-18 Diego Novillo <dnovillo@redhat.com>
1596 * tree-ssa-alias.c (setup_pointers_and_addressables): Don't
1597 remove TREE_ADDRESSABLE from RESULT_DECL.
1599 2004-09-18 Diego Novillo <dnovillo@redhat.com>
1601 * tree-ssa-alias.c (dump_alias_info): Ignore NULL SSA_NAMEs.
1603 2004-09-18 Jan Hubicka <jh@suse.cz>
1605 * tree-into-ssa.c (rewrite_ssa_into_ssa): Expect ssa_name to return
1607 * tree-ssa-alias.c (init_alias_info): Likewise.
1608 * tree-ssa.c (verify_flow_sensitive_alias_info): Likewise.
1609 (verify_ssa): Likewise.
1610 * tree-ssanames.c (make_ssa_name): Clear out ssa_names arrays.
1612 2004-09-18 Jan Hubicka <jh@suse.cz>
1614 * i386.c (legitimize_pic_address): Fix splitting of PLUS with
1617 2004-09-18 Kaz Kojima <kkojima@gcc.gnu.org>
1619 * config/sh/linux.h (ASM_PREFERRED_EH_DATA_FORMAT): Remove.
1620 * config/sh/sh.h (ASM_PREFERRED_EH_DATA_FORMAT): Use
1621 DW_EH_PE_sdata* for data.
1622 (ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX): Likewise.
1624 2004-09-17 Geoffrey Keating <geoffk@apple.com>
1626 * tree-inline.c (copy_tree_r): Don't duplicate constants, they're
1630 * c-typeck.c (constructor_asmspec): Delete.
1631 (struct initializer_stack): Delete field 'asmspec'.
1632 (start_init): Delete saving of asmspec.
1633 (finish_init): Don't update constructor_asmspec.
1634 * dwarf2out.c (rtl_for_decl_location): Duplicate string from tree.
1635 * stmt.c (expand_asm): Duplicate strings from tree.
1636 (expand_asm_operands): Likewise.
1637 * tree.c (tree_size): Update computation of size of STRING_CST.
1638 (make_node): Don't make STRING_CST nodes.
1639 (build_string): Allocate string with tree node.
1640 (tree_code_size): Clean up assertions, don't allow requests
1641 for "the size of a STRING_CST".
1642 * tree.def (STRING_CST): Update comment.
1643 * tree.h (TREE_STRING_POINTER): Adjust for change to STRING_CST.
1644 (tree_string): Place contents of string in tree node.
1645 * config/sh/sh.c (sh_handle_sp_switch_attribute): Duplicate string
1648 2004-09-17 Zack Weinberg <zack@codesourcery.com>
1650 * Makefile.in (c-parse.o): Depend on $(C_PRAGMA_H).
1651 * objc/Make-lang.in (objc/objc-parse.o): Likewise.
1653 2004-09-17 Jones Desougi <jones@ingate.com>
1655 * configure.ac: Replace AC_COMPILE_CHECK_SIZEOF with AC_CHECK_SIZEOF.
1656 * configure, config.in: Regenerate.
1658 2004-09-17 Zack Weinberg <zack@codesourcery.com>
1660 * tree.c, tree.h (tree_class_strings): Make array const.
1661 Reindent per coding convention. Move asterisk to proper place
1662 per coding convention.
1664 2004-09-18 Andreas Schwab <schwab@suse.de>
1666 * Makefile.in (gimple-low.o): Depend on $(EXPR_H).
1667 (tree-vectorizer.o): Likewise.
1668 (targhooks.o): Likewise.
1670 2004-09-17 Jeffrey D. Oldham <oldham@codesourcery.com>
1671 Zack Weinberg <zack@codesourcery.com>
1673 * alias.c (find_base_decl): Remove unreachable case '3' block.
1674 * expr.c (safe_from_p): Abort if passed a type.
1675 * tree-gimple.c (recalculate_side_effects): Abort if passed
1676 anything other than an expression.
1677 * tree-ssa-pre.c (phi_translate): Return expr immediately if
1678 is_gimple_min_invariant is true for it. Reorder cases for clarity.
1679 Abort on un-handled tree classes.
1680 (valid_in_set): Likewise.
1681 * tree.c (tree_code_class_strings): New static data.
1683 * tree.h (enum tree_code_class): New.
1684 (tree_code_class_strings): Declare.
1685 (TREE_CODE_CLASS_STRING, EXCEPTIONAL_CLASS_P, CONSTANT_CLASS_P)
1686 (REFERENCE_CLASS_P, COMPARISON_CLASS_P, UNARY_CLASS_P, BINARY_CLASS_P)
1687 (STATEMENT_CLASS_P, EXPRESSION_CLASS_P, IS_TYPE_OR_DECL_P): New macros.
1688 (TYPE_P, DECL_P, IS_NON_TYPE_CODE_CLASS, IS_EXPR_CODE_CLASS)
1689 (checking macros, EXPR_LOCATION, SET_EXPR_LOCATION, EXPR_LOCUS): Update.
1691 * tree.def, c-common.def, objc/objc-tree.def: Use
1692 tree_code_class enumeration constants instead of code letters.
1694 * alias.c, builtins.c, c-common.c, c-format.c, c-lang.c, c-pragma.c
1695 * c-typeck.c, cgraphunit.c, convert.c, dbxout.c, dwarf2out.c
1696 * emit-rtl.c expr.c, fold-const.c, gimplify.c, lambda-code.c
1697 * langhooks.c, langhooks.h, predict.c, print-tree.c, reload1.c, stmt.c
1698 * tree-browser.c, tree-cfg.c, tree-chrec.c, tree-complex.c, tree-dfa.c
1699 * tree-dump.c, tree-eh.c, tree-gimple.c, tree-inline.c, tree-nested.c
1700 * tree-outof-ssa.c, tree-pretty-print.c, tree-sra.c, tree-ssa-ccp.c
1701 * tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-forwprop.c, tree-ssa-live.c
1702 * tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c, tree-ssa-operands.c
1703 * tree-ssa-phiopt.c, tree-ssa-pre.c, tree-ssa-propagate.c
1704 * tree-ssa.c, tree-ssanames.c, tree-tailcall.c, tree.c, varasm.c
1705 * config/sol2-c.c, config/arm/arm.c, config/i386/winnt.c
1706 * config/pa/pa.c, config/pa/pa.h, config/sh/sh.c, objc/objc-lang.c
1709 * LANGUAGES: Add note about change.
1711 2004-09-17 Diego Novillo <dnovillo@redhat.com>
1713 PR tree-optimization/17319
1714 * tree-ssa-alias.c (compute_points_to_and_addr_escape): Also
1715 examine pointers on the LHS of an assignment.
1716 (collect_points_to_info_r): Handle RETURN_EXPR.
1718 2004-09-17 Jeff Law <law@redhat.com>
1720 * tree-ssa-dom.c (const_and_copies_stack): New.
1721 (dom_walk_block_data): Remove const_and_copies field.
1722 (record_const_or_copy): No longer need to pass in varray_type *.
1723 Use CONST_AND_COPIES_STACK rather than passed in block local stack.
1725 (record_equality): Similarly.
1726 (restore_vars_to_original_value): Similarly. Revamp to use new
1727 single global stack rather than per-block stacks.
1728 (tree_ssa_dominator_optimize): Initialize the CONST_AND_COPIES_STACK.
1729 (thread_across_edge): Remove now unused parameters.
1730 (dom_opt_initialize_block_local_data): No longer test the block
1731 local CONST_AND_COPIES.
1732 (dom_opt_initialize_block): Push a marker on CONST_AND_COPIES_STACK.
1734 2004-09-17 Jan Hubicka <jh@suse.cz>
1736 PR tree-optimization/17509
1737 * tree-optimize.c (update_inlined_to_pointers): New function.
1738 (tree_rest_of_compilation): Use it.
1740 2004-09-17 Devang Patel <dpatel@apple.com>
1742 * dbxout.c (get_lang_number): New.
1743 (dbxout_init): Include lang number in N_SO stab.
1744 * dbxout.h (N_SO_AS, N_SO_C, N_SO_ANSI_C, N_SO_CC, N_SO_FORTRAN,
1745 N_SO_PASCAL, N_SO_FORTRAN90, N_SO_OBJC, N_SO_OBJCPLUS): New #define.
1747 2004-09-17 Diego Novillo <dnovillo@redhat.com>
1749 PR tree-optimization/17273
1750 * tree-ssa.c (replace_immediate_uses): Call fold_stmt if the
1751 replacement is a constant.
1753 2004-09-17 Joseph S. Myers <jsm@polyomino.org.uk>
1755 * c-tree.h (enum c_typespec_keyword): New.
1756 (struct c_declspecs): Adjust description of "type". Remove
1757 specbits, explicit_int_p and explicit_char_p. Rename
1758 typedef_signed_p to explicit_signed_p. Add default_int_p, long_p,
1759 short_p, signed_p, unsigned_p and complex_p.
1760 (finish_declspecs): New.
1761 * c-parse.in (datadef, datadecl, setspecs, decl, component_decl,
1762 typename): Call finish_declspecs.
1763 * c-decl.c (finish_declspecs): New.
1764 (declspecs_add_type): Check for combinations which cannot occur in
1765 valid specifier lists. Update comments.
1766 (shadow_tag_warned): Remove checks done in finish_declspecs.
1767 Don't report useless type name if type defaulted to int.
1768 (grokdeclarator): Remove checks and actions done in
1769 finish_declspecs. Don't allow for type being NULL. Update for
1770 datastructures changes. Initialize decl_attr.
1771 (build_null_declspecs, quals_from_declspecs): Update for
1772 datastructures changes.
1774 2004-09-17 Sylvain Pion <Sylvain.Pion@sophia.inria.fr>
1776 * doc/extend.texi: Fix duplicated word.
1778 2004-09-17 Toon Moene <toon@moene.indiv.nluug.nl>
1780 * doc/invoke.texi: Remove stray explanation on
1781 -freduce-all-givs and -fmove-all-movables.
1783 2004-09-17 James Morrison <phython@gcc.gnu.org>
1785 * doc/cfg.texi: Use @smallexample.
1786 * doc/md.texi: Likewise.
1787 * doc/tree-ssa.texi: Likewise.
1788 * doc/extend.texi: Likewise. Use @r{} in comments.
1789 * doc/trouble.texi: Use @r{} in comments.
1791 2004-09-17 Hans-Peter Nilsson <hp@bitrange.com>
1793 * configure.ac (gcc_cv_gld_version): Handle whitespace before
1795 * aclocal.m4 (_gcc_COMPUTE_GAS_VERSION): Ditto.
1796 * configure: Regenerate.
1798 2004-09-17 J"orn Rennecke <joern.rennecke@superh.com>
1800 * sh.c (sh_gimplify_va_arg_expr): Don't call pass_by_reference.
1801 (sh_pass_by_reference): Work around std_gimplify_va_arg_expr bug.
1802 * t-sh (MULTILIB_CPUS): s/ML_m/ML_sh/g .
1803 * t-sh64 (MULTILIB_CPU_DIRS): Likewise. Match dashes and trailing
1804 slashes in substitutions.
1805 (MULTILIB_DIRNAMES): Remove defunct removal of /media32.
1807 2004-09-17 Kazu Hirata <kazu@cs.umass.edu>
1809 * basic-block.h, c-decl.c, c-parse.in, cgraphunit.c, ddg.c,
1810 gimplify.c, lambda-code.c, optabs.c, predict.c,
1811 tree-scalar-evolution.c, tree-sra.c, tree-ssa-loop-ch.c,
1812 tree-ssa.c, vec.h: Fix comment typos. Follow spelling
1815 2004-09-17 Kazu Hirata <kazu@cs.umass.edu>
1817 * doc/compat.texi, doc/cpp.texi, doc/cppopts.texi,
1818 doc/extend.texi, doc/install.texi, doc/invoke.texi,
1819 doc/sourcebuild.texi, doc/tm.texi, doc/tree-ssa.texi,
1820 doc/trouble.texi: Use @option around options.
1822 2004-09-17 Richard Sandiford <rsandifo@redhat.com>
1824 * Makefile.in (gen-protos.o): Depend on errors.h.
1826 2004-09-17 Steven Bosscher <stevenb@suse.de>
1828 PR tree-optimization/17513
1829 * cfgexpand.c (construct_init_block): Clear EDGE_EXECUTABLE
1830 for successors of the entry block.
1832 2004-09-17 Uros Bizjak <uros@kss-loka.si>
1834 PR rtl-optimization/15187
1835 * ifcvt.c (noce_try_cmove_arith): Exit early if total
1836 insn_rtx_cost of both branches > BRANCH_COST
1838 2004-09-16 Diego Novillo <dnovillo@redhat.com>
1840 PR tree-optimization/17528
1841 * tree-ssa-alias.c (compute_flow_insensitive_aliasing): Do not
1842 erase the may-alias set for a tag when merging it with
1845 2004-09-16 Kaz Kojima <kkojima@gcc.gnu.org>
1847 * config/sh/sh.md (call): Extend 32-bit addresses to DImode
1848 for 32-bit TARGET_SHMEDIA.
1849 (call_value): Likewise.
1851 2004-09-16 Diego Novillo <dnovillo@redhat.com>
1853 * tree-ssa-operands.c (add_call_clobber_ops): Make read-only
1854 test apply only to TREE_STATIC and DECL_EXTERNAL.
1856 2004-09-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
1858 * Makefile.in (tree-cfg.o): Add CFGLAYOUT_H dependency.
1859 * basic-block.h (get_dominated_by_region): Declare.
1860 * dominance.c (get_dominated_by_region): New function.
1861 * tree-cfg.c: Include cfglayout.h.
1862 (tree_duplicate_bb): Duplicate also phi nodes.
1863 (struct ssa_name_map_entry): New type.
1864 (add_phi_args_after_copy_bb, add_phi_args_after_copy,
1865 ssa_name_map_entry_hash, ssa_name_map_entry_eq,
1866 allocate_ssa_names, rewrite_to_new_ssa_names_def,
1867 rewrite_to_new_ssa_names_use, rewrite_to_new_ssa_names_bb,
1868 rewrite_to_new_ssa_names, tree_duplicate_sese_region): New functions.
1869 * tree-flow.h (tree_duplicate_sese_region, add_phi_args_after_copy_bb,
1870 add_phi_args_after_copy, rewrite_to_new_ssa_names_bb,
1871 rewrite_to_new_ssa_names, allocate_ssa_names,
1872 rewrite_into_loop_closed_ssa, verify_loop_closed_ssa): Declare.
1873 * tree-ssa-loop-ch.c (duplicate_blocks): Removed.
1874 (copy_loop_headers): Use tree_duplicate_sese_region.
1876 2004-09-16 Frank Ch. Eigler <fche@redhat.com>
1878 * profile.c (branch_prob): Restore support for USE_MAPPED_LOCATION.
1880 2004-09-16 Jeff Law <law@redhat.com>
1882 * tree-into-ssa.c (block_defs_stack): New toplevel varray.
1883 (rewrite_block_data): Remove, no longer used.
1884 (rewrite_initialize_block_local_data): Remove, no longer used.
1885 (rewrite_initialize_block): Mark parameters as unused as needed.
1886 Change references to the block local block_defs to be block_defs_stack.
1887 Push a marker onto the block_defs_stack.
1888 (ssa_rewrite_initialize_block): Similarly.
1889 (rewrite_stmt, ssa_rewrite_stmt): Similarly.
1890 (ssa_register_new_def): No longer needs varray argument. Use
1891 block_defs_stack instead. No longer handle possibly null block_defs
1892 varray. Reverse order of items we push on the stack to make it
1893 easier to identify our marker.
1894 (register_new_def): No longer handle possibly null block_defs
1896 (rewrite_finalize_block): Revamp to look for markers in the global
1897 block_defs_stack varray rather than wiping a block local varray.
1898 Mark arguments as unused as needed.
1899 (ssa_rewrite_finalize_block): Similarly.
1900 (rewrite_into_ssa): Update initialization of dom walker structure
1901 to reflect that we don't need block local data anymore. Initialize
1902 the block_defs_stack varray.
1903 (rewrite_ssa_into_ssa): Similarly.
1904 * tree-ssa-dom.c (block_defs_stack): New toplevel varray.
1905 (struct dom_walk_data): Kill block_defs field.
1906 (tree_ssa_dominator_optimize): Initialize block_defs_stack.
1907 (thread_across_edge): Use the global block_defs_stack instead of
1908 the old block_defs varray.
1909 (dom_opt_initialize_block_local_data): Update now that we don't have
1910 block_defs field to check anymore.
1911 (dom_opt_initialize_block): Push a marker onto block_defs_stack.
1912 (restore_currdefs_to_original_value): Use the new block_defs_stack
1913 instead of a block local varray.
1914 (dom_opt_finalize_block): Similarly.
1915 (record_equivalencs_from_phis): Similarly.
1916 (optimize_stmt, register_definitions_for_stmt): Similarly.
1918 2004-09-16 Andrew MacLeod <amacleod@redhat.com>
1920 PR tree-optimization/17517
1921 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Don't
1922 coalesce same-root variables without checking for abnormal PHI usage.
1924 2004-09-16 Daniel Berlin <dberlin@dberlin.org>
1926 * cfgloop.h (duplicate_loop): Add prototype.
1927 * cfgloopmanip.c (duplicate_loop): Make non-static.
1928 * lambda-code.c (perfect_nestify): Factor out test whether
1929 we can handle this loop into separate function.
1931 (can_convert_to_perfect_nest): New function.
1932 (replace_uses_of_x_with_y): Add modify_stmt call.
1933 * tree-loop-linear.c (linear_transform_loops): Call
1934 rewrite_into_loop_closed_ssa and free_df.
1936 2004-09-16 Daniel Berlin <dberlin@dberlin.org>
1938 * lambda-code.c (invariant_in_loop): is_gimple_min_invariant is
1939 loop invariant as well.
1940 (perfect_nestify): new function.
1941 (gcc_loop_to_lambda_loop): New parameters to track lower bounds,
1942 upper bounds, and steps.
1943 Set outerinductionvar properly.
1944 (gcc_loopnest_to_lambda_loopnest): Add loops and need_perfect
1946 Return NULL if we need a perfect loop and can't make one.
1947 (lambda_loopnest_to_gcc_loopnest): Correct algorithm.
1948 (not_interesting_stmt): New function.
1949 (phi_loop_edge_uses_def): Ditto.
1950 (stmt_uses_phi_result): Ditto.
1951 (stmt_is_bumper_for_loop): Ditto.
1952 (perfect_nest_p): Ditto.
1953 (nestify_update_pending_stmts): Ditto.
1954 (replace_uses_of_x_with_y): Ditto.
1955 (stmt_uses_op): Ditto.
1956 (perfect_nestify): Ditto.
1957 * lambda-mat.c (lambda_matrix_id_p): New function.
1958 * lambda-trans.c (lambda_trans_matrix_id_p): Ditto.
1959 * lambda.h: Update prototypes.
1960 * tree-loop-linear (linear_transform_loop): Use new
1961 perfect_nest_p. Detect and ignore identity transform.
1962 * tree-ssa-loop.c (pass_linear_transform): Use TODO_write_loop_closed.
1964 2004-09-16 Sebastian Pop <pop@cri.ensmp.fr>
1966 * tree-loop-linear.c (gather_interchange_stats): Add more comments.
1967 Gather also strides of accessed data. Pass in the data references
1969 (try_interchange_loops): Add a new heuristic for handling the temporal
1970 locality. Pass in the data references array.
1971 (linear_transform_loops): Pass the data references array to
1972 try_interchange_loops.
1974 2004-09-16 Kazu Hirata <kazu@cs.umass.edu>
1976 * doc/invoke.texi: Fix typos. Follow spelling conventions.
1978 2004-09-16 Nathan Sidwell <nathan@codesourcery.com>
1980 * doc/c-tree.texi (Classes): Remove index entries for
1981 TREE_VIA_{PUBLIC,PROTECTED,PRIVATE}.
1983 2004-09-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
1985 * fold-const.c (fold): Fold difference of addresses.
1986 (ptr_difference_const): Moved from tree-ssa-loop-ivopts, based on
1987 get_inner_reference.
1988 * tree-ssa-loop-ivopts.c (peel_address): Removed.
1989 (ptr_difference_const): Moved to fold-const.c.
1990 (split_address_cost): Use get_inner_reference instead of peel_address.
1991 (ptr_difference_cost): Change type of diff to HOST_WIDE_INT.
1992 * tree.h (ptr_difference_const): Export.
1994 * tree-ssa-loop-ivopts.c (dump_iv, dump_use, dump_cand): Add induction
1995 variable type to the dump. Fix indentation.
1996 (idx_find_step): Handle nonconstant array_ref_element_size and
1997 array_ref_low_bound.
1998 (idx_record_use): Handle array_ref_element_size and
1999 array_ref_low_bound.
2000 (find_interesting_uses_stmt): Handle memory = nontrivial_expression
2001 statements correctly.
2002 (get_computation_at, iv_value): Do not unshare expressions here.
2003 (rewrite_use_outer): Unshare the expression before it is emitted
2005 * tree-ssa-loop-niter.c (unsigned_type_for, signed_type_for):
2007 * tree.c (unsigned_type_for, signed_type_for): Moved from
2008 tree-ssa-loop-niter.c. Use langhooks.
2009 * tree.h (signed_type_for): Export.
2011 2004-09-16 David Edelsohn <edelsohn@gnu.org>
2013 * config/rs6000/rs6000.c (rs6000_xcoff_asm_named_section): Update
2016 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
2019 * c-incpath.h (target_c_incpath_s): Add extra_pre_includes.
2020 Add two parameters to extra_includes.
2021 (C_INCPATH_INIT): Remove.
2022 * c-incpath.c (register_include_chains): Call extra_pre_includes
2023 before adding the standard include directory.
2024 Update call to extra_includes.
2025 (!defined TARGET_EXTRA_INCLUDES): Update
2026 hook_void_charptr_charptr_int and add !define
2027 TARGET_EXTRA_PRE_INCLUDES.
2028 (!define TARGET_EXTRA_INCLUDES): Define as
2029 hook_void_charptr_charptr_int.
2030 (!define TARGET_EXTRA_PRE_INCLUDES): Likewise.
2031 (target_c_incpath): Always declare.
2032 * fixinclude.c (defined TARGET_EXTRA_INCLUDES): Declare a
2034 (define TARGET_EXTRA_PRE_INCLUDES): Likewise.
2035 * config/darwin.h: (darwin_register_frameworks): Update for
2036 the two new parameters.
2037 (darwin_register_objc_includes): Add prototype.
2038 (TARGET_EXTRA_PRE_INCLUDES): Define.
2039 * config/darwin-c.c (darwin_register_objc_includes): New function.
2040 (darwin_register_frameworks): Update for the two new parameters.
2041 (target_c_incpath): Remove.
2042 * config/t-darwin (darwin-c.o): Add $(PREPROCESSOR_DEFINES) to
2044 * doc/tm.texi (TARGET_EXTRA_INCLUDES): Document the two new
2046 (TARGET_EXTRA_PRE_INCLUDES): Document.
2048 * gcc.c (spec_function): Add replace-outfile.
2049 (replace_outfile_spec_function): New function.
2050 * config/darwin.h (LINK_SPEC): Add replace
2051 -lobjc with -lobjc-gnu if -fgnu-runtime is
2053 * invoke.texi (replace-outfile): Document.
2055 2004-09-13 Jan Hubicka <jh@suse.cz>
2057 * predict.c (expr_expected_value, strip_builtin_expect): New function.
2058 (tree_predict_by_opcode): Use it.
2059 (tree_estimate_probability): Add, for now disabled,
2060 strip_builtin_expect call.
2062 2004-09-15 James E Wilson <wilson@specifixinc.com>
2065 * config/ia64/ia64.c (ia64_function_ok_for_sibcall): Return false
2066 if current_function_decl is a sibcall.
2068 2004-09-15 Mark Mitchell <mark@codesourcery.com>
2070 * varasm.c (default_function_rdodata_section): Make sure to pass
2071 along a decl for a link-once section.
2073 2004-09-15 Richard Henderson <rth@redhat.com>
2075 * tree-ssa-operands.c (add_call_clobber_ops): Fix unused variable
2076 warning with code disable. Fix formatting.
2078 2004-09-15 Steven Bosscher <stevenb@suse.de>
2080 * Makefile.in (tree-ssa-dom.o): Depend on tree-ssa-propagate.h.
2081 * tree-ssa-dom.c (cprop_into_stmt): Recompute TREE_INVARIANT
2082 after propagating into an ADDR_EXPR.
2084 2004-09-15 Andrew Pinski <apinski@apple.com>
2087 * gcse.c (process_insert_insn): insn_invalid_p has side effects.
2088 Move it out of gcc_assert.
2090 2004-09-15 Joseph S. Myers <jsm@polyomino.org.uk>
2092 * attribs.c, builtins.c, c-format.c, c-pch.c, coverage.c,
2093 except.c, fold-const.c, function.c, langhooks.c, params.c,
2094 reload.c, reload1.c, stmt.c, stor-layout.c, toplev.c, tree-cfg.c,
2095 tree-dump.c, tree-mudflap.c, tree.c, varasm.c: Use %<, %> and %q
2096 for quoting in diagnostics going through pretty-print.c. Use ''
2097 for quoting in other diagnostic text.
2098 * langhooks.c: Include intl.h. Mark text locating diagnostics for
2100 * Makefile.in (langhooks.o): Update dependencies.
2101 * pretty-print.h (pp_printf): Mark as accepting GCC diagnostic
2104 2004-09-15 Mark Mitchell <mark@codesourcery.com>
2106 * configure.ac: Check for COMDAT support. Robustify check for
2108 * configure: Regenerated.
2109 * config.in: Likewise.
2110 * langhooks-def.h (lhd_comdat_group): New function.
2111 (LANG_HOOKS_COMDAT_GROUP): New macro.
2112 (LANG_HOOKS_DECLS): Use it.
2113 * langhooks.c (lhd_comdat_group): Define.
2114 * langhooks.h (lang_hooks_for_decls): Add comdat_group.
2115 * output.h (named_section_flags): Make it a macro.
2116 (named_section_real): New function.
2117 (default_no_named_section): Add decl parameter.
2118 (default_elf_asm_named_section): Likewise.
2119 (default_coff_asm_named_section): Likewise.
2120 (default_pe_asm_named_section): Likewise.
2121 * target.h (gcc_target): Adjust type of named_section.
2122 * varasm.c (named_section_flags): Rename to named_section_real.
2124 (default_no_named_section): Add decl parameter.
2125 (default_elf_asm_named_section): Use COMDAT, if available. Deal
2126 with the case that ASM_COMMENT_START is "@".
2127 (default_coff_asm_named_section): Add decl parameter.
2128 (default_pe_asm_named_section): Likewise.
2129 * config/alpha/alpha.c (vms_asm_named_section): Add decl
2131 (unicosmk_asm_named_section): Likewise.
2132 * config/arm/arm.c (arm_elf_asm_named_section): Remove.
2133 * config/arm/elf.h (TARGET_ASM_NAMED_SECTION): Likewise.
2134 * config/c4x/c4x.c (c4x_asm_named_section): Add decl parameter.
2135 * config/cris/cris-protos.h (cris_target_asm_named_section):
2137 * config/cris/cris.c (cris_target_asm_named_section):
2139 * config/darwin/darwin-protos.h (darwin_asm_named_section):
2141 * config/darwin/darwin.c (darwin_asm_named_section): Likewise.
2142 * config/h8300/h8300.c (h8300_asm_named_section): Likewise.
2143 * config/i386/i386-protos.h (i386_pe_asm_named_section):
2145 * config/i386/winnt.c (i386_pe_asm_named_section): Likewise.
2146 * config/m68k/m68k.c (m68k_coff_asm_named_section): Likewise.
2147 * config/mcore/mcore.c (mcore_asm_named_section): Likewise.
2148 * config/rs6000/rs6000.c (rs6000_xcoff_asm_named_section):
2150 * config/sparc/sparc.c (sparce_elf_asm_named_section): Likewise.
2151 * cp/cp-lang.h (LANG_HOOKS_COMDAT_GROUP): Define.
2152 * cp/cp-tree.h (cxx_comdat_group): Declare.
2153 * cp/decl.c (cxx_comdat_group): New function.
2155 2004-09-15 Jan Hubicka <jh@suse.cz>
2157 * tree-ssa.c (verify_flow_sensitive_alias_info): Do not walk dead nodes.
2158 * tree-tailcall.c (eliminate_tail_call): Release SSA name.
2160 * tree-cfg.c (remove_bb): Release SSA defs.
2162 2004-09-15 Kazu Hirata <kazu@cs.umass.edu>
2164 * doc/tm.texi: Follow spelling conventions.
2166 2004-09-15 Kazu Hirata <kazu@cs.umass.edu>
2168 * tree-ssa-dom.c: Fix comment typos.
2170 2004-09-15 Alan Modra <amodra@bigpond.net.au>
2172 * config/rs6000/linux-unwind.h (struct gcc_pt_regs): Extend to
2174 (ppc_fallback_frame_state): Save location of CR.
2176 2004-09-15 Jakub Jelinek <jakub@redhat.com>
2178 * expr.c (string_constant): Handle also read-only variables
2179 initialized to string literals.
2181 * builtins.c (expand_builtin_memmove): Optimize memmove (x, y, 1)
2182 into memcpy (x, y, 1) if memcpy can be expanded inline.
2184 2004-09-15 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2186 PR tree-optimization/17468
2187 * tree-ssa.c (verify_use, verify_phi_args, verify_ssa): Verify that
2188 definition inside a block precede uses.
2189 * tree-tailcall.c (adjust_return_value): Emit statements in the
2192 2004-09-15 Richard Sandiford <rsandifo@redhat.com>
2194 * config/mips/mips.h (POINTERS_EXTEND_UNSIGNED): Delete.
2196 2004-09-15 Eric Botcazou <ebotcazou@libertysurf.fr>
2198 * doc/install.texi (sparc-sun-solaris2*): Properly format warning.
2200 2004-09-14 Jeff Law <law@redhat.com>
2202 * tree-ssa-dom.c (avail_exprs_stack): New global varray.
2203 (struct dom_walk_block_data): Remove avail_exprs member.
2204 (tree_ssa_dominator_optimize): Initialize avail_exprs_stack.
2205 (lookup_avail_expr): No longer need to pass in address of
2206 the block local available exprs stack. All callers changed.
2207 (simplify_cond_and_lookup_avail_expr): Similarly.
2208 (simplify_switch_and_lookup_avail_expr): Similarly.
2209 (get_eq_expr_value, record_cond): Likewise.
2210 (record_dominating_conditions): Likewise.
2211 (update_rhs_and_lookup_avail_expr): Likewise.
2212 (record_equivalences_from_stmt): Likewise.
2213 (dom_opt_initialize_block_local_data): No longer test state of
2214 block local avail_exprs.
2215 (dom_opt_initialize_block): Mark unwind point in the global
2217 (remove_expressions_from_table): Update to unwind to the
2218 most recent unwind marker in the global avail_expr stack.
2219 All callers changed.
2220 (dom_opt_finalize_block): Mark unwind point in the global
2221 avail_expr stack as needed.
2222 (record_cond): Push elements into the global avail_exprs stack.
2224 * tree-dfa.c (free_df_for_stmt): No longer static.
2225 (free_df): Update comments.
2226 * tree-flow.h (free_df_for_stmt): Prototype.
2227 * tree-ssa-dse.c (dse_optimize_stmt): Call free_df_for_stmt. Also
2230 2004-09-14 Diego Novillo <dnovillo@redhat.com>
2232 PR tree-optimization/17252
2233 * tree-ssa-alias.c (may_alias_p): Don't assume that a
2234 pointer may not point to itself when using relaxed
2237 2004-09-14 Richard Henderson <rth@redhat.com>
2240 * gimplify.c (gimplify_addr_expr): Don't inadvertently change types
2241 while folding <ADDR_EXPR <INDIRECT_REF X>>.
2243 2004-09-14 Andrew Pinski <apinski@apple.com>
2245 * tree-ssa-copy.c (may_propagate_copy): Don't check the aliasing
2246 sets of the pointers but the aliasing sets of what they point to.
2248 2004-09-14 Roger Sayle <roger@eyesopen.com>
2250 PR rtl-optimization/9771
2251 * regclass.c (CALL_REALLY_USED_REGNO_P): New macro to eliminate
2252 conditional compilation in init_reg_sets_1.
2253 (init_reg_sets_1): Let global_regs[i] take priority over the frame
2254 (but not stack) pointer exceptions to regs_invalidated_by_call.
2255 (globalize_reg): Globalizing a fixed register may need to update
2256 regs_invalidated_by_call.
2258 2004-09-14 Diego Novillo <dnovillo@redhat.com>
2260 PR tree-optimization/15262
2261 * tree-dfa.c (dump_variable): Also print the type of the
2263 * tree-ssa-alias.c (compute_flow_insensitive_aliasing): If two
2264 memory tags are of conflicting alias sets but have no aliased
2265 symbols in common, add one tag to the alias set of the other.
2266 (setup_pointers_and_addressables): Remove hack to deal with
2267 programs with no aliased symbols.
2268 (may_alias_p): Don't special case aggregate types.
2270 2004-09-14 Joseph S. Myers <jsm@polyomino.org.uk>
2273 * doc/invoke.texi (Environment Variables): Correct example locale.
2275 2004-09-14 Jan Hubicka <jh@suse.cz>
2277 * cfg.c (expunge_block): Revert previous change adding ggc_free call.
2279 2004-09-14 Mark Mitchell <mark@codesourcery.com>
2281 * config.gcc: Do not build a shared libgcc for arm-none-eabi.
2283 2004-09-14 Joseph S. Myers <jsm@polyomino.org.uk>
2285 * c-tree.h (struct c_declspecs): Add const_p, volatile_p and
2287 (struct c_declarator): Change u.array.quals and pointer_quals to
2288 int. Add u.array.attrs.
2289 (quals_from_declspecs): New.
2290 * c-decl.c (quals_from_declspecs): New.
2291 (shadow_tag_warned): Give more specific message for useless type
2293 (build_array_declarator, set_array_declarator_inner,
2294 grokdeclarator, make_pointer_declarator, build_null_declspecs,
2295 declspecs_add_qual): Update for changed structures.
2297 2004-09-14 Jeff Law <law@redhat.com>
2299 * tree-ssa-dom.c (stmts_to_rescan): Move from a block-local
2301 (tree_ssa_dominator_optimize): Allocate stmts_to_rescan.
2302 (dom_opt_initialize_block_local_data): No longer test state
2304 (dom_opt_finalize_block): Update due to change in scope of
2306 (optimize_stmt): Similarly.
2308 2004-09-14 Kazu Hirata <kazu@cs.umass.edu>
2310 * cgraph.h, cgraphunit.c, fold-const.c, lambda-mat.c,
2311 lambda.h, profile.c, tree-optimize.c, tree-sra.c, vec.h: Fix
2312 comment typos. Follow spelling conventions.
2314 2004-09-14 Kazu Hirata <kazu@cs.umass.edu>
2316 * config/darwin-c.c, config/alpha/alpha.c, config/i386/i386.c,
2317 config/i386/predicates.md, config/sparc/sparc.c: Follow
2318 spelling conventions.
2320 2004-09-14 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2321 Steven Bosscher <stevenb@suse.de>
2323 * Makefile.in (loop-unroll.o): Add HASHTAB_H and RECOG_H dependency.
2324 * basic-block.h (struct reorder_block_def): Add copy_number field.
2325 * cfgloop.h (biv_p): Declare.
2326 * cfgloopmanip.c (duplicate_loop_to_header_edge): Set copy_number.
2327 * common.opt (fsplit-ivs-in-unroller): New flag.
2328 * loop-iv.c (biv_p): New function.
2329 * loop-unroll.c: Include hashtab.h and recog.h.
2330 (struct iv_to_split, struct split_ivs_info): New types.
2331 (analyze_ivs_to_split, si_info_start_duplication, split_ivs_in_copies,
2332 free_si_info, si_info_hash, si_info_eq, analyze_iv_to_split_insn,
2333 determine_split_iv_delta, get_ivts_expr, allocate_basic_variable,
2334 insert_base_initialization, split_iv): New functions.
2335 (peel_loop_completely, unroll_loop_constant_iterations,
2336 unroll_loop_runtime_iterations, peel_loop_simple, unroll_loop_stupid):
2338 * doc/invoke.texi (-fsplit-ivs-in-unroller): Document.
2340 2004-09-14 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2342 * tree-cfg.c (thread_jumps): Update dominators correctly in
2343 case destination of threaded edge dominates its source.
2345 2004-09-14 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2347 * unroll.c: Removed.
2349 * Makefile.in (LOOP_H, unroll.o): Removed.
2350 (toplev.o, passes.o, stmt.o, integrate.o, loop.o): Remove LOOP_H
2352 * alias.c (init_alias_analysis): Remove flag_old_unroll_loops
2354 * cfgloop.h (LOOP_PREFETCH, loop_optimize): Moved from loop.h.
2355 * common.opt (fold-unroll-loops, fold-unroll-all-loops): Removed.
2356 * loop.c: Do not include loop.h.
2357 (LOOP_INFO, LOOP_MOVABLES, LOOP_REGS, LOOP_IVS, INSN_LUID,
2358 REGNO_FIRST_LUID, REGNO_LAST_LUID, enum g_types, struct induction,
2359 struct iv_class, enum iv_mode, struct iv, REG_IV_TYPE, REG_IV_INFO,
2360 REG_IV_CLASS, struct loop_ivs, struct loop_mem_info, struct loop_reg,
2361 struct loop_regs, struct loop_movables, struct loop_info): Moved
2363 (back_branch_in_range_p, fold_rtx_mult_add, biv_total_increment,
2364 reg_dead_after_loop, final_biv_value, loop_find_equiv_value,
2365 find_common_reg_term, loop_iterations, final_giv_value): Moved
2367 (uid_luid, uid_loop, max_uid_for_loop, max_reg_before_loop,
2368 loop_dump_stream, for_each_insn_in_loop, express_from,
2369 extend_value_for_giv, loop_iv_add_mult_emit_before,
2370 loop_iv_add_mult_sink, loop_iv_add_mult_hoist,
2371 loop_insn_first_p, get_condition_for_loop,
2372 loop_insn_emit_before, loop_insn_hoist,
2373 loop_insn_sink): Made static.
2374 (loop_invariant_p): Made static. Removed flag_old_unroll_loops
2376 (strength_reduce): Do not call unroller.
2377 (record_giv): Do not initialize unrolled field.
2378 (prescan_loop): Do not set loop_info->preconditioned.
2379 * passes.c: Do not include loop.h.
2380 (rest_of_handle_loop_optimize): Do not call unroller.
2381 * predict.c: Do not include loop.h.
2382 * rtl.h (NOTE_PRECONDITIONED): Removed.
2383 * stmt.c: Do not include loop.h.
2384 * toplev.c: Do not include loop.h.
2385 (process_options): Do not handle flag_old_unroll_loops.
2387 * doc/invoke.texi (fold-unroll-loops, fold-unroll-all-loops):
2388 Documentation removed.
2389 * doc/passes.texi (unroll.c, loop.h): Documentation removed.
2391 2004-09-14 Nathan Sidwell <nathan@codesourcery.com>
2393 * Makefile.in (STAGE1_CHECKING): New variable.
2394 (stage1_build): Use it.
2395 * tree-ssa.c (verify_ssa): Preserve state of dominance
2398 2004-09-14 Uros Bizjak <uros@kss-loka.si>
2400 * config/i386/i386.c (output_fp_compare): Add generation
2401 of ftst instruction.
2402 * config/i386/i386.md (*cmpfp_0_sf, cmpfp_0_df, cmpfp_0_xf):
2403 Use output_fp_compare () function.
2404 (cmpfp_i, *cmpfp_i_sse, *cmpfp_i_sse_only): Fix insn constraint.
2405 (fix_truncdi_memory): Remove operands[5] copy.
2407 2004-09-14 Kazu Hirata <kazu@cs.umass.edu>
2409 * config/m32r/m32r.md, config/m68k/m68kelf.h,
2410 config/mcore/mcore.md, config/rs6000/linux64.h,
2411 config/rs6000/rs6000.c, config/sparc/sparc.c: Fix comment
2414 2004-09-13 James E Wilson <wilson@specifixinc.com>
2416 * Makefile.in (GEN_PROTOS_OBJS): Add $(BUILD_ERRORS).
2417 * gen-protos.c: Include errors.h.
2420 2004-09-14 Jan Hubicka <jh@suse.cz>
2422 * Makefile.in (predict.o): Depend on tree-scalar-evolution.h
2423 * predict.c: Include tree-scalar-evolution.h and cfgloop.h
2424 (predict_loops): Use number_of_iterations_exit to predict
2425 number of iterations on trees.
2427 2004-09-13 Dale Johannesen <dalej@apple.com>
2431 * c-decl.c (start_decl): Repair TREE_STATIC for initialized
2432 objects declared extern.
2434 2004-09-14 Paul Brook <paul@codesourcery.com>
2436 * config/arm/arm.c (arm_expand_prologue): Make args_to_push a
2439 2004-09-13 Daniel Jacobowitz <dan@debian.org>
2441 * fold-const.c (fold_checksum_tree): Ignore TYPE_CACHED_VALUES.
2442 Only use TYPE_BINFO for aggregates.
2444 2004-09-13 Daniel Jacobowitz <dan@debian.org>
2446 * expmed.c (synth_mult): Initialize latency. Check cost before
2449 2004-09-13 Kenneth Zadeck <Kenneth.Zadeck@NaturalBridge.com>
2451 * tree-ssa-operands.c (get_call_expr_operands): Added parm to
2452 add_call_clobber_ops and add_call_read_ops.
2453 (add_call_clobber_ops, add_call_read_ops): Added code to reduce
2454 the number of vdefs and vuses inserted based on analysis of global
2455 variables across calls. * tree-dfa.c (find_referenced_vars):
2456 Needed to reset static var maps before each function is compiled.
2458 (static_vars_to_consider_by_tree,static_vars_to_consider_by_uid,
2459 static_vars_info,functions_to_static_vars_info,module_statics_escape,
2460 all_module_statics,searchc_env,dfs_info): New fields to support
2461 analysis of static global variables.
2462 (print_order, convert_UIDs_in_bitmap, new_static_vars_info,
2463 cgraph_reset_static_var_maps, get_global_static_vars_info,
2464 get_global_statics_not_read, get_global_statics_not_written,
2465 searchc, cgraph_reduced_inorder, has_proper_scope_for_analysis,
2466 check_rhs_var, check_lhs_var, get_asm_expr_operands,
2467 process_call_for_static_vars, scan_for_static_refs,
2468 cgraph_characterize_statics_local, cgraph_get_static_name_by_uid,
2469 clear_static_vars_maps, cgraph_propagate_bits,
2470 cgraph_characterize_statics): New. Functions to support analysis
2471 of static global variables.
2472 (cgraph_mark_local_and_external_functions): Renamed from:
2473 (cgraph_mark_local_functions)
2474 (cgraph_expand_all_functions): Remove call to
2475 cgraph_mark_local_and_external_functions.
2476 (cgraph_optimize): Added driver to analyze static variables whose
2477 scope is within the compilation unit. * cgraph.h (struct
2478 cgraph_local_info, GTY): Added statics_read, statics_written,
2479 local, calls_read_all, calls_write_all, for_functions_valid.
2480 (struct cgraph_node): Added next_cycle. * cgraph.c
2481 (dump_cgraph_node): Added print routines for new fields. *
2482 makefile.in: macroized cgraph.h, added cgraphunit.c to the ggc
2485 2004-09-13 Joseph S. Myers <jsm@polyomino.org.uk>
2487 * c-decl.c (grokdeclarator): Correct comments about where storage
2488 class specifiers are rejected by grammar and add corresponding
2489 asserts. Diagnose typedefs and parameters declared inline.
2490 Change warning for inline main to a pedwarn. Only diagnose inline
2492 (declspecs_add_scspec): Allow duplicate "inline".
2494 2004-09-13 Steve Ellcey <sje@cup.hp.com>
2496 * config/ia64/ia64.c (ia64_scalar_mode_supported_p): New.
2497 (TARGET_SCALAR_MODE_SUPPORTED_P): New.
2499 2004-09-13 Richard Henderson <rth@redhat.com>
2502 * tree.h (TYPE_CONTAINS_PLACEHOLDER_INTERNAL): New.
2503 (tree_type): Replace spare with contains_placeholder_bits.
2504 (type_contains_placeholder_1): Rename from type_contains_placeholder_p,
2505 make static. Remove seen_types list.
2506 (type_contains_placeholder_p): New.
2508 2004-09-13 James E Wilson <wilson@specifixinc.com>
2510 * config/mips/mips.c (CODE_FOR_mips_sqrt_ps): New.
2511 (sb1_bdesc, bdesc_map, bdesc_arrays): New.
2512 (mips_expand_builtin): Add SB-1 support. Use bdesc_map and
2513 bdesc_arrays instead of mips_bdesc.
2514 (mips_init_builtins): Likewise.
2515 * config/mips/mips.h (TARGET_SB1): New.
2516 (HAVE_SQRT_P): Delete.
2517 * config/mips/mips.md (divide_condition): Support V2SF.
2518 (sqrt_condition, recip_condition): New.
2519 (div<mode>3): Use ANYF instead of SCALARF.
2520 (*div<mode>3): Use ANYF instead of SCALARF. Use UNITMODE instead of
2522 (*recip<mode>3, *rsqrt<mode>a, *rsqrt<mode>b): Use recip_condition
2523 instead of ISA_HAS_FP4. Use ANYF instead of SCALARF. Use UNITMODE
2525 (sqrt<mode>2): Use sqrt_condition instead of HAVE_SQRT_P. Use ANYF
2526 instead of SCALARF. Use UNITMODE instead of MODE.
2528 2004-09-13 Zack Weinberg <zack@codesourcery.com>
2530 * config.in: Regenerate after removal of libbanshee.
2532 2004-09-13 Andrew MacLeod <amacleod@redhat.com>
2534 PR tree-optimization/17400
2535 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Don't
2536 coalesce partitions when one occurs in an abnormal PHI.
2538 2004-09-13 Andrew Pinski <apinski@apple.com>
2540 * config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Change variable size's
2543 2004-09-13 Richard Henderson <rth@redhat.com>
2546 * cselib.c (cselib_invalidate_rtx): Export. Remove unused args.
2547 (cselib_invalidate_rtx_note_stores): New.
2548 (cselib_record_sets, cselib_process_insn): Update to match.
2549 * cselib.h (cselib_invalidate_rtx): Declare.
2550 * postreload.c (reload_cse_simplify): Invalidate asm clobbers.
2552 2004-09-13 Richard Henderson <rth@redhat.com>
2555 * tree-inline.c (copy_body_r): Recompute bits for ADDR_EXPR,
2556 after copying its argument.
2558 2004-09-13 Joseph S. Myers <jsm@polyomino.org.uk>
2560 * c-common.c, c-decl.c, c-lex.c, c-objc-common.c, c-opts.c,
2561 c-parse.in, c-pragma.c, c-typeck.c: Use %q, %< and %> for quoting
2562 in diagnostics. Use %' for English apostrophes.
2563 * c-tree.h (ATTRIBUTE_GCC_CDIAG): Define.
2564 (pedwarn_c90, pedwarn_c99): Use it.
2565 * c-decl.c (lookup_label): Quote label name in diagnostic.
2566 * c-parse.in (yyprint): Use ' instead of ` for left quote.
2567 * c-typeck.c (warn_for_assignment): Likewise.
2569 2004-09-13 Jan Hubicka <jh@suse.cz>
2571 * i386.c (x86_schedule): New global variable.
2572 (override_options): Disable scheduling when not supported.
2573 * i386.h (x86_schedule): Declare.
2574 (TARGET_SCHEDULE): New macro.
2576 2004-09-12 Richard Henderson <rth@redhat.com>
2579 * fold-const.c (fold) <case CLEANUP_POINT_EXPR>: Remove.
2580 * tree.c, tree.h (has_cleanups): Remove.
2582 2004-09-12 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2584 * tree-ssa-loop-manip.c (split_loop_exit_edge): Handle non-ssaname
2585 arguments of the phi nodes correctly.
2587 2004-09-12 Jan Hubicka <jh@suse.cz>
2589 * ggc-common.c (cmp_statistics): Fix sorting.
2591 2004-09-12 David Edelsohn <edelsohn@gnu.org>
2594 * expmed.c (expand_divmod): If cheap power of 2 divide is
2595 available, use it for negative constant as well.
2597 2004-09-12 Andrew Pinski <apinski@apple.com>
2599 * darwin.h (ASM_OUTPUT_COMMON): Make sure we do not have a
2602 * tree-chrec.c (initialize_scalar_evolutions_analyzer): Remove.
2604 2004-09-12 Richard Henderson <rth@redhat.com>
2606 * config/i386/i386.c (ix86_split_ashldi): Special case op1 as one
2608 (ix86_split_ashrdi, ix86_split_lshrdi): Clean up conditions for
2609 post-reload, and scratch NULL.
2610 * config/i386/i386.md (testqi_1): Use FLAGS_REG name.
2611 (x86_shift_adj_2): Use ix86_expand_clear.
2612 (ashldi3): Remove CMOVE expansion difference.
2613 (ashldi3_1): Remove.
2614 (*ashldi3_1): Rename from *ashldi3_2. Use reg_or_pm1_operand and
2615 add constraints for immediates. New peephole for split-with-temp.
2616 Run splitter after peep2 pass.
2617 (ashrdi3, ashrdi3_1, ashrdi3_2): Similarly.
2618 (lshrdi3, lshrdi3_1, lshrdi3_2): Similarly.
2619 (setcc_2): Rename with *.
2620 * config/i386/predicates.md (reg_or_pm1_operand): New.
2621 (ashldi_input_operand): New.
2623 2004-09-12 Richard Henderson <rth@redhat.com
2625 * print-rtl.c (print_decl_name): New.
2626 (print_mem_expr): Use it.
2628 2004-09-12 Richard Henderson <rth@redhat.com
2631 * except.c (sjlj_emit_function_exit): Fix logic locating
2632 sjlj_exit_after in final block.
2634 2004-09-12 Toon Moene <toon@moene.indiv.nluug.nl>
2636 * common.opt: Remove flags -fmove-all-movables and
2638 * loop-invariant.c (find_invariants_to_move):
2639 Remove all uses of flag_move_all_movables.
2640 * loop.c (move_movables): Remove all uses of
2641 flag_move_all_movables.
2642 (strength_reduce): Remove all uses of
2643 flag_reduce_all_givs.
2644 * doc/invoke.texi: Remove documentation of flags
2645 -fremove-all-movables and -freduce-all-givs.
2647 2004-09-11 Roger Sayle <roger@eyesopen.com>
2650 * tree-sra.c (generate_element_zero): Revert recent build_int_cst
2651 change. elt->type may be a floating point type, so use fold_convert.
2653 2004-09-11 Geoffrey Keating <geoffk@apple.com>
2655 * config/darwin.c (machopic_validate_stub_or_non_lazy_ptr): Mark
2656 the thing referenced as used, not the stub itself.
2658 2004-09-11 Joseph S. Myers <jsm@polyomino.org.uk>
2660 * c-tree.h (enum c_storage_class): New.
2661 (struct c_declspecs): Add storage_class, inline_p and thread_p.
2662 * c-decl.c (shadow_tag_warned): Give errors for "inline" in empty
2663 declarations and "auto" or "register" in file scope empty
2664 declarations. Give more specific warnings for other cases of
2665 storage class specifiers in empty declarations.
2666 (grokdeclarator): Update for new structures. Don't check for
2667 multiple storage classes. Diagnose file-scope "register" if
2669 (build_null_declspecs): Update.
2670 (declspecs_add_scspec): Update. Diagnose multiple storage class
2671 specifiers and invalid uses of "__thread".
2673 2004-09-11 Zack Weinberg <zack@codesourcery.com>
2675 * tree.c (tree_code_size): New function, bulk of code from tree_size.
2676 (tree_size, make_node): Use it.
2677 * tree-ssa-pre.c (init_pre): Use it.
2678 * tree.h: Prototype it.
2680 2004-09-11 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2682 * tree-cfg.c (set_bb_for_stmt): Use PHI_BB.
2683 * tree-dfa.c (compute_immediate_uses, add_immediate_use,
2684 redirect_immediate_use): Use PHI_DF.
2685 * tree-flow-inline.h (stmt_ann): Abort on phi nodes.
2686 (bb_for_stmt): Use PHI_BB.
2687 (get_immediate_uses): Use PHI_DF.
2688 * tree-ssa-dse.c (max_stmt_uid): New variable.
2689 (get_stmt_uid): New function.
2690 (dse_optimize_stmt, dse_record_phis, tree_ssa_dse): Do not use phi
2692 * tree-ssa-loop-im.c (LIM_DATA): Do not use phi statement annotations.
2693 (max_uid): Renamed to max_stmt_uid.
2694 (get_stmt_uid): New function.
2695 (maybe_queue_var, single_reachable_address, determine_lsm): Do not use
2696 phi node annotations.
2697 * tree-ssa.c (replace_immediate_uses): Do not use phi node annotations.
2698 * tree.h (PHI_BB, PHI_DF): New accessor functions.
2699 (struct tree_phi_node): Add bb and df fields.
2701 2004-09-11 Richard Henderson <rth@redhat.com>
2704 * cfgexpand.c (expand_used_vars_for_block): Fix off-by-one bug
2707 2004-09-11 Jan Hubicka <jh@suse.cz>
2709 * i386.h (MODE_NEEDED): Calls need UNINITIALIZED mode; add comment.
2710 (EMIT_MODE_SET): UNINITIALIZED mode needs no set.
2711 * i386.md (i387_cw): Add 'uninitialized' mode.
2713 * profile.c (BB_TO_GCOV_INDEX): move more to the front.
2714 (output_location): Break out from ....
2715 (branch_prob): ... here; handle gcov output on trees.
2716 * toplev.c (process_options): No longer be sorry about coverage for
2719 2004-09-11 Steven Bosscher <stevenb@suse.de>
2722 * fold-const.c (fold): Do not try to fold the operand of a
2723 CLEANUP_POINT_EXPR if that operand does itself not have any
2727 * langhooks.c (lhd_decl_printable_name): Make sure that this
2728 function is called with is a decl node that has an identifier.
2729 * tree-pretty-print.c (dump_function_name): New function to
2730 wrap PRINT_FUNCTION_NAME and dump_decl_name.
2731 (print_call_name): Use it.
2733 2004-09-11 Mohan Embar <gnustuff@thisiscool.com>
2735 * ggc-none.c: Include "bconfig.h" if -DGENERATOR_FILE,
2738 2004-09-11 Jakub Jelinek <jakub@redhat.com>
2740 * tree-ssa-alias.c (collect_points_to_info_r): Handle
2741 pointing to PTR + OFFSET as PTR, not as pointing to PTR or pointing
2744 2004-09-11 Richard Henderson <rth@redhat.com>
2746 * expr.c (expand_expr_addr_expr_1) Rename from expand_expr_addr_expr.
2747 (expand_expr_addr_expr): New function. Take ADDR_EXPR instead of the
2748 operand of the ADDR_EXPR.
2749 (expand_expr_real_1): Update to match.
2751 2004-09-11 David Edelsohn <edelsohn@gnu.org>
2754 * config/rs6000/aix.h (MD_FROB_UPDATE_CONTEXT): Use __64BIT__ to
2755 choose 64-bit version.
2757 2004-09-11 Richard Henderson <rth@redhat.com>
2760 * c-typeck.c (build_unary_op): Add legacy offsetof hack.
2762 2004-09-11 Kazu Hirata <kazu@cs.umass.edu>
2764 * doc/cfg.texi, doc/hostconfig.texi, doc/install.texi,
2765 doc/invoke.texi, doc/md.texi, doc/tm.texi, doc/tree-ssa.texi:
2766 Insert @: after i.e. or e.g.
2768 2004-09-10 Geoffrey Keating <geoffk@apple.com>
2770 * tree-pretty-print.c (dump_decl_name): Print unnamed decls as
2771 D.xxx rather than <Dxxx>.
2773 2004-09-10 Adam Nemet <anemet@lnxw.com>
2775 * configure.ac (AC_MSG_CHECKING(what linker to use)):
2776 in_tree_ld_is_elf should be true for LynxOS.
2777 * configure: Regenerate.
2779 2004-09-10 Adam Nemet <anemet@lnxw.com>
2781 * Makefile.in (all.cross): Add srcextra.
2783 2004-09-10 Roger Sayle <roger@eyesopen.com>
2786 * fold-const.c (fold_cond_expr_with_comparison): Handle unordered
2787 floating point comparison operators. Change aborts to gcc_asserts.
2789 2004-09-10 Geoffrey Keating <geoffk@apple.com>
2791 * final.c (output_asm_insn): Correct problem with -fverbose-asm.
2793 2004-09-10 James E Wilson <wilson@specifixinc.com>
2795 * Makefile.in (LIBGCC_DEPS): Delete duplicate stmp-int-hdrs reference.
2796 (stmp-fixproto): Change stmp-int-headers to stmp-int-hdrs in comment.
2798 * convert.c (convert_to_vector): Replace recursive call with
2801 * emit-rtl.c (gen_const_vector): Renamed from gen_const_vector_0.
2802 Add integer argument named constant. Use const_tiny_rtx instead of
2804 (gen_rtx_CONST_VECTOR): Rewrite to handle checks for both CONST0_RTX
2806 (init_emit_once): Fix users of gen_const_vector. Set CONST1_RTX for
2808 * expr.c (const_vector_from_tree): Call gen_rtx_CONST_VECTOR instead
2809 of gen_rtx_raw_CONST_VECTOR.
2811 2004-09-10 Eric Christopher <echristo@redhat.com>
2814 * c-parse.in (attribute): Add NULL_TREE for error case
2817 2004-09-10 Zack Weinberg <zack@codesourcery.com>
2819 * c-common.h (struct c_fileinfo): Comment moved here from cp-tree.h.
2820 (extract_interface_info): Delete prototype.
2821 * c-decl.c (extract_interface_info): Delete stub.
2822 * c-lex.c (get_fileinfo): Initialize file_info_tree here, if
2823 it's not already been done ...
2824 (init_c_lex): ... not here.
2825 (fe_file_change): Don't call extract_interface_info.
2827 2004-09-11 Joseph S. Myers <jsm@polyomino.org.uk>
2829 * c-tree.h (struct c_declspecs): Remove typedef_decl. Add
2830 typedef_p and typedef_signed_p.
2831 * c-decl.c (shadow_tag_warned): Check typedef_p, not typedef_decl.
2832 (grokdeclarator): Don't use typedef_decl for warn_deprecated_use.
2833 Check typedef_p and typedef_signed_p, not typedef_decl.
2834 (grokfield): Check typedef_p, not typedef_decl.
2835 (build_null_declspecs): Initialize typedef_p and typedef_signed_p,
2837 (declspecs_add_type): Set typedef_p and typedef_signed_p, not
2840 2004-09-10 Kazu Hirata <kazu@cs.umass.edu>
2842 * doc/tm.texi, doc/tree-ssa.texi: Fix typos.
2844 2004-09-10 Geoffrey Keating <geoffk@apple.com>
2846 * gimplify.c (create_tmp_var_raw): Don't name otherwise-nameless
2847 temporary variables.
2849 * dbxout.c (dbxout_block): Update for
2850 current_function_func_begin_label a string.
2851 * dwarf2out.c (dwarf2out_begin_prologue): Likewise.
2852 * except.c (dw2_output_call_site_table): Likewise.
2853 * toplev.c (current_function_func_begin_label): Likewise.
2854 * tree.h (current_function_func_begin_label): Likewise.
2855 * config/rs6000/linux64.h (DBX_OUTPUT_BRAC): Likewise.
2857 * final.c (output_asm_insn): Use strtoul instead of atoi, save a
2860 * config/darwin.c: Include target.h.
2861 (struct machopic_indirection): Make ptr_name a string.
2862 (machopic_indirection_hash): Update for ptr_name a string.
2863 (machopic_indirection_eq): Likewise.
2864 (machopic_indirection_name): Likewise.
2865 (machopic_output_indirection): Likewise.
2866 (machopic_validate_stub_or_non_lazy_ptr): Update for ptr_name a
2867 string. Don't expect stub names to be in the identifier hash table.
2868 Do call strip_name_encoding before looking up entry in ID hash table.
2869 * config/t-darwin (darwin.o): Add target.h to dependencies.
2871 * gcc/config/rs6000/rs6000.c (print_operand): Use fputs instead
2872 of fprintf for register names.
2874 * output.h (unlikely_section_label): Delete declaration.
2875 (unlikely_text_section_name): Likewise.
2876 * varasm.c (unlikely_section_label_printed): Make static.
2877 (unlikely_section_label): Likewise.
2878 (unlikely_text_section_name): Likewise.
2879 (assemble_start_function): Use reconcat.
2881 * rtl.def (REG): Add comment to describe third field.
2883 2004-09-10 Andrew Pinski <apinski@apple.com>
2885 * config/darwin.c (machopic_mcount_stub_name): Call
2886 machopic_indirection_name instead of making the string
2889 2004-09-10 Diego Novillo <dnovillo@redhat.com>
2893 2004-09-08 Jie Zhang <zhangjie@magima.com.cn>
2895 * tree-ssa-alias.c (compute_flow_insensitive_aliasing): If type
2896 memory tag is call clobbered, so are its aliases.
2897 (group_aliases): When two memory tags being grouped, if one is
2898 call clobbered, so are the other and its aliases.
2899 (add_may_alias): Remove call-clobbering stuff.
2900 (replace_may_alias): Likewise.
2901 (merge_pointed_to_info): Merge pt_global_mem
2903 2004-09-10 Kazu Hirata <kazu@cs.umass.edu>
2905 * bb-reorder.c, c-common.c, c-incpath.c, c-typeck.c,
2906 genrecog.c, lambda-code.c, mips-tdump.c, mips-tfile.c,
2907 passes.c, tree-data-ref.c, tree-data-ref.h, tree-mudflap.c,
2908 tree-scalar-evolution.c, tree-ssa-copyrename.c,
2909 tree-ssa-live.c, tree-ssa-live.h: Fix comment typos.
2911 2004-09-10 Richard Sandiford <rsandifo@redhat.com>
2913 * config/frv/frv.md (UNSPEC_MASACCS, UNSPEC_MDASACCS): New constants.
2914 (maddaccs, msubaccs, *maddacc): Turn operand 0 into a single ACC/ACCG
2915 pair. Remove match_dup from inputs. Remove masaccs handling.
2916 (mdaddaccs, mdsubaccs, *mdaddacc): Likewise a dual ACC/ACCG pair.
2917 (masaccs, mdasaccs): Turn into define_insns.
2919 2004-09-10 Richard Sandiford <rsandifo@redhat.com>
2921 * tree-tailcall.c (process_assignment): Only do accumulator transforms
2922 for floating-point types if flag_unsafe_math_optimizations.
2924 2004-09-10 Kazu Hirata <kazu@cs.umass.edu>
2926 * config/darwin.c, config/alpha/alpha.h, config/arm/arm.c,
2927 config/arm/arm.h, config/arm/arm.md, config/arm/bpabi.h,
2928 config/arm/predicates.md, config/frv/frv.c, config/frv/frv.md,
2929 config/h8300/h8300.md, config/i386/gmm_malloc.h,
2930 config/ia64/ia64.md, config/ip2k/libgcc.S,
2931 config/mips/mips-ps-3d.md, config/mips/mips.c,
2932 config/rs6000/rs6000.c, config/s390/s390.c,
2933 config/sh/symbian.c: Fix comment typos.
2935 2004-09-10 Andreas Krebbel <krebbel1@de.ibm.com>
2937 * config/s390/s390.c (s390_emit_prologue): Added missing
2940 2004-09-10 Kazu Hirata <kazu@cs.umass.edu>
2942 * doc/extend.texi, doc/invoke.texi, doc/passes.texi: Fix
2943 typos. Follow spelling conventions.
2945 2004-09-10 Joseph S. Myers <jsm@polyomino.org.uk>
2947 * toplev.c (warn_deprecated_use): Correct logic for saying "type"
2948 in diagnostic. Don't dereference NULL TYPE_NAME.
2950 2004-09-10 Kazu Hirata <kazu@cs.umass.edu>
2952 * c-common.c, c-pch.c, defaults.h, lambda-code.c, passes.c,
2953 tree-data-ref.c, tree-flow.h, tree-ssa-operands.c,
2954 tree-ssa-threadupdate.c, tree-vectorizer.c, tree-vectorizer.h,
2955 value-prof.c: Fix comment typos. Follow spelling conventions.
2957 2004-09-10 Jan Hubicka <jh@suse.cz>
2959 * tree-ssa-dce.c (remove_dead_stmt): Update profile.
2960 * tree-split_edge.c (tree_split_edge): Likewise.
2961 (thread_jumps): Likewise.
2963 2004-09-10 Kazu Hirata <kazu@cs.umass.edu>
2965 * cgraphunit.c, predict.c, tree-ssa-loop-ivopts.c: Fix comment
2968 2004-09-10 Paolo Bonzini <bonzini@gnu.org>
2970 * cgraph.h (cgraph_dump_file): Do not declare.
2971 * cgraphunit.c (cgraph_dump_file): Declare as static.
2973 * toplev.c (cgraph_dump_file): Do not declare.
2974 (compile_file): Call init_cgraph.
2975 * tree-dump.c (dump_files): Add IPA dump file, remove
2976 XML dump of call graph.
2977 (get_dump_file_name): Support IPA dump file naming scheme.
2978 * tree.h (enum tree_dump_index): Add IPA dump file, remove
2979 XML dump of call graph.
2980 * doc/invoke.texi (Debugging Options): Document the new options.
2982 2004-09-10 Richard Sandiford <rsandifo@redhat.com>
2984 * doc/extend.texi: Document the FR-V built-in functions.
2986 2004-09-09 James E Wilson <wilson@specifixinc.com>
2988 * doc/sourcebuild.texi: Delete libbanshee reference.
2990 2004-09-10 Kelley Cook <kcook@gcc.gnu.org>
2992 * Makefile.in (s-gtype): Add $(build_exeext) to gengtype command.
2994 2004-09-09 James E Wilson <wilson@specifixinc.com>
2996 * c-typeck.c (convert_for_assignment): Check that rhs has VECTOR_TYPE
2997 before calling vector_types_convertible_p.
2998 (digest_init): Check that inside_init has VECTOR_TYPE before calling
2999 vector_types_convertible_p. Don't give another error if
3000 convert_for_assignment returns error_mark_node.
3002 2004-09-09 Roger Sayle <roger@eyesopen.com>
3005 * fold-const.c (build_zero_vector): New function to construct a
3006 vector (either floating point or integer) of zeros.
3007 (fold_convert): Internally, enable conversions of integer zero
3008 to arbitrary vector types, using the new build_zero_vector.
3010 2004-09-09 Roger Sayle <roger@eyesopen.com>
3012 * config/i386/i386.c (ix86_expand_ashlsi3_const): New function to
3013 expand a left shift by an immediate constant as either an ashl or
3014 a sequence of additions.
3015 (ix86_split_ashldi): Use new ix86_expand_ashlsi3_const function
3016 instead of calling gen_ashlsi3 with a constant directly.
3018 2004-09-09 Roger Sayle <roger@eyesopen.com>
3020 * config/i386/i386.c (ix86_split_long_move): When optimizing for
3021 size, and the low and high parts of a DImode constant are equal,
3022 copy one register to another instead of loading the same immediate
3025 2004-09-09 Richard Henderson <rth@redhat.com>
3028 * function.c (assign_parm_setup_block): Only put PARALLELs into
3029 a register if use_register_for_decl.
3031 2004-09-09 Eric Christopher <echristo@redhat.com>
3033 * ra-colorize.c (reset_lists): Move variable declaration inside
3034 ENABLE_CHECKING to avoid unused variable warnings when
3035 not --enable-checking.
3036 (check_colors): Ditto.
3038 2004-09-09 Mike Stump <mrs@apple.com>
3040 * version.c (version_string): Bump to 4.0.0.
3041 * doc/include/gcc-common.texi (version-GCC): Likewise.
3043 2004-09-10 Jakub Jelinek <jakub@redhat.com>
3045 * doc/extend.texi (nothrow attribute): The attribute is not
3046 implemented in 3.2 and earlier.
3048 2004-09-09 Steve Ellcey <sje@cup.hp.com>
3050 * genrecog.c (compute_predicate_codes): Use op0_codes
3053 2004-09-09 Ulrich Weigand <uweigand@de.ibm.com>
3055 * ra-colorize.c (hardregset_to_string): Adapt to HARD_REG_SET
3056 implementation changes.
3058 2004-09-09 Ulrich Weigand <uweigand@de.ibm.com>
3060 * combine.c (try_combine): When swapping i2 and i3, newi2pat may be
3061 a PARALLEL instead of a SET due to added clobbers.
3063 2004-09-09 Ulrich Weigand <uweigand@de.ibm.com>
3065 * reload.c (find_reloads_address): Pass correct operand to
3066 maybe_memory_address_p.
3068 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
3070 * Makefile.in: Remove libbanshee, tree-alias-*.
3071 Remove tree-alias-common.h dependencies.
3072 * common.opt: Remove -ftree-points-to.
3073 * configure.ac: Remove libbanshee.
3074 * flags.h: Remove pta_type, flag_tree_points_to.
3075 * gengtype.c (open_base_files): Remove tree-alias-type.h.
3076 * opts.c (OPT_ftree_points_to): Remove.
3077 * toplev.c: Remove tree-alias-common.h, flag_tree_points_to.
3078 * tree-dfa.c: Remove tree-alias-common.h
3079 * tree-into-ssa.c: Ditto.
3080 * tree-outof-ssa.c: Ditto.
3081 * tree-ssa-copyrename.c: Ditto.
3082 * tree-ssa-live.c: Ditto.
3083 * tree-optimize.c: Ditto.
3084 * tree-ssa.c: Ditto.
3085 Remove pass_build_pta, pass_del_pta.
3086 * tree-pass.h: Ditto.
3087 * tree-ssa-alias.c: Remove tree-alias-common.h.
3088 (struct alias_stats_d): Remove pta_queries, pta_resolved.
3089 (pass_may_alias): Remove PROP_pta requirement.
3090 (may_alias_p): Remove pta_queries, pta_resolved, use of andersens.
3091 (get_tmt_for): Ditto.
3092 (dump_alias_stats): Ditto.
3093 * doc/passes.texi: Remove blurb about points-to analysis.
3094 * fortran/Make-lang.in: Remove tree-alias-*.o.
3096 2004-09-09 Richard Sandiford <rsandifo@redhat.com>
3098 * genattrtab.c (write_insn_cases): New function, split out from
3099 write_attr_case. Correctly handle define_peepholes when printing
3100 the instruction name.
3101 (write_attr_case, write_const_num_delay_slots): Use write_insn_cases.
3103 2004-09-09 Hans-Peter Nilsson <hp@axis.com>
3106 * config/cris/cris-protos.h (cris_return_address_on_stack): Declare.
3107 * config/cris/cris.c (cris_return_address_on_stack): New function.
3108 * config/cris/cris.md ("return"): For location of return address,
3109 also check cris_return_address_on_stack.
3111 2004-09-09 Diego Novillo <dnovillo@redhat.com>
3113 * tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in
3114 calling phi_ssa_name_p.
3116 2004-09-09 Richard Henderson <rth@redhat.com>
3119 * c-typeck.c (valid_compound_expr_initializer): Use only
3120 initializer_constant_valid_p, and not TREE_CONSTANT.
3121 (digest_init): Likewise.
3122 (output_init_element): Likewise.
3124 2004-09-09 Giovanni Bajo <giovannibajo@gcc.gnu.org>
3126 * ra-build.c (copy_insn_p, remember_move, defuse_overlap_p_1,
3127 live_out_1, prune_hardregs_for_mode, init_one_web_common,
3128 reinit_one_web, add_subweb, add_subweb_2, init_web_parts,
3129 record_conflict, compare_and_free_webs, init_webs_defs_uses,
3130 parts_to_webs_1, parts_to_webs, reset_conflicts,
3131 check_conflict_numbers, remember_web_was_spilled, handle_asm_insn,
3132 ra_build_free): Use gcc_assert and gcc_unreachable instead of abort.
3133 * ra-colorize.c (push_list, put_web, reset_lists, put_web_at_end,
3134 put_move, remove_move, combine, select_spill, colorize_one_web,
3135 try_recolor_web, insert_coalesced_conflicts, check_colors,
3136 break_precolored_alias, restore_conflicts_from_coalesce,
3137 sort_and_combine_web_pairs, check_uncoalesced_moves): Likewise.
3138 * ra-rewrite.c (spill_coalescing, slots_overlap_p, emit_loads,
3139 reloads_to_loads, rewrite_program2, emit_colors): Likewise.
3140 * ra.c (first_hard_reg, create_insn_info, find_subweb, init_ra,
3141 check_df): Likewise.
3142 * real.c (do_add, do_multiply, do_divide, do_compare, do_fix_trunc,
3143 real_arithmetic, real_compare, real_exponent, real_ldexp,
3144 real_identical, real_to_integer, real_to_integer2, real_to_decimal,
3145 real_to_hexadecimal, real_from_integer, ten_to_ptwo, ten_to_mptwo,
3146 real_digit, real_nan, real_maxval, round_for_format, real_convert,
3147 real_to_target, real_from_target, real_hash, encode_ieee_single,
3148 encode_ieee_double, encode_ieee_extended, encode_ieee_quad,
3149 encode_vax_f, encode_vax_d, encode_vax_g, encode_i370_single,
3150 encode_i370_double, encode_c4x_single, encode_c4x_extended): Likewise.
3151 * recog.c (validate_change, validate_replace_rtx_1, asm_operand_ok,
3152 extract_insn, peep2_next_insn, peep2_reg_dead_p,
3153 peep2_find_free_register, peephole2_optimize, store_data_bypass_p,
3154 if_test_bypass_p): Likewise.
3155 * reg-stack.c (record_label_references, get_asm_operand_n_inputs,
3156 stack_result, remove_regno_note, get_hard_regnum, emit_pop_insn,
3157 emit_swap_insn, swap_to_top, move_for_stack_reg,
3158 subst_stack_regs_pat, subst_asm_stack_regs, change_stack,
3159 compensate_edge, convert_regs_1): Likewise.
3160 * regclass.c (init_reg_sets, init_reg_sets_1,
3161 memory_move_secondary_cost): Likewise.
3162 * regrename.c (note_sets, clear_dead_regs, scan_rtx_reg, scan_rtx):
3164 * reload.c (push_secondary_reload, find_valid_class, push_reload,
3165 operands_match_p, decompose, immune_p, find_reloads,
3166 find_reloads_toplev, find_reloads_address_1, subst_reloads,
3167 copy_replacements, refers_to_regno_for_reload_p,
3168 reg_overlap_mentioned_for_reload_p): Likewise.
3169 * reload1.c (compute_use_by_pseudos, replace_pseudos_in, reload,
3170 count_pseudo, find_reg, eliminate_regs, eliminate_regs_in_insn,
3171 verify_initial_elim_offsets, finish_spills, clear_reload_reg_in_use,
3172 reload_reg_free_p, reload_reg_reaches_end_p, reloads_conflict,
3173 choose_reload_regs, merge_assigned_reloads, emit_input_reload_insns,
3174 do_output_reload, fixup_abnormal_edges): Likewise.
3175 * reorg.c (stop_search_p, emit_delay_sequence, get_jump_flags,
3176 fill_slots_from_thread, relax_delay_slots): Likewise.
3177 * resource.c (mark_referenced_resources, mark_set_resources):
3179 * rtl.c (copy_rtx, rtx_equal_p): Likewise.
3180 * rtlanal.c (insn_dependent_p, reg_overlap_mentioned_p,
3181 dead_or_set_p, find_reg_fusage, remove_note, replace_rtx,
3182 subreg_lsb_1, subreg_regno_offset, subreg_offset_representable_p,
3183 find_first_parameter_load, can_hoist_insn_p, hoist_update_store,
3184 hoist_insn_after, hoist_insn_to_edge, nonzero_bits1): Likewise.
3185 * rtlhooks.c (gen_lowpart_general): Likewise.
3186 * sbitmap.c (sbitmap_difference): Likewise.
3187 * sched-deps.c (add_dependence, sched_analyze_1, sched_analyze_2,
3188 sched_analyze, add_forward_dependence): Likewise.
3189 * sched-ebb.c (fix_basic_block_boundaries, schedule_ebb): Likewise.
3190 * sched-rgn.c (debug_regions, compute_trg_info, schedule_region,
3191 schedule_insns): Likewise.
3192 * sched-vis.c (print_pattern): Likewise.
3193 * sdbout.c (sdbout_symbol, sdbout_toplevel_data): Likewise.
3194 * simplify-rtx.c (simplify_unary_operation, simplify_binary_operation,
3195 simplify_const_relational_operation, simplify_ternary_operation,
3196 simplify_immed_subreg, simplify_subreg, simplify_gen_subreg):
3198 * sreal.c (copy, sreal_sub, sreal_div): Likewise.
3199 * stmt.c (force_label_rtx, expand_goto, expand_asm_operands,
3200 resolve_operand_name_1, expand_return, expand_decl,
3201 expand_anon_union_decl, emit_case_bit_tests, expand_case): Likewise.
3202 * stor-layout.c (put_pending_size, smallest_mode_for_size,
3203 int_mode_for_mode, layout_decl, finish_builtin_struct, layout_type,
3204 set_sizetype, get_mode_bounds): Likewise.
3206 2004-09-09 Zack Weinberg <zack@codesourcery.com>
3208 * defaults.h (MULTIPLE_SYMBOL_SPACES): Provide default.
3209 * config/arm/pecoff.h, config/i386/beos-elf.h
3210 * config/i386/cygming.h, config/i386/i386-interix.h:
3211 Define MULTIPLE_SYMBOL_SPACES to 1, not nothing. Remove
3212 comment cloned from manual.
3213 * doc/tm.texi: Update description of MULTIPLE_SYMBOL_SPACES.
3215 2004-09-09 Frank Ch. Eigler <fche@redhat.com>
3217 * builtins.c (build_va_arg_indirect_ref): New function.
3218 (std_gimplify_va_arg_expr): Call it instead of mudflap check and
3219 build_fold_indirect_ref.
3220 * config/i386/i386.c (ix86_gimplify_va_arg): Ditto.
3221 * config/ia64/ia64.c (ia64_gimplify_va_arg): Ditto.
3222 * tree.h: Declare new function.
3224 2004-09-09 Nathan Sidwell <nathan@codesourcery.com>
3226 * cgraphunit.c (cgraph_mark_functions_to_output): Renable node
3227 dumping for development builds.
3228 * emit-rtl.c (verify_rtx_sharing): Give verbose failure for
3229 development builds only.
3230 * genattrtab.c (write_eligible_delay): Fix typo in previous
3232 * tree.c (iterative_hash_expr): Replace gcc_unreachable with
3235 2004-09-09 Nathan Sidwell <nathan@codesourcery.com>
3237 * gcse.c (INSN_CUID, insert_set_in_table, find_avail_set,
3238 cprop_insn, do_local_cprop, local_cprop_pass, find_bypass_set,
3239 process_insert_insn, insert_insn_end_bb, pre_insert_copy_insn,
3240 hoist_code, extract_mentioned_regs_helper, compute_store_table,
3241 insert_store): Use gcc_assert and gcc_unreachable.
3242 * ggc-common.c (ggc_splay_alloc, ggc_splay_dont_free,
3243 gt_pch_note_object, gt_pch_note_reorder, relocate_ptrs,
3244 ggc_record_overhead): Likewise.
3245 * ggc-page.c (alloc_page, free_page, ggc_set_mark, ggc_marked_p,
3246 init_ggc, ggc_push_context, ggc_recalculate_in_use_p,
3247 ggc_pop_context, clear_marks, validate_free_objects,
3248 ggc_pch_read): Likewise.
3249 * ggc-zone.c (ggc_allocated_p, free_chunk, ggc_set_mark,
3250 ggc_marked_p, ggc_get_size, init_ggc, destroy_ggc_zone,
3251 ggc_push_context, check_cookies, ggc_collect,
3252 ggc_print_statistics): Likewise.
3253 * gimple-low.c (lower_function_body, lower_stmt,
3254 lower_bind_expr): Likewise.
3255 * gimplify.c (gimple_tree_eq, push_gimplify_context,
3256 pop_gimplify_context, gimple_pop_condition, create_tmp_var,
3257 declare_tmp_vars, gimple_add_tmp_var, annotate_all_with_locus,
3258 mostly_copy_tree_r, gimplify_return_expr, gimplify_switch_expr,
3259 gimplify_case_label_expr, gimplify_exit_block_expr,
3260 canonicalize_component_ref, gimplify_compound_lval,
3261 gimplify_self_mod_expr, gimplify_call_expr,
3262 gimplify_init_ctor_eval, gimplify_init_constructor,
3263 gimplify_modify_expr, gimplify_save_expr, gimplify_target_expr,
3264 gimplify_expr, check_pointer_types_r,
3265 force_gimple_operand): Likewise.
3266 * global.c (global_alloc, build_insn_chain): Likewise.
3267 * graph.c (clean_graph_dump_file,
3268 finish_graph_dump_file): Likewise.
3269 gcov-io.c (gcov_open): Use GCOV_CHECK.
3271 2004-09-09 Richard Sandiford <rsandifo@redhat.com>
3273 * config/frv/frv.c (acc_operand, accg_operand): Use REGNO.
3275 2004-09-09 Jan Hubicka <jh@suse.cz>
3278 * tree-inline.c (expand_call_inline): Make overactive sanity check
3281 2004-09-09 Jan Hubicka <jh@suse.cz>
3283 * tree-ssa-loop-ivopts.c (peel_address): Fix abort on
3286 2004-09-09 Nathan Sidwell <nathan@codesourcery.com>
3288 * Makefile.in (gengtype): Use $(BUILD_ERRORS).
3289 (gengtype.o): Depend on errors.h.
3290 * genattrtab.c (strcmp_check): Use gcc_assert and gcc_unreachable.
3291 (attr_rtx_1, attr_printf, attr_copy_rtx, evaluate_eq_attr,
3292 attr_alt_subset_p, attr_alt_subset_of_compl_p,
3293 attr_alt_intersection, attr_alt_union, optimize_attrs, gen_insn,
3294 write_test_expr, write_attr_value, write_eligible_delay,
3295 make_internal_attr, make_numeric_value): Likewise.
3296 * genautomata.c (regexp_name, get_str_vect,
3297 gen_presence_absence_set, automaton_decl_hash,
3298 automaton_decl_eq_p, insn_decl_hash, insn_decl_eq_p, decl_hash,
3299 decl_eq_p, process_regexp, loop_in_regexp, check_loops_in_regexps,
3300 process_regexp_cycles, reserv_sets_cmp, set_unit_reserv,
3301 test_unit_reserv, it_is_empty_reserv_sets,
3302 reserv_sets_are_intersected, reserv_sets_shift, reserv_sets_or,
3303 reserv_sets_and, output_cycle_reservs, get_free_state,
3304 intersected_state_reservs_p, states_union, remove_arc,
3305 copy_insn_regexp, transform_1, transform_2, transform_3,
3306 regexp_transform_func, store_alt_unit_usage,
3307 check_regexp_units_distribution, process_seq_for_forming_states,
3308 process_alts_for_forming_states, make_automaton,
3309 form_arcs_marked_by_insn, create_composed_state,
3310 set_out_arc_insns_equiv_num, partition_equiv_class,
3311 process_insn_equiv_class, set_insn_equiv_classes,
3312 units_to_automata_heuristic_distr, form_regexp,
3313 longest_path_length, output_dfa_max_issue_rate, add_vect,
3314 out_state_arcs_num, add_vect_el, output_trans_table,
3315 output_state_alts_table, output_dead_lock_vect,
3316 output_max_insn_queue_index_def,
3317 output_min_insn_conflict_delay_func,
3318 output_internal_insn_latency_func, output_print_reservation_func,
3319 output_cpu_unit_reservation_p, output_state_arcs,
3320 make_insn_alts_attr, make_internal_dfa_insn_code_attr,
3321 make_default_insn_latency_attr,
3322 form_important_insn_automata_lists): Likewise.
3323 * genemit.c (gen_exp, output_add_clobbers,
3324 output_added_clobbers_hard_reg_p): Likewise.
3325 * genextract.c (print_path, main): Likewise.
3326 * genflags.c (gen_macro): Likewise.
3327 * gengenrtl.c: Include errors.h
3328 (type_from_format, accessor_from_format): Likewise.
3329 * gengtype.c (get_file_basename, output_mangled_typename,
3330 walk_type, write_types_process_field,
3331 write_types_local_process_field): Likewise.
3332 * genmodes.c (complete_mode): Likewise.
3333 * genopinit.c (gen_insn): Likewise.
3334 * genoutput.c (output_insn_data, check_constraint_len,
3335 constraint_len): Likewise.
3336 * genpreds.c (add_mode_tests):Likewise.
3337 * gen-protos.c (add_hash): Likewise.
3338 * genrecog.c (find_operand, find_matching_operand,
3339 validate_pattern, add_to_sequence, maybe_both_true,
3340 nodes_identical_1, merge_trees, write_switch, write_cond,
3341 write_action, is_unconditional, make_insn_sequence,
3342 debug_decision_2): Likewise.
3343 * gensupport.c (is_predicable, collect_insn_data,
3344 alter_predicate_for_insn, maybe_eval_c_test): Likewise.
3346 2004-09-09 Jan Hubicka <jh@suse.cz>
3348 * basic-block.h (guess_outgoing_edge_probabilities): Declare.
3349 * cfgbuild.c (compute_outgoing_frequencies): When probability is
3351 (find_many_sub_basic_blocks): Do update profile only when it is
3353 * predict.c (set_even_probabilities): Break out from ...
3354 (combine_predictions_for_insn): ... here; deal with
3355 !can_predict_insn_p insns.
3356 (combine_predictions_for_bb): Use set_even_probabilities.
3357 (bb_estimate_probability_locally): Break out from ....
3358 (estimate_probability): ... here.
3359 (guess_outgoing_edge_probabilities): New entry point.
3361 2004-09-09 Nathan Sidwell <nathan@codesourcery.com>
3363 * gcc.c (add_sysrooted_prefix, execute, do_self_spec, do_spec_1,
3364 handle_braces, process_brace_body, main, used_arg,
3365 set_multilib_dir, print_multilib_info): Use fatal, not abort.
3367 * tree-nested.c (create_tmp_var_for): Correct missinverted assert.
3369 * tree-outof-ssa.c (free_temp_expr_table): Add missed assert.
3370 * tree-ssa-ccp.c (set_lattice_value): Correct missapplied de
3371 Morgan's theorem in last checkin.
3373 2004-09-09 Giovanni Bajo <giovannibajo@gcc.gnu.org>
3374 Nathan Sidwell <nathan@codesourcery.com>
3376 * targhooks.c (default_unwind_emit, default_scalar_mode_supported_p):
3377 Use gcc_assert, gcc_unreachable & internal_error instead of abort.
3378 * timevar.c (timevar_push, timevar_pop, timevar_start,
3379 timevar_stop): Likewise.
3380 * toplev.c (default_pch_valid_p): Likewise.
3381 * tracer.c (tail_duplicate): Likewise.
3382 * tree-alias-common.c (get_alias_var_decl,
3383 get_values_from_constructor, create_alias_var, delete_alias_vars,
3384 empty_points_to_set, same_points_to_set, ptr_may_alias_var):
3386 * tree.c (tree_size, make_node_stat, copy_node_stat,
3387 build_int_cst_wide, integer_all_onesp, list_length, chainon,
3388 tree_node_structure, type_contains_placeholder_p, substitute_in_expr,
3389 substitute_placeholder_in_expr, tabilize_reference_1, build0_stat,
3390 build1_stat, build2_stat, build3_stat, build4_stat, is_attribute_p,
3391 lookup_attribute, type_hash_canon, host_integerp, iterative_hash_expr,
3392 build_method_type_directly, decl_type_context, get_callee_fndecl,
3393 get_set_constructor_bits, build_vector_type_for_mode, int_cst_value,
3394 tree_fold_gcd): Likewise.
3395 * tree-cfg.c (create_bb, make_ctrl_stmt_edges, make_exit_edges,
3396 make_cond_expr_edges, group_case_labels, tree_merge_blocks,
3397 cleanup_control_expr_graph, find_taken_edge,
3398 find_taken_edge_switch_expr, phi_alternatives_equal,
3399 is_ctrl_altering_stmt, disband_implicit_edges, set_bb_for_stmt,
3400 stmt_for_bsi, tree_find_edge_insert_loc, bsi_insert_on_edge_immediate,
3401 tree_split_edge, tree_verify_flow_info, thread_jumps,
3402 tree_redirect_edge_and_branch, tree_flow_call_edges_add): Likewise.
3403 * tree-chrec.c (chrec_fold_poly_cst, chrec_fold_plus_poly_poly,
3404 chrec_fold_multiply_poly_poly): Likewise.
3405 * tree-complex.c (extract_component, expand_complex_division,
3406 expand_complex_comparison, expand_complex_operations_1,
3407 build_replicated_const, expand_vector_operations_1): Likewise.
3408 * tree-data-ref.c (tree_fold_bezout, build_classic_dist_vector,
3409 build_classic_dir_vector): Likewise.
3410 * tree-dfa.c (compute_immediate_uses_for_phi,
3411 compute_immediate_uses_for_stmt, create_var_ann, create_stmt_ann,
3412 create_tree_ann, collect_dfa_stats, get_virtual_var): Likewise.
3413 * tree-dump.c (dequeue_and_dump): Likewise.
3414 * tree-eh.c (record_stmt_eh_region, add_stmt_to_eh_region,
3415 record_in_finally_tree, replace_goto_queue_1,
3416 maybe_record_in_goto_queue, verify_norecord_switch_expr,
3417 do_return_redirection): Likewise.
3418 * tree-if-conv.c (tree_if_convert_stmt, tree_if_convert_cond_expr,
3419 add_to_dst_predicate_list, find_phi_replacement_condition,
3420 replace_phi_with_cond_modify_expr, get_loop_body_in_if_conv_order):
3422 * tree-inline.c (remap_decl, remap_type, remap_decls, copy_body_r,
3423 initialize_inlined_parameters, declare_return_variable,
3424 estimate_num_insns_1, expand_call_inline, expand_calls_inline,
3425 optimize_inline_calls, copy_tree_r): Likewise.
3426 * tree-into-ssa.c (rewrite_initialize_block_local_data, rewrite_stmt,
3427 ssa_rewrite_stmt, rewrite_into_ssa): Likewise.
3428 * tree-iterator.c (alloc_stmt_list, tsi_link_before, tsi_link_after,
3429 tsi_split_statement_list_after, tsi_split_statement_list_before):
3431 * tree-mudflap.c (mf_varname_tree): Likewise.
3432 * tree-nested.c (create_tmp_var_for, lookup_field_for_decl,
3433 lookup_tramp_for_decl, convert_all_function_calls): Likewise.
3434 * tree-optimize.c (tree_rest_of_compilation): Likewise.
3435 * tree-outof-ssa.c (create_temp, eliminate_build, eliminate_phi,
3436 coalesce_abnormal_edges, coalesce_ssa_name, eliminate_virtual_phis,
3437 free_temp_expr_table, add_dependance, finish_expr, rewrite_trees):
3439 * tree-phinodes.c (resize_phi_node, add_phi_arg,
3440 remove_all_phi_nodes_for): Likewise.
3441 * tree-pretty-print.c (op_prio, print_call_name): Likewise.
3442 * tree-profile.c (tree_gen_interval_profiler, tree_gen_pow2_profiler,
3443 tree_gen_one_value_profiler, tree_gen_const_delta_profiler): Likewise.
3444 * tree-sra.c (type_can_instantiate_all_elements, sra_hash_tree,
3445 sra_elt_eq, sra_walk_expr, instantiate_missing_elements,
3446 generate_one_element_ref, generate_element_copy,
3447 generate_element_zero, scalarize_copy, scalarize_init,
3448 scalarize_ldst): Likewise.
3449 * tree-ssa-alias.c (delete_alias_info, group_aliases, may_alias_p,
3450 add_may_alias, add_pointed_to_expr, add_pointed_to_var,
3451 collect_points_to_info_r, get_tmt_for, get_ptr_info): Likewise.
3452 * tree-ssa.c (walk_use_def_chains, check_phi_redundancy): Likewise.
3453 * tree-ssa-ccp.c (dump_lattice_value, get_default_value, get_value,
3454 set_lattice_value, likely_value, ccp_visit_phi_node, visit_assignment,
3455 widen_bitfield, ccp_fold_builtin): Likewise.
3456 * tree-ssa-copy.c (may_propagate_copy, merge_alias_info,
3457 replace_exp_1, propagate_tree_value): Likewise.
3458 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Likewise.
3459 * tree-ssa-dce.c (set_control_dependence_map_bit,
3460 find_control_dependence, find_pdom, mark_operand_necessary,
3461 mark_stmt_if_obviously_necessary,
3462 mark_control_dependent_edges_necessary, remove_dead_stmt): Likewise.
3463 * tree-ssa-dom.c (dom_opt_initialize_block_local_data,
3464 simplify_switch_and_lookup_avail_expr, cprop_into_successor_phis,
3465 eliminate_redundant_computations, avail_expr_eq): Likewise.
3466 * tree-ssa-dse.c (fix_stmt_v_may_defs): Likewise.
3467 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p,
3468 duplicate_blocks): Likewise.
3469 * tree-ssa-loop-im.c (for_each_index, set_level,
3470 is_call_clobbered_ref): Likewise.
3471 * tree-ssa-loop-ivopts.c (dump_use, divide, stmt_after_ip_normal_pos,
3472 stmt_after_increment, set_iv, contains_abnormal_ssa_name_p,
3473 find_interesting_uses_outer_or_nonlin, add_derived_ivs_candidates,
3474 peel_address, ptr_difference_cost, may_replace_final_value,
3475 determine_use_iv_cost, rewrite_use_nonlinear_expr, rewrite_use_outer,
3476 rewrite_use, rewrite_uses): Likewise.
3477 * tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa,
3478 check_loop_closed_ssa_use): Likewise.
3479 * tree-ssanames.c (make_ssa_name): Likewise.
3480 * tree-ssa-operands.c (finalize_ssa_defs, finalize_ssa_uses,
3481 finalize_ssa_v_must_defs, finalize_ssa_stmt_operands,
3482 get_stmt_operands, get_expr_operands, get_asm_expr_operands,
3483 get_indirect_ref_operands, add_stmt_operand): Likewise.
3484 * tree-ssa-pre.c (value_exists_in_set_bitmap,
3485 value_remove_from_set_bitmap, bitmap_insert_into_set, insert_into_set,
3486 phi_translate, valid_in_set, compute_antic,
3487 find_or_generate_expression, create_expression_by_pieces, insert_aux,
3488 create_value_expr_from, eliminate): Likewise.
3489 * tree-ssa-propagate.c (cfg_blocks_get): Likewise.
3490 * tree-ssa-threadupdate.c (remove_last_stmt_and_useless_edges):
3492 * tree-tailcall.c (independent_of_stmt_p, adjust_return_value,
3493 eliminate_tail_call): Likewise.
3494 * tree-vectorizer.c (vect_create_index_for_array_ref,
3495 vect_align_data_ref, vect_create_data_ref,
3496 vect_create_destination_var, vect_get_vec_def_for_operand,
3497 vect_finish_stmt_generation, vect_transform_stmt,
3498 vect_transform_loop_bound, vect_transform_loop,
3499 vect_analyze_operations): Likewise.
3500 * tree-vn.c (vn_compute, set_value_handle, get_value_handle):
3502 * tree-flow-inline.h (var_ann, get_var_ann, get_def_from_ptr,
3503 get_use_op_ptr, immediate_use, phi_ssa_name_p, bsi_start,
3504 bsi_after_labels, bsi_last): Likewise.
3505 * tree-ssa-live.c (var_union, change_partition_var,
3506 create_ssa_var_map, calculate_live_on_entry, root_var_init,
3507 type_var_init, add_coalesce, sort_coalesce_list, pop_best_coalesce):
3509 * tree-ssa-live.h (partition_is_global, live_entry_blocks,
3510 tpa_find_tree): Likewise.
3511 (register_ssa_partition_check): Declare.
3512 (register_ssa_partition): use it.
3513 * tree-ssa-live.c: Include errors.h.
3514 (register_ssa_partition_check): New.
3515 * tree-ssa-operands.c: Include errors.h.
3516 * Makefile.in (tree-ssa-operands.o): Depend on errors.h.
3518 2004-09-09 Richard Sandiford <rsandifo@redhat.com>
3519 Catherine Moore <clm@redhat.com>
3521 * config/frv/frv-protos.h (FRV_CPU_FR550, FRV_CPU_FR450)
3522 (FRV_CPU_FR405): New processor enums.
3523 (frv_issue_rate, frv_acc_group): Declare.
3524 * config/frv/frv.h (CPP_SPEC, CPP_FRV_SPEC, CPP_FR500_SPEC): Delete.
3525 (CPP_FR400_SPEC, CPP_SIMPLE_SPEC): Delete.
3526 (MASK_DEFAULT_FR550, MASK_DEFAULT_FR450): New macros.
3527 (SUBTARGET_EXTRA_SPECS, EXTRA_SPECS, CPP_CPU_DEFAULT_SPEC): Delete.
3528 (TARGET_CPU_CPP_BUILTINS): Define the macros that were previously
3529 handled by CPP_SPEC.
3530 (MASK_LONG_CALLS, TARGET_LONG_CALLS): New macros.
3531 (MASK_ALIGN_LABELS, TARGET_ALIGN_LABELS): New macros.
3532 (ACC_MASK): New macro.
3533 (TARGET_MEDIA_REV2): Include FRV_CPU_{FR405,FR450,FR550}.
3534 (TARGET_MEDIA_FR450): New macro.
3535 (TARGET_FR500_FR550_BUILTINS, TARGET_FR405_BUILTINS): New macros.
3536 (TARGET_SWITCHES): Add -m{no-,}align-labels and -m{no-,}long-calls.
3537 (LABEL_ALIGN_AFTER_BARRIER): Define.
3538 (ACC_LAST, ACCG_LAST): Add four new accumulator registers.
3539 (IACC_FIRST, IACC_LAST): New pair of SPRs.
3540 (ACCG_FIRST, AP_FIRST, SPR_FIRST, SPR_LAST): Adjust accordingly.
3541 (FIXED_REGISTERS, CALL_USED_REGISTERS, REG_ALLOC_ORDER)
3542 (REGISTER_NAMES): Add entries for new registers.
3543 (REG_CLASS_CONTENTS): Update for new register ranges.
3544 (EXTRA_CONSTRAINT_FOR_S): Redefine in terms of call_operand.
3545 (ISSUE_RATE, CLEAR_VLIW_START, SET_VLIW_START): Delete.
3546 (PACKING_FLAG_USED_P): Delete.
3547 (FRV_BUILTIN_MQLCLRHS, FRV_BUILTIN_MQLMTHS, FRV_BUILTIN_MQSLLHI)
3548 (FRV_BUILTIN_MQSRAHI, FRV_BUILTIN_SMUL, FRV_BUILTIN_UMUL)
3549 (FRV_BUILTIN_PREFETCH0, FRV_BUILTIN_PREFETCH, FRV_BUILTIN_SMASS)
3550 (FRV_BUILTIN_SMSSS, FRV_BUILTIN_SMU, FRV_BUILTIN_SCUTSS)
3551 (FRV_BUILTIN_ADDSS, FRV_BUILTIN_SUBSS, FRV_BUILTIN_SLASS)
3552 (FRV_BUILTIN_IACCread{l,ll}, FRV_BUILTIN_IACCset{ll,l})
3553 (FRV_BUILTIN_SCAN): New members of frv_builtin_enum.
3554 (FRV_BUILTIN_FIRST_NONMEDIA): New macro.
3555 (CPU_UNITS_QUERY): Define to 1.
3556 * config/frv/frv.c: Include gt-frv.h
3557 (NUM_NOP_PATTERNS, NTH_UNIT, UNIT_NUMBER, PACKING_FLAG_P): New macros.
3558 (SET_PACKING_FLAG, CLEAR_PACKING_FLAG, FOR_EACH_REGNO): New macros.
3559 (frv_insn_group): New enumeration.
3560 (frv_unit_names, frv_unit_groups, frv_unit_codes): New variables.
3561 (frv_type_to_unit, frv_nops, frv_num_nops): New variables.
3562 (REGSTATE_DEAD, REGSTATE_LIVE, REGSTATE_UNUSED, REGSTATE_MASK)
3563 (REGSTATE_CONDJUMP): Delete. Shuffle other numbers to cover the
3564 gap left by REGSTATE_LIVE.
3565 (regstate_t): New typedef.
3566 (TARGET_MACHINE_DEPENDENT_REORG): Define.
3567 (frv_default_flags_for_cpu): Handle FRV_CPU_{FR550,FR450,FR405}.
3568 (frv_override_options): Check for -mcpu={fr550,fr450,fr405}.
3569 Initialize frv_unit_codes[] and frv_type_to_unit[].
3570 (frv_conditional_register_usage): Remove redundant fixing of
3571 accumulator registers.
3572 (frv_insn_packing_flag): Update specification.
3573 (frv_function_prologue): Don't set frv_insn_packing_flag here.
3574 Zero out frv_nops[].
3575 (frv_expand_epilogue): Remove comments about the no-longer-present
3577 (frv_asm_output_mi_thunk): Check frv_issue_rate() rather than
3578 PACKING_FLAG_USED_P() when deciding whether to pack instructions.
3579 (frv_asm_output_opcode, frv_final_prescan_insn): Simplify in light
3580 of the new meaning of frv_insn_packing_flag. Emit an mnop.p if
3581 packing is disabled and if INSN can only issue to M1.
3582 (call_operand): Check TARGET_LONG_CALLS.
3583 (acc_operand, even_acc_operand, quad_acc_operand)
3584 (accg_operand): Simplify. Don't accept pseudo registers.
3585 (output_move_single): Handle SPR<-zero moves.
3586 (frv_issue_rate): Make non-static. Handle FRV_CPU_{FR550,FR450,FR405}.
3587 (frv_registers_update, frv_registers_used_p): Delete.
3588 (frv_registers_set_p): Delete.
3589 (frv_acc_group_1, frv_acc_group, frv_insn_unit): New functions.
3590 (frv_issues_to_branch_unit_p): New function.
3591 (frv_packet): New structure.
3592 (frv_cond_flags, frv_regstate_conflict_p): New functions.
3593 (frv_registers_conflict_p_1, frv_registers_conflict_p): New functions.
3594 (frv_registers_update_1, frv_registers_update): New functions.
3595 (frv_start_packet, frv_start_packet_block, frv_finish_packet)
3596 (frv_pack_insn_p, frv_add_insn_to_packet, frv_insert_nop_in_packet)
3597 (frv_for_each_packet, frv_sort_insn_group_1, frv_compare_insns)
3598 (frv_sort_insn_group, frv_reorder_packet): New functions.
3599 (frv_pack_insns): Use frv_reorder_packet.
3600 (frv_packet_address): New variable.
3601 (frv_fill_unused_units, frv_align_label, frv_reorg_packet)
3602 (frv_register_nop, frv_reorg): New functions.
3603 (bdesc_1arg): Add __SCUTSS.
3604 (bdesc_2arg): Add __MQLCLRHS, __MQLMTHS, __SMUL, __UMUL, __ADDSS,
3605 __SUBSS, __SLASS and __SCAN.
3606 (bdesc_2argimm): Add __MQSLLHI and __MQSRAHI.
3607 (bdesc_int_void2arg, bdesc_prefetches): New arrays.
3608 (frv_init_builtins): Register the above builtins.
3609 (frv_int_to_acc): Use ACC_MASK to check for valid accumulator
3610 registers. Turn the referenced accumulators into global registers.
3611 (frv_read_iacc_argument): New function.
3612 (frv_expand_int_void2arg, frv_expand_prefetches): New functions.
3613 (frv_split_iacc_move): New function.
3614 (frv_expand_builtin): Handle the new builtins.
3615 * config/frv/frv.md: Replace old schedulers with new order-independent
3616 ones. Add schedulers for the FR405, FR450 and FR550. Describe new
3618 (cpu): Add fr550, fr450 and fr405.
3619 (type): Add macc, scan, cut, fnop, fscmp, fdcmp, mnop, mqlimh and
3620 mqshift. Replace fmas with fsmadd and fmad with fdmadd. Delete m7.
3621 (*muladd[sd]f4, *mulsub[sd]f4): Fix types.
3622 (*cmp[sd]f_cc_fp): Use new f[sd]cmp types.
3623 (fnop, mnop): New patterns.
3624 (UNSPEC_MQLCLRHS, UNSPEC_MQLMTHS, UNSPEC_MQSLLHI, UNSPEC_MQSRAHI):
3626 (mexpdhw, *cond_exec_mexpdhw): Fix destination operands.
3627 (mclracca8): Use ACC_MASK to determine the upper set of accumulator
3629 (mqlclrhs, mqlmths, mqsllhi, mqsrahi): New patterns.
3630 (UNSPEC_SMUL, UNSPEC_UMUL, UNSPEC_SMU, UNSPEC_ADDSS, UNSPEC_SUBSS)
3631 (UNSPEC_SLASS, UNSPEC_SCAN, UNSPEC_INTSS, UNSPEC_SCUTSS)
3632 (UNSPEC_PREFETCH0, UNSPEC_PREFETCH, UNSPEC_IACCreadll)
3633 (UNSPEC_IACCreadl, UNSPEC_IACCsetll, UNSPEC_IACCsetl, UNSPEC_SMASS)
3634 (UNSPEC_SMSSS, UNSPEC_IMUL, IACC0_REG): New constants.
3635 (smul, umul, smass, smsss, smu, addss, subss, slass, scan, scutss)
3636 (frv_prefetch0, frv_prefetch): New patterns.
3637 * config/frv/t-frv (MULTILIB_OPTIONS): Remove -mcpu=frv and
3638 -mcpu=simple. Add -mcpu=fr550.
3639 (MULTILIB_DIRNAMES): Update accordingly.
3640 (MULTILIB_MATCHES): Use the fr400 multilibs for -mcpu=fr405 and
3642 * doc/invoke.texi: Document the new -mcpu={fr550,fr450,fr405},
3643 -mlong-calls and -malign-labels options for FR-V.
3645 2004-09-09 Joseph S. Myers <jsm@polyomino.org.uk>
3648 * c-tree.h (struct c_declspecs): New.
3649 (struct c_declarator, struct c_type_name, struct c_parm): Update
3651 (build_array_declarator, grokfield, shadow_tag, shadow_tag_warned,
3652 start_function, start_decl, build_c_parm,
3653 make_pointer_declarator): Update prototypes.
3654 (build_null_declspecs, declspecs_add_qual, declspecs_add_type,
3655 declspecs_add_scspec, declspecs_add_attrs): New.
3656 (split_specs_attrs): Remove.
3657 * c-parse.in (%union): Add dsptype.
3658 (declspecs_nosc_nots_nosa_noea, declspecs_nosc_nots_nosa_ea,
3659 declspecs_nosc_nots_sa_noea, declspecs_nosc_nots_sa_ea,
3660 declspecs_nosc_ts_nosa_noea, declspecs_nosc_ts_nosa_ea,
3661 declspecs_nosc_ts_sa_noea, declspecs_nosc_ts_sa_ea,
3662 declspecs_sc_nots_nosa_noea, declspecs_sc_nots_nosa_ea,
3663 declspecs_sc_nots_sa_noea, declspecs_sc_nots_sa_ea,
3664 declspecs_sc_ts_nosa_noea, declspecs_sc_ts_nosa_ea,
3665 declspecs_sc_ts_sa_noea, declspecs_sc_ts_sa_ea, declspecs_ts,
3666 declspecs_nots, declspecs_ts_nosa, declspecs_nots_nosa,
3667 declspecs_nosc_ts, declspecs_nosc_nots, declspecs_nosc, declspecs,
3668 maybe_type_quals_attrs): Change to dsptype.
3669 (struct c_declspec_stack): New.
3670 (current_declspecs, declspec_stack): Change type.
3671 (PUSH_DECLSPEC_STACK, POP_DECLSPEC_STACK): Update to new
3673 (extdefs): Likewise.
3674 (setspecs): Likewise.
3675 (fndef): Use current_declspecs for empty declspecs list.
3676 (declspecs_nosc_nots_nosa_noea, declspecs_nosc_nots_nosa_ea,
3677 declspecs_nosc_nots_sa_noea, declspecs_nosc_nots_sa_ea,
3678 declspecs_nosc_ts_nosa_noea, declspecs_nosc_ts_nosa_ea,
3679 declspecs_nosc_ts_sa_noea, declspecs_nosc_ts_sa_ea,
3680 declspecs_sc_nots_nosa_noea, declspecs_sc_nots_nosa_ea,
3681 declspecs_sc_nots_sa_noea, declspecs_sc_nots_sa_ea,
3682 declspecs_sc_ts_nosa_noea, declspecs_sc_ts_nosa_ea,
3683 declspecs_sc_ts_sa_noea, declspecs_sc_ts_sa_ea): Update to new
3684 structures and helper functions. Update comments.
3685 (typespec_nonattr): Correct comment.
3686 (maybe_type_quals_attrs, typename): Update to new structures.
3687 * c-decl.c (grokdeclarator, build_array_declarator, grokfield,
3688 shadow_tag, shadow_tag_warned, start_function, start_decl,
3689 build_c_parm, make_pointer_declarator,
3690 set_array_declarator_inner, groktypename): Update to new
3692 (build_null_declspecs, declspecs_add_qual, declspecs_add_type,
3693 declspecs_add_scspec, declspecs_add_attrs): New.
3694 (split_specs_attrs): Remove.
3695 (shadow_tag_warned): Make warning for useless type names a
3696 pedwarn. Give hard error for long, short, signed, unsigned or
3697 _Complex used with struct, union or enum in empty declaration.
3698 Make found_tag a bool.
3699 (grokdeclarator): Remove checks now done at parse time.
3701 2004-09-09 Joseph S. Myers <jsm@polyomino.org.uk>
3703 * c-tree.h (enum c_declarator_kind, struct c_arg_info, struct
3704 c_declarator, struct c_type_name, struct c_parm): New.
3705 (build_array_declarator, set_array_declarator_inner,
3706 get_parm_info, grokfield, groktypename, grokparm, push_parm_decl,
3707 start_function, start_decl, build_c_parm, build_attrs_declarator,
3708 build_function_declarator, make_pointer_declarator, c_cast_expr,
3709 store_parm_decls_newstyle, c_expr_sizeof_type): Update prototypes.
3710 (build_id_declarator): New.
3711 * c-typeck.c (c_cast_expr, c_expr_sizeof_type): Update to new
3713 * c-decl.c (ARG_INFO_PARMS, ARG_INFO_TAGS, ARG_INFO_TYPES,
3714 ARG_INFO_OTHERS): Remove.
3715 (build_id_declarator): New.
3716 (build_array_declarator, set_array_declarator_inner, groktypename,
3717 start_decl, grokparm, push_parm_decl, grokparms, get_parm_info,
3718 grokfield, start_function, store_parm_decls_newstyle,
3719 store_parm_decls_oldstyle, store_parm_decls,
3720 build_c_parm, build_attrs_declarator, build_function_declarator,
3721 make_pointer_declarator, grokdeclarator): Update to new
3723 * c-parse.in (%union): Add arginfotype, dtrtype, typenametype and
3725 (declarator, notype_declarator, after_type_declarator,
3726 parm_declarator, parm_declarator_starttypename,
3727 parm_declarator_nostarttypename, array_declarator, typename,
3728 absdcl, absdcl1, absdcl1_ea, absdcl1_noea, direct_absdcl1,
3729 absdcl_maybe_attribute, parm, firstparm, parms, parmlist,
3730 parmlist_1, parmlist_2, parmlist_or_identifiers,
3731 parmlist_or_identifiers_1): Use these types.
3732 (primary, after_type_declarator, parm_declarator_starttypename,
3733 notype_declarator, component_decl, component_declarator,
3734 component_notype_declarator, typename, absdcl,
3735 absdcl_maybe_attribute, absdcl1_ea, direct_absdcl1, parmlist_1,
3736 parmlist_2, parmlist_or_identifiers_1): Update to new structures.
3738 2004-09-09 Joseph S. Myers <jsm@polyomino.org.uk>
3740 * c-tree.h (C_DECL_USED, parser_obstack, in_alignof, in_sizeof,
3741 in_typeof, record_maybe_used_decl, pop_maybe_used,
3742 c_expr_sizeof_expr, c_expr_sizeof_type): New.
3743 * c-decl.c (parser_obstack): New.
3744 (c_init_decl_processing): Initialize parser_obstack.
3745 (c_write_global_declarations_1): Check for used but undefined
3747 * c-parse.in (%union): Add otype.
3748 (save_obstack_position): New.
3750 (unary_expr): Update in_sizeof and in_alignof. Use
3751 c_expr_sizeof_expr and c_expr_sizeof_type.
3752 (sizeof): Update in_sizeof.
3753 (alignof): Update in_alignof.
3754 (typeof): Update in_typeof.
3755 (typespec_nonreserved_nonattr): Call pop_maybe_used.
3756 * c-typeck.c (in_alignof, in_sizeof, in_typeof, struct
3757 maybe_used_decl, maybe_used_decls, record_maybe_used_decl,
3758 pop_maybe_used, c_expr_sizeof_expr, c_expr_sizeof_type): New.
3759 (build_external_ref): Set C_DECL_USED or call
3760 record_maybe_used_decl if appropriate.
3761 * toplev.c (check_global_declarations): Check TREE_NO_WARNING.
3763 2004-09-08 Eric Christopher <echristo@redhat.com>
3765 * builtins.c: Fix prototype for fold_builtin_atan.
3767 2004-09-08 Eric Christopher <echristo@redhat.com>
3769 * builtins.c (fold_builtin_strlen, fold_builtin_sqrt, fold_builtin_cbrt,
3770 fold_builtin_pow, fold_builtin_sin, fold_builtin_cos, fold_builtin_tan,
3771 fold_builtin_atan): New functions. Migrate function bodies...
3772 (fold_builtin_1): ... from here.
3774 2004-09-09 Alan Modra <amodra@bigpond.net.au>
3776 * config/rs6000/rs6000.c (rs6000_stack_info): Correct alignment of
3779 2004-09-08 David Edelsohn <edelsohn@gnu.org>
3781 * config/rs6000/power4.md (power4-lmul): du4 feeds iu1.
3782 * config/rs6000/power5.md (power5-lmul): Same.
3784 2004-09-08 Richard Henderson <rth@redhat.com>
3787 * function.c (expand_function_end): Have fall-off-the-end
3788 return path jump around return register setup.
3790 2004-09-08 Eric Botcazou <ebotcazou@libertysurf.fr>
3792 * config/sparc/sparc.c (sparc_indent_opcode): New variable.
3793 (output_return): Do not test for the presence of the 'unimp' insn.
3794 Use 'current_function_uses_only_leaf_regs' and 'final_sequence'
3795 as predicates instead of custom ones. Return raw strings when
3797 (output_sibcall): Likewise. Concatenate strings.
3798 (output_ubranch): Remove kludge for TurboSPARC.
3799 (output_cbranch): Remove 'noop' parameter. Do not output 'nop'.
3800 (output_v9branch): Likewise.
3801 (print_operand): Use 'final_sequence' instead of 'dbr_sequence_length'.
3802 <#>: Set sparc_indent_opcode if the delay slot is filled.
3804 <)>: New operand to emit the displacement from the saved PC on return.
3806 * config/sparc/sparc.h (sparc_indent_opcode): Declare it.
3807 (ASM_OUTPUT_OPCODE): New macro.
3808 (PRINT_OPERAND_PUNCT_VALID_P): Remove '^' and add ')'.
3809 * config/sparc/sparc.md (normal_branch, inverted_branch,
3810 normal_fp_branch, inverted_fp_branch, normal_fpe_branch,
3811 inverted_fpe_branch): Adjust call to output_cbranch.
3812 (normal_int_branch_sp64, inverted_int_branch_sp64): Adjust
3813 call to output_v9branch.
3814 * config/sparc/sparc-protos.h (output_cbranch): Adjust.
3815 (output_v9branch): Likewise.
3817 2004-09-08 Devang Patel <dpatel@apple.com>
3819 * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Add -segaddr,
3820 -segs_read_only_addr and -segs_read_write_addr.
3821 (WORD_SWITCH_TAKES_ARG): Same.
3823 * doc/invoke.texi: Document -segaddr, -segs_read_only_addr and
3824 -segs_read_write_addr.
3826 2004-09-08 Richard Henderson <rth@redhat.com>
3828 * function.c (reference_callee_copied): New.
3829 (assign_parm_setup_reg): Use it.
3830 * calls.c (initialize_argument_information): Likewise.
3831 (emit_library_call_value_1): Likewise.
3832 * function.h (reference_callee_copied): Declare.
3834 * target.h (struct gcc_target): Add callee_copies.
3835 * target-def.h (TARGET_CALLEE_COPIES): New.
3836 (TARGET_PASS_BY_REFERENCE): Update default.
3837 * expr.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3838 * targhooks.c (hook_callee_copies_named): New.
3839 (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false): Rename from
3840 hook_pass_by_reference_false.
3841 (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true): New.
3842 * targhooks.h: Update decls.
3843 * config/arc/arc.c (TARGET_CALLEE_COPIES): New.
3844 * config/arc/arc.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3845 * config/frv/frv-protos.h (frv_function_arg_callee_copies): Remove.
3846 * config/frv/frv.c (frv_function_arg_callee_copies): Remove.
3847 * config/frv/frv.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3848 * config/iq2000/iq2000.c (TARGET_CALLEE_COPIES): New.
3849 * config/iq2000/iq2000.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3850 * config/m68hc11/m68hc11.c (TARGET_CALLEE_COPIES): New.
3851 * config/m68hc11/m68hc11.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3852 * config/mips/mips.c (TARGET_CALLEE_COPIES): New.
3853 (mips_callee_copies): New.
3854 * config/mips/mips.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3855 * config/mmix/mmix.c (TARGET_CALLEE_COPIES): New.
3856 * config/mmix/mmix.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3857 * config/mn10300/mn10300.c (TARGET_CALLEE_COPIES): New.
3858 * config/mn10300/mn10300.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3859 * config/pa/pa.c (TARGET_CALLEE_COPIES): New.
3860 * config/pa/pa.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3861 * config/sh/sh.c (sh_callee_copies): New.
3862 (TARGET_CALLEE_COPIES): New.
3863 * config/sh/sh.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3864 * config/v850/v850.c (TARGET_CALLEE_COPIES): New.
3865 * config/v850/v850.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
3866 * doc/tm.texi (TARGET_CALLEE_COPIES): Replace documentation
3867 for FUNCTION_ARG_CALLEE_COPIES.
3868 * doc/rtl.texi (CALL_INSN_FUNCTION_USAGE): Update.
3870 2004-09-08 Devang Patel <dpatel@apple.com>
3872 * tree-if-conv.c (find_phi_replacement_condition): Return true
3874 (replace_phi_with_cond_modify_expr): Select conditional expr args
3875 based on true edge basic block.
3877 2004-09-08 Jan Hubicka <jh@suse.cz>
3879 * tree-ssa-operands.c (add_stmt_operand): Use V_MUST_DEF even for
3880 variables being alias set.
3882 2004-09-08 Nathan Sidwell <nathan@codesourcery.com>
3884 * final.c (shorten_branches, final, get_insn_template,
3885 output_alternate_entry_point, final_scan_insn, alter_subreg,
3886 alter_cond, output_operand, asm_fprintf, final_forward_branch_p,
3887 leaf_renumber_regs_insn): Use gcc_assert and gcc_unreachable.
3888 * fix-header.c (lookup_std_proto): Likewise.
3889 * flow.c (first_insn_after_basic_block_note, verify_wide_reg,
3890 verify_local_live_at_start, update_life_info, mark_reg,
3891 calculate_global_regs_live, allocate_reg_life_data,
3892 init_propagate_block_info, mark_set_regs, flush_reg_cond_reg_1,
3893 ior_reg_cond, not_reg_cond, and_reg_cond, elim_reg_cond,
3894 attempt_auto_inc, mark_used_reg, mark_used_regs): Likewise.
3895 * fold-const.c (force_fit_type, div_and_round_double,
3896 may_negate_without_overflow_p, int_const_binop, const_binop,
3897 size_binop, size_diffop, fold_convert_const, fold_convert,
3898 invert_tree_comparison, swap_tree_comparison,
3899 comparison_to_compcode, compcode_to_comparison, invert_truthvalue,
3900 range_binop, make_range, fold_cond_expr_with_comparison,
3901 fold_div_compare, fold, fold_checksum_tree, fold_negate_const,
3902 fold_abs_const, fold_not_const, fold_relational_const, round_up,
3903 round_down): Likewise.
3904 * function.c (find_function_data, assign_stack_temp_for_type,
3905 instantiate_virtual_regs_lossage, aggregate_value_p,
3906 assign_parm_find_entry_rtl, assign_parm_setup_block,
3907 expand_function_start, expand_function_end, keep_stack_depressed,
3908 handle_epilogue_set, thread_prologue_and_epilogue_insns): Likewise.
3910 2004-09-08 Daniel Berlin <dberlin@dberlin.org>
3912 * Makefile.in (tree-loop-linear.o): Added.
3913 (OBJS-common): Add tree-loop-linear.o
3914 * common.opt: New flag, ftree-loop-linear.
3915 * timevar.def: New timevar, TV_TREE_LOOP_LINEAR.
3916 * tree-flow.h: Add prototype for linear_transform_loops.
3917 * tree-optimize.c: Add linear transform after vectorization.
3918 * tree-pass.h: Add struct pass_linear_transform.
3919 * tree-ssa-loop.c: Add pass_linear_transform.
3920 * tree-loop-linear.c: New file.
3921 * lambda-code.c: gcc_assertify.
3922 (gcc_loop_to_lambda_loop): Handle all exit tests.
3923 Handle case where we have (invariant >= induction var).
3924 (find_induction_var_from_exit_cond): Ditto.
3926 2004-09-08 Jie Zhang <zhangjie@magima.com.cn>
3928 * tree-ssa-alias.c (compute_flow_insensitive_aliasing): If type
3929 memory tag is call clobbered, so are its aliases.
3930 (group_aliases): When two memory tags being grouped, if one is
3931 call clobbered, so are the other and its aliases.
3932 (add_may_alias): Remove call-clobbering stuff.
3933 (replace_may_alias): Likewise.
3934 (merge_pointed_to_info): Merge pt_global_mem
3936 2004-09-08 Jan Hubicka <jh@suse.cz>
3938 * cgraph.c (cgraph_remove_node): Free DECL_INITIAL field of node.
3939 * cgraphunit.c (verify_cgraph): Don't verify on syntax errors.
3940 (cgraph_expand_function): Remove stale cgraph edges of currently
3941 compiled function; fix non-unit-at-a-time code copying function
3942 node for later reuse.
3944 2004-09-08 Nathan Sidwell <nathan@codesourcery.com>
3946 * vec.c (vec_p_reserve, vec_o_reserve): Rename to ...
3947 (vec_gc_p_reserve, vec_gc_o_reserve): ... here. Clone to
3948 (vec_heap_p_reserve, vec_heap_o_reserve): ... here, adjust.
3949 (vec_gc_free, vec_heap_free): New.
3950 * vec.h (DEF_VEC_GC_P, DEF_VEC_MALLOC_P): New.
3951 (DEF_VEC_P): Add allocator argument. Adjust.
3952 (DEF_VEC_GC_O, DEF_VEC_MALLOC_O): New.
3953 (DEF_VEC_O): Add allocator argument. Adjust.
3956 * tree.h (tree): Define a GC'd vector.
3957 * lamba-code.c (lambda_loop): Likewise.
3958 * value-prof.h (histogram_value): Likewise.
3960 2004-09-08 Nathan Sidwell <nathan@codesourcery.com>
3962 * emit-rtl.c (immed_double_const): Use gcc_assert and gcc_unreachable.
3963 (gen_rtx_SUBREG, gen_reg_rtx, mark_user_reg, subreg_hard_regno,
3964 gen_lowpart_common, gen_highpart, gen_highpart_mode,
3965 subreg_highpart_offset, operand_subword, operand_subword_force,
3966 mem_expr_equal_p, set_mem_attributes_minus_bitpos,
3967 set_mem_alias_set, change_address_1, verify_rtx_sharing,
3968 copy_most_rtx, set_first_insn, set_last_insn, prev_cc0_setter,
3969 try_split, add_insn_after, add_insn_before, remove_insn,
3970 remove_unnecessary_notes, emit_insn_before, emit_jump_insn_before,
3971 emit_call_insn_before, emit_insn_after, emit_jump_insn_after,
3972 emit_call_insn_after, emit_insn, emit_jump_insn, emit_call_insn,
3973 set_unique_reg_note, emit, push_to_full_sequence, copy_insn_1,
3974 gen_const_vector_0, emit_copy_of_insn_after): Likewise.
3975 * et-forest.c (set_prev, set_next, et_check_occ_sanity,
3976 record_path_before_1, check_path_after_1, check_path_after): Likewise.
3977 * except.c (gen_eh_region, resolve_one_fixup_region,
3978 remove_unreachable_regions, convert_from_eh_region_ranges_1,
3979 add_ehl_entry, duplicate_eh_region_1, build_post_landing_pads,
3980 connect_post_landing_pads, sjlj_emit_function_exit,
3981 remove_exception_handler_label, remove_eh_handler,
3982 reachable_next_level, collect_one_action_chain,
3983 output_function_exception_table): Likewise.
3984 * explow.c (trunc_int_for_mode, copy_to_mode_reg,
3985 optimize_save_area_alloca, allocate_dynamic_stack_space,
3986 probe_stack_range, hard_function_value): Likewise.
3987 * expmed.c (mode_for_extraction, store_bit_field,
3988 store_fixed_bit_field, extract_bit_field, expand_shift,
3989 expand_mult_const, expand_mult, choose_multiplier,
3990 expand_mult_highpart, expand_divmod, emit_store_flag,
3991 do_cmp_and_jump): Likewise.
3992 * expr.c (convert_move, convert_modes, move_by_pieces,
3993 move_by_pieces_ninsns, move_by_pieces_1, emit_block_move,
3994 move_block_from_reg, gen_group_rtx, emit_group_load,
3995 emit_group_move, emit_group_store, use_reg, use_regs,
3996 can_store_by_pieces, store_by_pieces, store_by_pieces_1,
3997 emit_move_insn, emit_move_insn_1, emit_push_insn,
3998 expand_assignment, store_expr, count_type_elements,
3999 store_constructor, store_field, safe_from_p, expand_var,
4000 expand_expr_addr_expr, expand_expr_real_1, do_store_flag): Likewise.
4002 2004-09-08 Nathan Sidwell <nathan@codesourcery.com>
4004 * dbxout.c (dbxout_type, dbxout_type_name, dbxout_symbol): Use
4005 gcc_assert and gcc_unreachable.
4006 * ddg.c (create_ddg_dependence, add_deps_for_def,
4007 add_deps_for_use, create_ddg, add_edge_to_ddg): Likewise.
4008 * df.c (df_ref_unlink, df_ref_record, df_uses_record,
4009 df_reg_def_chain_create, df_reg_use_chain_create, df_analyze,
4010 df_insn_delete, df_refs_reg_replace, df_ref_reg_replace,
4011 df_insns_modify, df_pattern_emit_before, df_bb_reg_live_start_p,
4012 df_bb_reg_live_end_p, df_bb_regs_lives_compare,
4013 df_bb_single_def_use_insn_find, dataflow_set_a_op_b,
4014 dataflow_set_copy, hybrid_search, diagnostic.c,
4015 diagnostic_build_prefix, diagnostic_count_diagnostic): Likewise.
4016 * dojump.c (do_jump): Likewise.
4017 * dominance.c (calc_dfs_tree_nonrec, calc_dfs_tree,
4018 compute_dom_fast_query, calculate_dominance_info,
4019 free_dominance_info, get_immediate_dominator,
4020 set_immediate_dominator, get_dominated_by,
4021 redirect_immediate_dominators, nearest_common_dominator,
4022 dominated_by_p, verify_dominators, recount_dominator,
4023 iterate_fix_dominators, add_to_dominance_info,
4024 delete_from_dominance_info): Likewise.
4025 * dwarf2asm.c (size_of_encoded_value, eh_data_format_name,
4026 dw2_asm_output_delta_uleb128, dw2_asm_output_delta_sleb128,
4027 dw2_force_const_mem, dw2_asm_output_encoded_addr_rtx): Likewise.
4028 * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes, reg_save,
4029 initial_return_save, stack_adjust_offset, dwarf2out_stack_adjust,
4030 flush_queued_reg_saves, dwarf2out_frame_debug_expr,
4031 dwarf2out_frame_debug, dw_cfi_oprnd1_desc, output_cfi,
4032 output_call_frame_info, output_loc_operands, build_cfa_loc,
4033 decl_ultimate_origin, AT_flag, AT_int, AT_unsigned, AT_string,
4034 AT_string_form, add_AT_specification, AT_ref, set_AT_ref_external,
4035 AT_loc, AT_loc_list, AT_addr, AT_lbl, add_child_die,
4036 splice_child_die, attr_checksum, same_dw_val_p,
4037 break_out_includes, build_abbrev_table, size_of_die, mark_dies,
4038 unmark_dies, value_format, output_loc_list, output_die,
4039 output_pubnames, output_aranges, base_type_die, is_base_type,
4040 modified_type_die, dbx_reg_number, multiple_reg_loc_descriptor,
4041 mem_loc_descriptor, loc_descriptor, loc_descriptor_from_tree_1,
4042 field_byte_offset, add_data_member_location_attribute,
4043 add_const_value_attribute, rtl_for_decl_location,
4044 add_location_or_const_value_attribute, add_byte_size_attribute,
4045 add_bit_offset_attribute, add_bit_size_attribute,
4046 add_abstract_origin_attribute, pop_decl_scope, scope_die_for,
4047 decl_start_label, gen_formal_parameter_die,
4048 gen_type_die_for_member, gen_subprogram_die, gen_label_die,
4049 gen_typedef_die, gen_type_die, gen_tagged_type_instantiation_die,
4050 force_decl_die, force_type_die, gen_decl_die,
4051 dwarf2out_imported_module_or_decl, prune_unused_types_prune,
4052 dwarf2out_finish): Likewise.
4054 2004-09-08 Andreas Tobler <toa@pop.agri.ch>
4056 * Makefile.in (builtins.o): Depend on tree-mudflap.h.
4057 * builtins.c: Include tree-mudflap.h.
4059 2004-09-08 Uros Bizjak <uros@kss-loka.si>
4061 * config/i386/i386.c (ix86_prepare_fp_compare_args): Do not
4062 force operand 0.0 into register in XFmode. Also do not force
4063 operand 0.0 into register if !TARGET_CMOVE.
4064 * config/i386/i386.md (*cmpfp_0): Delete. Remove comment.
4065 (*cmpfp_0_sf, cmpfp_0_df, cmpfp_0_xf): New patterns to
4066 implement ftst x87 instruction.
4067 (*fp_jcc_7): New insn pattern. Change corresponding split
4068 pattern to handle "general_operand" instead of
4069 "nonimmediate_operand".
4071 2004-09-08 Ben Elliston <bje@au.ibm.com>
4073 * doc/rtl.texi (Insns): Document NOTE_INSN_FUNCTION_BEG.
4075 2004-09-07 Frank Ch. Eigler <fche@redhat.com>
4077 * builtins.c (std_gimplify_va_arg_expr): Mark INDIRECT_REF nodes
4078 generated from standard va_arg expansion.
4079 * tree-mudflap.c (mx_xform_derefs_1): Omit instrumentation from
4081 (mf_varname_tree, mf_file_function_line_tree): Add some support
4082 for column numbers if compiled with USE_MAPPED_LOCATION.
4084 2004-09-07 Ziemowit Laski <zlaski@apple.com>
4086 * c-decl.c (groktypename_in_parm_context): Remove function.
4087 * c-tree.h (groktypename_in_parm_context): Remove prototype.
4089 2004-09-07 Ziemowit Laski <zlaski@apple.com>
4091 * Makefile.in (c-parse.o): Depend on $(C_COMMON_H).
4092 * c-parse.in: Include c-common.h instead of objc-act.h.
4093 (ivar_decl_list, ivar_decls, ivar_decl, ivars, ivar_declarator,
4094 myparms, myparm): Remove %type declarations.
4095 (methodtype, optparms, OBJC_TYPE_QUAL, objc_quals, objc_qual,
4096 objc_typename, objc_try_catch_stmt, optellipsis): Add %type
4098 (objc_inherit_code, objc_public_flag): Remove.
4099 (typespec_nonreserved_nonattr): Call
4100 objc_get_protocol_qualified_type() instead of get_static_reference()
4101 and get_protocol_reference().
4102 (stmt_nocomp): Call grokparm() on @catch parameter.
4103 (objcdef): Move semantic action to objc_finish_implementation().
4104 (classdef): Move semantic action to objc_start_class_interface(),
4105 objc_continue_interface(), objc_finish_interface(),
4106 objc_start_class_implementation(), objc_continue_implementation(),
4107 objc_start_category_interface() and
4108 objc_start_category_implementation().
4109 (protocoldef): Move semantic actions to objc_start_protocol() and
4110 objc_finish_interface().
4111 (ivar_decl_list): Remove nonterminal.
4112 (visibility_spec): Move semantic actions to objc_set_visibility().
4113 (ivar_decls): Remove assignment to $$.
4114 (ivar_decl): Rephrase in terms of component_decl; call
4115 objc_add_instance_variable().
4116 (ivars, ivar_declarator): Remove nonterminals.
4117 (opt_semi): New nonterminal.
4118 (methodtype): Remove semantic actions.
4119 (methoddef): Move semantic actions to objc_set_method_type(),
4120 objc_start_method_definition() and objc_finish_method_definition().
4121 (methodproto): Move semantic actions to objc_set_method_type() and
4122 objc_add_method_declaration().
4123 (methoddecl): Use objc_typename instead of typename; move semantic
4124 actions to objc_build_method_signature().
4125 (optarglist, myxdecls, mydecl, myparms, myparm): Remove nonterminals.
4126 (optparmlist): Express in terms of optparms and optellipsis.
4127 (optparms, optellipsis, objc_qual, objc_quals, objc_typename): New
4129 (keyworddecl): Use objc_typename instead of typename.
4130 (rid_to_yy): Mark RID_IN, RID_OUT, RID_INOUT, RID_BYCOPY, RID_BYREF
4131 and RID_ONEWAY as returning OBJC_TYPE_QUAL to yyparse().
4133 2004-09-08 Alan Modra <amodra@bigpond.net.au>
4135 * doc/tm.texi (MD_UNWIND_SUPPORT): Document.
4136 (MD_FALLBACK_FRAME_STATE_FOR): Update.
4137 * unwind-dw2.c (MD_UNWIND_SUPPORT): #include if defined.
4138 (uw_frame_state_for): Adjust MD_FALLBACK_FRAME_STATE_FOR invocation.
4139 (MD_FROB_UPDATE_CONTEXT): Remove default.
4140 (uw_update_context_1): Instead #ifdef invocation.
4141 * config/ia64/unwind-ia64.c (MD_UNWIND_SUPPORT): #include if defined.
4142 (uw_frame_state_for): Adjust MD_FALLBACK_FRAME_STATE_FOR invocation.
4143 * config/alpha/gnu.h (MD_FALLBACK_FRAME_STATE_FOR): Don't undef.
4144 (MD_UNWIND_SUPPORT): Undefine this instead.
4145 * config/i386/gnu.h: Likewise.
4146 * config/alpha/linux-unwind.h: New file, macro converted to
4147 function, extracted from..
4148 * config/alpha/linux.h (MD_FALLBACK_FRAME_STATE_FOR): ..this.
4149 (MD_UNWIND_SUPPORT): Define.
4150 * config/alpha/vms-unwind.h, config/alpha/vms.h: Likewise.
4151 * config/i386/linux-unwind.h, config/i386/linux.h,
4152 config/i386/linux64.h: Likewise.
4153 * config/ia64/linux-unwind.h, config/ia64/linux.h: Likewise.
4154 MD_HANDLE_UNWABI too.
4155 * config/mips/linux-unwind.h, config/mips/linux.h: Likewise.
4156 * config/pa/linux-unwind.h, config/pa/pa32-linux.h: Likewise.
4157 * config/rs6000/darwin-unwind.h, config/rs6000/darwin.h: Likewise.
4158 * config/s390/linux-unwind.h, config/s390/linux.h: Likewise.
4159 * config/sparc/linux-unwind.h, config/sparc/linux.h,
4160 config/sparc/linux64.h: Likewise.
4161 * config/sh/linux-unwind.h, config/sh/linux.h: Likewise, but merge
4162 SH_FALLBACK_FRAME_FLOAT_STATE into sh_fallback_frame_state.
4163 * config/rs6000/linux-unwind.h, config/rs6000/linux.h,
4164 config/rs6000/linux64.h: Likewise. Split out get_sigcontext
4165 function. Use ARG_POINTER_REGNUM for 32-bit temp reg too.
4167 2004-09-07 Jan Hubicka <jh@suse.cz>
4169 * cse.c (fold_rtx): Avoid building of
4170 (CONST (MINUS (CONST_INT) (SYMBOL_REF)))
4172 * tree-ssa-pre.c (grand_bitmap_obstack): New.
4173 (value_insert_into_set_bitmap, bitmap_set_new): Use the obstack.
4174 (init_pre): Initialize obstack.
4175 (fini_pre): Free obstack.
4177 2004-09-07 David Daney <ddaney@avtrex.com>
4179 * config.gcc: Added support for --with-divide=[breaks|traps] for
4181 * config/mips/mips.h (MASK_DIVIDE_BREAKS): New target_flags bit.
4182 (TARGET_DIVIDE_TRAPS): New macro.
4183 (TARGET_SWITCHES): Added -mdivide-traps and -mdivide-breaks.
4184 (OPTION_DEFAULT_SPECS): Added --with-divide= support.
4185 * config/mips/mips.c (mips_idiv_insns): Generate proper count on
4186 GENERATE_DIVIDE_TRAPS.
4187 (mips_output_division): Emit conditional trap if
4188 GENERATE_DIVIDE_TRAPS is set.
4189 * doc/install.texi: Document --with-divide.
4190 * doc/invoke.texi: Document -mdivide-traps and -mdivide-breaks.
4192 2004-09-07 Caroline Tice <ctice@apple.com>
4194 * cfgrtl.c (rtl_verify_flow_info_1): Add new edge flag,
4195 EDGE_CROSSING, to flags test case.
4197 2004-09-07 Jan Hubicka <jh@suse.cz>
4199 * tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Deal with '<'
4202 2004-09-07 Nathan Sidwell <nathan@codesourcery.com>
4204 * cfganal.c (flow_depth_first_order_compute, dfs_enumerate_from,
4205 cfgbuild.c, inside_basic_block_p, control_flow_insn_p,
4206 make_label_edge, make_edges, find_basic_blocks_1): Use gcc_assert
4208 * cfg.c (clear_edges, initialize_bb_rbi, compact_blocks,
4209 remove_edge, alloc_aux_for_blocks, free_aux_for_blocks,
4210 alloc_aux_for_edges, free_aux_for_edges): Likewise.
4211 * cfgcleanup.c (try_forward_edges,
4212 merge_blocks_move_predecessor_nojumps,
4213 merge_blocks_move_successor_nojumps): Likewise.
4214 * cfgexpand.c (expand_gimple_cond_expr,
4215 expand_gimple_tailcall): Likewise.
4216 * cfghooks.c (duplicate_block): Likewise.
4217 * cfglayout.c (record_effective_endpoints,
4218 insn_locators_initialize, change_scope, fixup_reorder_chain,
4219 verify_insn_chain, fixup_fallthru_exit_predecessor,
4220 duplicate_insn_chain, cfg_layout_finalize): Likewise.
4221 * cfgloopanal.c (check_irred): Likewise.
4222 * cfgloop.c (superloop_at_depth, flow_loops_free,
4223 flow_loop_entry_edges_find, flow_loops_find,
4224 flow_loop_outside_edge_p, get_loop_body,
4225 get_loop_body_in_dom_order, get_loop_body_in_bfs_order,
4226 get_loop_exit_edges, num_loop_branches, cancel_loop,
4227 verify_loop_structure): Likewise.
4228 cfgloopmanip.c (find_path, remove_path, loop_delete_branch_edge,
4229 duplicate_loop_to_header_edge, create_preheader,
4230 create_loop_notes): Likewise.
4231 * cfgrtl.c (delete_insn, try_redirect_by_replacing_jump,
4232 edirect_branch_edge, force_nonfallthru_and_redirect,
4233 rtl_split_edge, insert_insn_on_edge, commit_one_edge_insertion,
4234 commit_edge_insertions, commit_edge_insertions_watch_calls,
4235 purge_dead_edges, cfg_layout_redirect_edge_and_branch,
4236 cfg_layout_redirect_edge_and_branch_force,
4237 cfg_layout_merge_blocks, rtl_flow_call_edges_add): Likewise.
4238 * cgraph.c (cgraph_node, cgraph_create_edge, cgraph_remove_edge,
4239 cgraph_redirect_edge_callee, cgraph_global_info, cgraph_rtl_info,
4240 cgraph_varpool_node): Likewise.
4241 * cgraphunit.c (cgraph_finalize_function,
4242 cgraph_finalize_compilation_unit, cgraph_mark_functions_to_output,
4243 cgraph_expand_function, cgraph_remove_unreachable_nodes,
4244 cgraph_clone_inlined_nodes, cgraph_mark_inline_edge,
4245 cgraph_mark_inline, cgraph_expand_all_functions,
4246 cgraph_build_static_cdtor): Likewise.
4247 * combine.c (do_SUBST, try_combine, subst, combine_simplify_rtx,
4248 simplify_logical, distribute_notes, insn_cuid): Likewise.
4249 * conflict.c (conflict_graph_add, print_conflict): Likewise.
4250 * coverage.c (rtl_coverage_counter_ref, tree_coverage_counter_ref,
4251 coverage_checksum_string): Likewise.
4252 * cse.c (make_new_qty, make_regs_eqv, insert, invalidate,
4253 hash_rtx, exp_equiv_p, cse_basic_block, count_reg_usage,
4254 cse_cc_succs, cse_condition_code_reg): Likewise.
4255 * cselib.c (entry_and_rtx_equal_p, remove_useless_values,
4256 rtx_equal_for_cselib_p, wrap_constant, cselib_hash_rtx,
4257 new_cselib_val, cselib_subst_to_values, cselib_invalidate_regno,
4258 cselib_record_set): Likewise.
4260 2004-09-07 Jan Hubicka <jh@suse.cz>
4262 * tree-ssa-loop-ivopts.c (iv_value): Avoid invalid sharing on niter.
4264 2004-09-07 Nathan Sidwell <nathan@codesourcery.com>
4266 * builtins.c (fold_builtin_strchr): Use build_int_cst, not
4268 (fold_builtin_strpbrk): Likewise.
4269 * expr.c (array_ref_low_bound): Likewise.
4270 * tree-scalar-evolution.c (chrec_is_positive, add_to_evolution_1,
4271 interpret_rhs_modify_expr, number_of_iterations_in_loop): Likewise.
4272 * tree-sra.c (generate_element_zero): Likewise.
4273 * tree-ssa-dom.c (simplify_rhs_and_lookup_avail_expr): Likewise.
4274 * tree-ssa-loop-ivopts.c (determine_biv_step, idx_find_step,
4275 add_old_iv_candidates, add_iv_candidates): Likewise.
4276 * tree-tailcall.c (tree_optimize_tail_calls_1): Likewise.
4278 2004-09-07 Nathan Sidwell <nathan@codesourcery.com>
4280 * c-aux-info.c (gen_type): Use gcc_assert or gcc_unreachable.
4281 * c-common.c (c_type_hash, c_common_nodes_and_builtins,
4282 c_expand_expr, boolean_increment, nonnull_check_p,
4283 check_function_arguments_recurse, fold_offsetof_1): Likewise.
4284 * c-cppbuiltin.c (define__GNUC__, builtin_define_stdint_macros,
4285 builtin_define_type_max): Likewise.
4286 * c-decl.c (bind, pop_scope, merge_decls, pushdecl_top_level,
4287 implicit_decl_warning, builtin_function, build_compound_literal,
4288 complete_array_type, grokdeclarator, get_parm_info,
4289 start_function, store_parm_decls_oldstyle,
4290 c_write_global_declarations): Likewise.
4291 * c-format.c (get_constant, decode_format_attr,
4292 maybe_read_dollar_number, get_flag_spec, check_format_arg,
4293 check_format_types, format_type_warning,
4294 find_char_info_specifier_index, init_dynamic_asm_fprintf_info,
4295 init_dynamic_diag_info, handle_format_attribute): Likewise.
4296 * c-gimplify.c (push_context, pop_context, finish_bc_block):
4297 * c-lex.c (c_lex_with_flags, lex_string): Likewise.
4298 * c-objc-common.c (c_tree_printer): Likewise.
4299 * c-pch.c (pch_init): Likewise.
4300 * c-pragma.c (maybe_apply_pragma_weak): Likewise.
4301 * c-pretty-print.c (pp_c_tree_decl_identifier): Likewise.
4302 * c-typeck.c (c_incomplete_type_error, composite_type,
4303 common_pointer_type, common_type, same_translation_unit_p,
4304 tagged_types_tu_compatible_p, finish_init, pop_init_level,
4305 set_designator, set_nonincremental_init_from_string,
4306 process_init_element, c_finish_if_stmt): Likewise.
4307 * caller-save.c (init_caller_save, save_call_clobbered_regs,
4308 insert_restore, insert_save, insert_one_insn): Likewise.
4309 * calls.c (emit_call_1, compute_argument_block_size,
4310 precompute_arguments, expand_call, emit_library_call_value_1,
4311 store_one_arg): Likewise.
4313 2004-09-07 Nathan Sidwell <nathan@codesourcery.com>
4315 * configure.ac (enable-checking): Add release option. Reorganize
4316 to avoid repetition.
4317 * configure: Rebuilt.
4318 * doc/install.texi (enable-checking): Amend documentation.
4320 2004-09-06 H.J. Lu <hongjiu.lu@intel.com>
4323 * Makefile.in (specs.ready): Depend on cc1$(exeext).
4325 2004-09-06 James E Wilson <wilson@specifixinc.com>
4327 * config/mips/mips.md (movsf_hardfloat, movdf_hardfloat_64bit,
4328 movdf_hardfloat_32bit): Split fG into two alternatives.
4329 (movv2sf_hardfloat_64bit): Split fYG into two alternatives.
4331 * emit-rtl.c (try_split): Check INSN_P before may_trap_p call.
4333 2004-09-06 Eric Botcazou <ebotcazou@libertysurf.fr>
4335 * final.c (output_in_slot): Delete.
4336 (final_scan_insn): Revert 2004-09-03 change.
4337 (output_asm_insn): Likewise.
4338 * config/sparc/sparc.c (output_return): Likewise.
4339 (output_sibcall): Likewise.
4341 2004-09-06 Jan Hubicka <jh@suse.cz>
4343 * loop.c (loop_dump_aux): Do not print RTL when not available.
4344 * tree-ssa-loop-ivopts.c (add_standard_iv_candidates): Do not use
4345 frontend specific type nodes.
4346 (produce_memory_decl_rtl): Break out from ...
4347 (prepare_decl_rtl): ... here. Handle ADDR_EXPR correctly.
4348 (get_computation_at): Avoid random tree sharing.
4349 (tree_ssa_iv_optimize): Verify tree sharing; dump loops.
4351 2004-09-06 Zack Weinberg <zack@codesourcery.com>
4353 * Makefile.in (rtl.o, bitmap.o): Correct dependencies, remove
4354 unnecessary commands.
4356 2004-09-06 Mohan Embar <gnustuff@thisiscool.com>
4358 * Makefile.in (rtl.o): Remove -DGENERATOR_FILE.
4359 (bitmap.o): Likewise.
4361 2004-09-06 Paolo Bonzini <bonzini@gnu.org>
4363 Unify the management of RTL and tree-level dump files.
4365 * cfgexpand.c (tree_expand_cfg): Fix incorrect comment.
4366 Don't print function name to the dump file, the pass manager
4367 would do this for us. Add code from the top of
4368 rest_of_compilation, up to the initial RTL dump.
4369 * passes.c (rest_of_handle_jump): Call fixup_tail_calls and
4370 close the DFI_sibling dump file.
4371 (rest_of_compilation): Don't do that here. Remove code up to the
4373 (init_optimization_passes): Remove.
4374 (pass_rest_of_compilation): Change pass name to NULL.
4375 * toplev.c (lang_dependent_init): Do not use an empty dump file prefix.
4376 Do not call init_optimization_passes.
4377 * toplev.h (init_optimization_passes): Remove.
4379 * graph.c (print_rtl_graph_with_bb, clean_graph_dump_file,
4380 finish_graph_dump_file): Remove SUFFIX parameter.
4381 * graph.h (print_rtl_graph_with_bb, clean_graph_dump_file,
4382 finish_graph_dump_file): Likewise.
4384 * tree-pass.h (struct tree_opt_pass): Add `letter' field.
4385 * cfgexpand.c (pass_expand): Adjust.
4386 * gimple-low.c (pass_lower_cf, pass_remove_useless_vars): Adjust.
4387 * passes.c (pass_rest_of_compilation): Adjust.
4388 * predict.c (pass_profile): Adjust.
4389 * tree-alias-common.c (pass_build_pta, pass_del_pta): Adjust.
4390 * tree-cfg.c (pass_build_cfg, pass_remove_useless_stmts,
4391 pass_split_crit_edges, pass_warn_function_return): Adjust.
4392 * tree-complex.c (pass_lower_vector_ssa, pass_pre_expand): Adjust.
4393 * tree-dfa.c (pass_referenced_vars): Adjust.
4394 * tree-eh.c (pass_lower_eh): Adjust.
4395 * tree-if-conv.c (pass_build_ssa): Adjust.
4396 * tree-into-ssa.c (pass_build_ssa): Adjust.
4397 * tree-mudflap.c (pass_mudflap_1, pass_mudflap_2): Adjust.
4398 * tree-nomudflap.c (pass_mudflap_1, pass_mudflap_2): Adjust.
4399 * tree-nrv.c (pass_nrv): Adjust.
4400 * tree-optimize.c (pass_gimple, pass_all_optimizations,
4401 pass_cleanup_cfg_post_optimizing, pass_free_datastructures,
4402 pass_init_datastructures): Adjust.
4403 * tree-outof-ssa.c (pass_del_ssa): Adjust.
4404 * tree-profile.c (pass_tree_profile): Adjust.
4405 * tree-sra.c (pass_sra): Adjust.
4406 * tree-ssa-alias.c (pass_may_alias): Adjust.
4407 * tree-ssa-ccp.c (pass_ccp, pass_fold_builtins): Adjust.
4408 * tree-ssa-copyrename.c (pass_rename_ssa_copies): Adjust.
4409 * tree-ssa-dce.c (pass_dce, pass_cd_dce): Adjust.
4410 * tree-ssa-dom.c (pass_dominator): Adjust.
4411 * tree-ssa-dse.c (pass_dse): Adjust.
4412 * tree-ssa-forwprop.c (pass_forwprop): Adjust.
4413 * tree-ssa-if-conv.c (pass_if_conversion): Adjust.
4414 * tree-ssa-loop-ch.c (pass_ch): Adjust.
4415 * tree-ssa-loop.c (pass_loop, pass_loop_init, pass_lim,
4416 pass_loop_done, pass_complete_unroll, pass_iv_canon,
4417 pass_iv_optimize, pass_vectorize): Adjust.
4418 * tree-ssa-phiopt.c (pass_phiopt): Adjust.
4419 * tree-ssa-pre.c (pass_pre, pass_fre): Adjust.
4420 * tree-ssa.c (pass_redundant_phi, pass_early_warn_uninitialized,
4421 pass_late_warn_uninnitialized): Adjust.
4422 * tree-tailcall.c (pass_tail_recursion, pass_tail_calls): Adjust.
4424 * Makefile.in (tree-dump.o): Add new dependencies.
4425 * cgraph.c (cgraph_remove_node): TDF_all -> TDF_tree_all.
4426 * cgraphunit.c (cgraph_preserve_function_body_p, cgraph_optimize):
4428 * toplev.c (dump_file_name): New.
4429 * tree-dump.c (dump_enable_all): Add LETTER parameter.
4430 (struct dump_file_info): Add NUM and LETTER fields.
4431 (dump_files): Adjust and add RTL dump files.
4432 (dump_register): Add NUM and LETTER fields.
4433 (get_dump_file_name, dump_initialized_p, enable_rtl_dump_file): New.
4434 (dump_begin): Use get_dump_file_name.
4435 (dump_switch_p_1): Adjust call to dump_enable_all.
4436 * tree-dump.h (dump_register): Adjust prototype.
4437 * tree-optimize.c (register_one_dump_file): Take dump file index.
4438 Support flags for RTL dumps.
4439 (register_dump_files): Fill in NUM field of struct dump_file_info.
4440 Track properties both when the gate is executed and when it is not.
4441 (execute_todo): Dump RTL. Add PROPERTIES parameter.
4442 (execute_one_pass): Pass properties to execute_todo. Handle VCG
4444 * tree-pass.h (dump_file_name): New.
4445 * tree.h (TDF_TREE, TDF_RTL, get_dump_file_name, dump_initialized_p):
4448 * Makefile.in (passes.o): Add new dependencies.
4449 * passes.c (struct dump_file_info, enum dump_file_index,
4450 dump_file_tbl, init_optimization_passes): Remove.
4451 (open_dump_file, close_dump_file): Use tree-dumping infrastructure.
4452 (rest_of_handle_new_regalloc, rest_of_handle_old_regalloc): Use
4454 (finish_optimization_passes): Update finish_graph_dump_file loop.
4455 (enable_rtl_dump_file): Remove.
4456 * tree-dump.c (dump_files): Adjust and add RTL dump files.
4457 (enable_rtl_dump_file): Add here.
4458 * tree.h (enum tree_dump_index): Add RTL dump file indices.
4459 * doc/invoke.texi (Debugging options): Document new RTL debugging
4462 2004-09-05 Kazu Hirata <kazu@cs.umass.edu>
4464 * c-common.c, c-decl.c, combine.c, defaults.h, fold-const.c,
4465 gimplify.c, gthr-nks.h, hooks.c, lambda-code.c, lambda-mat.c,
4466 stor-layout.c, target.h, tree-cfg.c, tree-chrec.c,
4467 tree-if-conv.c, tree-inline.c, tree-into-ssa.c,
4468 tree-mudflap.c, tree-optimize.c, tree-scalar-evolution.c,
4469 tree-ssa-alias.c, tree-ssa-ccp.c, tree-ssa-dce.c,
4470 tree-ssa-pre.c, tree-vectorizer.c, tree-vectorizer.h, tree.h,
4471 vec.h: Fix comment formatting.
4473 2004-09-05 Kazu Hirata <kazu@cs.umass.edu>
4475 * c-common.c, cfgexpand.c, cgraphunit.c, defaults.h,
4476 et-forest.c, expr.c, gimplify.c, global.c, gthr-lynx.h,
4477 hard-reg-set.h, modulo-sched.c, optabs.c, postreload-gcse.c,
4478 tree-data-ref.c, tree-flow.h, tree-if-conv.c, tree-inline.c,
4479 tree-sra.c, tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c,
4480 tree-ssa-loop-niter.c, tree-ssa-operands.c,
4481 tree-ssa-operands.h, tree-ssa-propagate.c,
4482 tree-ssa-propagate.h, tree-ssa-threadupdate.c, value-prof.c,
4483 vec.c, vec.h: Fix comment typos. Follow spelling conventions.
4485 2004-09-05 Diego Novillo <dnovillo@redhat.com>
4487 * tree-if-conv.c (gate_tree_if_conversion): Enable only if the
4488 vectorizer is enabled.
4490 2004-09-05 Andreas Jaeger <aj@suse.de>
4492 * tree-if-conv.c: Spell check comments and clean up whitespace.
4494 2004-09-05 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
4496 * tree-ssa-loop-ivopts.c: New file.
4497 * Makefile.in (tree-ssa-loop-ivopts.c): Add.
4498 * cfgloop.h (target_avail_regs, target_res_regs, target_small_cost,
4499 target_pres_cost, target_spill_cost): Declare.
4500 * cfgloopanal.c (avail_regs, res_regs, small_cost, pres_cost,
4501 spill_cost): Renamed to ...
4502 (target_avail_regs, target_res_regs, target_small_cost,
4503 target_pres_cost, target_spill_cost): ... and exported.
4504 (init_set_costs, global_cost_for_size): Work with renamed variables.
4505 * common.opt (flag_ivopts): New flag.
4506 * expr.c (expand_expr_real_1): Handle SSA_NAME case. Handle
4508 * gimplify.c (struct gimplify_ctx): Add into_ssa field.
4509 (internal_get_tmp_var, gimplify_modify_expr, gimplify_expr): Support
4510 generating SSA form.
4511 (force_gimple_operand): New function.
4512 * timevar.def (TV_TREE_LOOP_IVOPTS): New timevar.
4513 * tree-cfg.c (stmt_bsi): New function.
4514 * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
4515 PARAM_IV_MAX_CONSIDERED_USES): New.
4516 * tree-flow.h (stmt_bsi, tree_ssa_iv_optimize, split_loop_exit_edge,
4517 bsi_insert_on_edge_immediate_loop. standard_iv_increment_position,
4518 ip_end_pos, ip_normal_pos, force_gimple_operand): Declare.
4519 * tree-gimple.c (is_gimple_formal_tmp_var): Accept ssa names.
4520 * tree-nested.c (build_addr): Export.
4521 * tree-optimize.c (init_tree_optimization_passes): Add
4523 * tree-pass.h (pass_iv_optimize): Declare.
4524 * tree-ssa-loop-im.c (for_each_index): Handle REALPART_EXPR and
4526 * tree-ssa-loop-manip.c (create_iv): Force the base to be acceptable
4527 as a phi node argument.
4528 (split_loop_exit_edge, bsi_insert_on_edge_immediate_loop,
4529 ip_end_pos, ip_normal_pos, standard_iv_increment_position): New
4531 * tree-ssa-loop-niter.c (zero_p, unsigned_type_for): Export.
4532 * tree-ssa-loop.c (tree_ssa_loop_ivopts, gate_tree_ssa_loop_ivopts,
4533 pass_iv_optimize): New pass.
4534 * tree-ssa-operands.c (get_indirect_ref_operands): Handle REF_ORIGINAL.
4535 * tree-ssanames.c (release_ssa_name): Allow calling with var = NULL.
4536 * tree.c (build_int_cst_type, cst_and_fits_in_hwi): New functions.
4537 * tree.h (REF_ORIGINAL): New macro.
4538 (build_int_cst_type, unsigned_type_for, zero_p,
4539 cst_and_fits_in_hwi, build_addr): Declare.
4540 * doc/invoke.texi (-fivopts): Document.
4541 (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND,
4542 PARAM_IV_MAX_CONSIDERED_USES): Document.
4543 * doc/passes.texi: Document induction variable optimizations pass.
4545 2004-09-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4547 * builtin-attrs.def (ATTR_NOTHROW_SENTINEL_1): New.
4548 * builtins.def (BUILT_IN_EXECLE): Set ATTR_NOTHROW_SENTINEL_1.
4549 * c-common.c (c_common_attribute_table): Accept parameters to
4551 (check_function_sentinel, handle_sentinel_attribute): Likewise.
4552 * doc/extend.texi: Update accordingly.
4554 2004-09-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4556 * builtin-attrs.def (ATTR_SENTINEL, ATTR_SENTINEL_NOTHROW_LIST):
4558 * builtins.def (BUILT_IN_EXECL, BUILT_IN_EXECLP): Add `sentinel'
4560 * c-common.c (handle_sentinel_attribute, check_function_sentinel):
4562 (c_common_attribute_table): Add `sentinel' attribute.
4563 (check_function_arguments): Handle `sentinel' attribute.
4564 * doc/extend.texi: Document `sentinel' attribute.
4566 2004-09-04 H.J. Lu <hongjiu.lu@intel.com>
4568 * configure: Regenerated.
4570 2004-09-04 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4572 * gimplify.c (internal_get_tmp_var): Remove unused var CLASS.
4574 * tree.c (save_expr): No longer TREE_READONLY.
4576 2004-09-04 Jan Hubicka <jh@suse.cz>
4578 * passes.c (rest_of_clean_state): Fix merge conflict made during
4579 commiting the patch.
4581 2004-09-04 Jan Hubicka <jh@suse.cz>
4583 * passes.c (rest_of_clean_state): Decompose the instruction stream.
4585 2004-09-04 Richard Sandiford <rsandifo@redhat.com>
4587 * doc/md.texi (shift patterns): New anchor. Add reference to
4588 TARGET_SHIFT_TRUNCATION_MASK.
4589 * doc/tm.texi (TARGET_SHIFT_TRUNCATION_MASK): Document.
4590 * target.h (shift_truncation_mask): New target hook.
4591 * targhook.h (default_shift_truncation_mask): Declare.
4592 * targhook.c (default_shift_truncation_mask): Define.
4593 * target-def.h (TARGET_SHIFT_TRUNCATION_MASK): Define.
4594 (TARGET_INITIALIZER): Include it.
4595 * simplify-rtx.c (simplify_binary_operation): Combine ASHIFT, ASHIFTRT
4596 and LSHIFTRT cases. Truncate arg1 if SHIFT_COUNT_TRUNCATED, otherwise
4597 reject all out-of-range values. Fix sign-extension code for modes
4598 whose width is smaller than HOST_BITS_PER_WIDE_INT.
4599 * optabs.c (simplify_expand_binop, force_expand_binop): New functions.
4600 (expand_superword_shift, expand_subword_shift): Likewise.
4601 (expand_doubleword_shift_condmove, expand_doubleword_shift): Likewise.
4602 (expand_binop): Use them to implement double-word shifts.
4603 * config/arm/arm.c (arm_shift_truncation_mask): New function.
4604 (TARGET_SHIFT_TRUNCATION_MASK): Define.
4606 2004-09-04 Jan Hubicka <jh@suse.cz>
4608 * tree.c (iterate_hash_expr): Optimize, avoid use of iterative_hash_object.
4609 (mix): New macro copied from hashtab.c
4610 (iterative_hash_hashval_t, iterative_hash_pointer,
4611 iterative_hash_host_wide_int): New functions based on hashtab.c
4614 2004-09-04 Richard Sandiford <rsandifo@redhat.com>
4616 * config/mips/mips.md (mask): New mode attribute.
4617 (zero_extendsidi2): Add memory alternative.
4618 (*zero_extendsidi2_mem): Delete.
4619 (zero_extend[qh]i[sd]i2): Redefine using :GPR and :SHORT. Use
4620 memory_operand in the TARGET_MIPS16 check.
4621 (*zero_extend[qh]i[sd]i2{,_mips16}): Name previously unnamed patterns.
4622 Redefine using :GPR and :SHORT.
4623 (zero_extendqihi2): Use memory_operand in the TARGET_MIPS16 check.
4625 2004-09-04 Uros Bizjak <uros@kss-loka.si>
4627 * builtins.c (expand_builtin_mathfn): Handle BUILT_IN_RINT{,F,L}
4629 (expand_builtin): Expand BUILT_IN_RINT{,F,L} using
4630 expand_builtin_mathfn.
4631 * genopinit.c (optabs): Rename trunc_optab to btrunc_optab. Use
4632 btrunc?f patterns for btrunc_optab. Implement rint_optab using
4634 * optabs.c (init_optabs): Initialize rint_optab.
4635 * optabs.h (enum optab_index): Rename OTI_trunc to OTI_btrunc.
4637 (btrunc_optab): Rename macro from trunc_optab.
4638 (rint_optab): Define corresponding macro.
4640 * reg-stack.c (subst_stack_regs_pat): Handle UNSPEC_FRNDINT_FLOOR,
4641 UNSPEC_FRNDINT_CEIL, UNSPEC_FRNDINT_TRUNC, UNSPEC_FRNDINT_MASK_PM.
4643 * config/i386/i386-protos.h (emit_i387_cw_initialization):
4644 Change prototype. Add new int parameter.
4645 * config/i386/i386.c (emit_i387_cw_initialization):
4646 Handle new rounding modes.
4648 * config/i386/i386.h (enum fp_cw_mode): Delete.
4649 (MODE_NEEDED): Handle new rounding modes.
4650 (EMIT_MODE_SET): Change condition to handle new rounding modes.
4652 * config/i386/i386.md (UNSPEC_FRNDINT_FLOOR, UNSPEC_FRNDINT_CEIL,
4653 UNSPEC_FRNDINT_TRUNC, UNSPEC_FRNDINT_MASK_PM): New unspecs to
4654 represent different rounding modes of frndint insn.
4655 (type): Add frndint type.
4656 (i387, length, memory): Handle this type.
4657 (i387_cw): New attribute definition.
4658 (*fix_truncdi_1, fix_truncdi_nomemory, fix_truncdi_memory,
4659 *fix_truncsi_1, fix_truncsi_nomemory, fix_truncsi_memory,
4660 *fix_trunchi_1, fix_trunchi_nomemory, fix_trunchi_memory):
4661 Add "i387_cw" attribute defined to "trunc".
4662 (x86_fnstcw_1): Remove comment.
4663 (*frndintxf2): Rename insn definition to frndintxf2. Move
4664 insn definition near rint?f2 expanders.
4665 (rintdf2, rintsf2, rintxf2): New expanders to implement rint,
4666 rintf and rintl built-ins as inline x87 intrinsics.
4667 (frndintxf2_floor): New pattern to implement floor rounding
4668 mode with frndint x87 instruction.
4669 (floordf2, floorsf2, floorxf2): New expanders to implement floor,
4670 floorf and floorl built-ins as inline x87 intrinsics.
4671 (frndintxf2_ceil): New pattern to implement ceil rounding
4672 mode with frndint x87 instruction.
4673 (ceildf2, ceilsf2, ceilxf2): New expanders to implement ceil,
4674 ceilf and ceill built-ins as inline x87 intrinsics.
4675 (frndintxf2_trunc): New pattern to implement trunc rounding
4676 mode with frndint x87 instruction.
4677 (btruncdf2, btruncsf2, btruncxf2): New expanders to implement trunc,
4678 truncf and truncl built-ins as inline x87 intrinsics.
4679 (frndintxf2_mask_pm): New pattern to implement rounding
4680 mode with exceptions with frndint x87 instruction.
4681 (nearbyintdf2, nearbyintsf2, nearbyintxf2): New expanders to
4682 implement nearbyint, nearbyintf and nearbyintl built-ins as
4683 inline x87 intrinsics.
4685 2004-09-04 Richard Sandiford <rsandifo@redhat.com>
4687 * config/mips/mips.md (SHORT): New mode macro.
4688 (size): New mode attribute.
4689 (extend[qh]i[sd]i2): Redefine using :GPR and :SHORT.
4690 (*extend[qh]i[sd]i2): New define_insn_and_split, combining previous
4691 *extend[qh]i[sd]i2 and *extend[qh]i[sd]i2_mem patterns. Use only if
4693 (*extend[qh]i[sd]i2_se[bh]): New pattern, combining previous
4694 *extend[qh]isi2_hw patterns and extending them to di.
4695 (extendqihi2): Implement as define_insn_and_split that produces
4696 extendqisi2 after reload.
4698 2004-09-03 Devang Patel <dpatel@apple.com>
4700 * Makefile.in (OBJS-common): Add tree-if-conv.o
4701 (tree-if-conv.o): New rule.
4702 * cfgloop.c (flow_loop_exit_edges_find): Set EDGE_LOOP_EXIT flag.
4703 (get_loop_body_in_bfs_order): New.
4704 * cfgloop.h (get_loop_body_in_bfs_order): New.
4705 * tree-flow.h (enum move_pos): Move here from ..
4706 * tree-ssa-loop-im.c (enum move_pos): here.
4707 (movement_possibility): Make externally visible.
4708 * tree-optimize.c (init_tree_optimization_passes): New entry for
4710 * tree-pass.h (pass_if_conversion): New.
4711 * tree-ssa-operands.c (get_expr_operands): Handle COND_EXPR.
4712 * tree-if-conv.c: New file.
4713 * doc/passes.texi: Document tree if-conversion pass.
4714 * doc/tree-ssa.texi: Same.
4716 2004-09-03 H.J. Lu <hongjiu.lu@intel.com>
4719 Makefile.in (LIB2ADDEHSTATIC): New.
4720 (LIB2ADDEHSHARED): New.
4722 (LIBUNWINDDEP): New.
4723 (SHLIBUNWIND_LINK): New.
4724 (SHLIBUNWIND_INSTALL): New.
4725 (libgcc.mk): Pass LIB2ADDEHSTATIC, LIB2ADDEHSHARED, LIBUNWIND,
4726 LIBUNWINDDEP, SHLIBUNWIND_LINK and SHLIBUNWIND_INSTALL.
4727 (clean): Remove libunwind*
4728 (stage1-start): Remove and copy stage1/libunwind*.
4729 (stage2-start): Remove and copy stage2/libunwind*.
4730 (stage3-start): Remove and copy stage3/libunwind*.
4731 (stage4-start): Remove and copy stage4/libunwind*.
4732 (stageprofile-start): Remove and copy stageprofile/libunwind*.
4733 (stagefeedback-start): Remove and copy stagefeedback/libunwind*.
4735 * config.gcc (ia64*-*-linux*): Always add t-libunwind to
4736 tmake_file. Add t-libunwind-elf and ia64/t-glibc-libunwind to
4737 tmake_file if --with-system-libunwind isn't used.
4739 * config/ia64/t-glibc-libunwind: New file.
4740 * config/t-libunwind-elf: Likewise.
4741 * unwind-compat.c: Likewise.
4742 * unwind-compat.h: Likewise.
4743 * unwind-dw2-fde-compat.c: Likewise.
4745 * config/ia64/t-glibc (LIB2ADDEH): Updated.
4746 * config/ia64/t-hpux (T_CFLAGS): Add -DUSE_LIBUNWIND_EXCEPTIONS.
4748 * config/ia64/unwind-ia64.c: Include "unwind-compat.h". Define
4750 * unwind-dw2-fde-glibc.c: Likewise.
4751 * unwind-dw2.c: Likewise.
4753 * config/t-libunwind (LIB2ADDEH): Updated.
4754 (LIB2ADDEHSTATIC): New.
4755 (T_CFLAGS): Add -DUSE_LIBUNWIND_EXCEPTIONS.
4756 (TARGET_LIBGCC2_CFLAGS): Set to -DUSE_GAS_SYMVER.
4758 * configure.ac: Change --enable-libunwind-exceptions to
4759 --with-system-libunwind. Don't define USE_LIBUNWIND_EXCEPTIONS.
4760 * configure: Regenerated.
4761 * config.in: Updated.
4763 * doc/install.texi (ia64-*-linux): Require libunwind 0.98 or
4764 above and mention --with-system-libunwind.
4765 (ia64-*-hpux*): Mention --enable-libunwind-exceptions is
4766 removed in gcc 3.4.3 and later.
4768 * gcc.c (init_spec): Add -lunwind to -lgcc_s if
4769 USE_LIBUNWIND_EXCEPTIONS is defined.
4771 * mklibgcc.in: Support libunwind.
4773 2004-09-03 H.J. Lu <hongjiu.lu@intel.com>
4775 * config/i386/i386.c (x86_branch_hints): Remove m_PENT4 and
4778 2004-09-03 Richard Henderson <rth@redhat.com>
4781 * cfgexpand.c (LOCAL_ALIGNMENT): Provide default.
4782 (STACK_ALIGNMENT_NEEDED, FRAME_GROWS_DOWNWARD): Likewise.
4783 (struct stack_var, EOC, stack_vars, stack_vars_alloc, stack_vars_num,
4784 stack_vars_sorted, stack_vars_conflict, stack_vars_conflict_alloc,
4785 frame_phase, get_decl_align_unit, add_stack_var, triangular_index,
4786 resize_stack_vars_conflict, add_stack_var_conflict,
4787 stack_var_conflict_p, add_alias_set_conflicts, stack_var_size_cmp,
4788 union_stack_vars, partition_stack_vars, dump_stack_var_partition,
4789 expand_one_stack_var_at, expand_stack_vars, expand_one_stack_var,
4790 expand_one_static_var, expand_one_hard_reg_var,
4791 expand_one_register_var, expand_one_error_var, defer_stack_allocation,
4792 expand_one_var, expand_used_vars_for_block, clear_tree_used): New.
4793 (expand_used_vars): Rewrite.
4794 * Makefile.in (cfgexpand.o): Update dependencies.
4796 2004-09-04 Jan Hubicka <jh@suse.cz>
4798 * cfg.c (free_edge): Use ggc_free.
4799 (expunge_block): Use ggc_free.
4800 * passes.c (rest_of_clean_state): Free after compilation.
4801 * tree-ssa.c (delete_tree_ssa): Free annotations; call release_defs
4802 * tree-ssanames.c (release_defs): Ignore non-SSA_NAME arguments.
4804 2004-09-03 James E Wilson <wilson@specifixinc.com>
4806 * tree-ssa-alias.c (may_be_aliased): Move TREE_STATIC check after
4807 DECL_EXTERNAL check.
4809 2004-09-03 Eric Botcazou <ebotcazou@libertysurf.fr>
4811 * final.c (output_in_slot): New global variable.
4812 (final_scan_insn): Add new state '2' to the 'nopeepholes' parameter.
4813 Pass 2 as 'nopeepholes' to self for insns in a SEQUENCE. Set
4814 'output_in_slot' before invoking output_asm_insn.
4815 (output_asm_insn): Add a space after the tab if 'output_in_slot'
4817 * config/sparc/sparc.c (output_return): Pass 2 as 'nopeepholes' to
4819 (output_sibcall): Likewise.
4821 2004-09-03 Jan Hubicka <jh@suse.cz>
4823 * tree-ssa-operands.c (fini_ssa_operands): ggc_free unused arrays.
4824 * tree-ssanames (init_ssanames): Likewise.
4826 2004-09-03 Ziemowit Laski <zlaski@apple.com>
4828 * stub-objc.c (objc_is_id, objc_declare_alias, objc_declare_class,
4829 objc_declare_protocols, objc_start_protocol,
4830 objc_start_class_interface, objc_start_category_interface,
4831 objc_continue_interface, objc_finish_interface,
4832 objc_add_instance_variable, objc_set_visibility, objc_set_method_type,
4833 objc_start_class_implementation, objc_start_category_implementation,
4834 objc_continue_implementation, objc_finish_implementation,
4835 objc_add_method_declaration, objc_start_method_definition,
4836 objc_finish_method_definition, objc_build_keyword_decl,
4837 objc_build_method_signature, objc_build_encode_expr,
4838 objc_build_protocol_expr, objc_build_selector_expr,
4839 objc_build_message_expr, objc_build_string_object,
4840 objc_get_class_reference, objc_get_protocol_qualified_type,
4841 objc_static_init_needed_p, objc_generate_static_init_call): New stubs.
4843 2004-09-03 James E Wilson <wilson@specifixinc.com>
4845 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Add __mips3d.
4847 * config/mips/generic.md (generic_frecip_fsqrt_step): New.
4848 * config/mips/mips-ps-3d.md (mips_rsqrt1_<fmt>): Use frsqrt1 type.
4849 (mips_rsqrt2_<fmt>): Use frsqrt2 type.
4850 (mips_recip1_<fmt>): Use frdiv1 type.
4851 (mips_recip2_<fmt>): Use frdiv2 type.
4852 * config/mips/mips.md (type): Add frdiv1, frdiv2, frsqrt1, frsqrt2.
4853 * config/mips/sb1.md (ir_sb1_fpu_2pipes, ir_sb1_fpu_1pipe): Add frdiv1
4855 (ir_sb1_fpu_step2_2pipes, ir_sb1_fpu_step2_1pipe): New.
4857 2004-09-03 Daniel Jacobowitz <dan@debian.org>
4859 * reload.c (find_reloads): Swap operand_loc pointers for
4860 find_dummy_reload if we have swapped two operands.
4862 2004-09-03 Hans-Peter Nilsson <hp@axis.com>
4864 * config/cris/cris.h (ASM_OUTPUT_CASE_END): Use prev_nonnote_insn
4865 to get the tablejump-insn before the jump-table label.
4867 2004-09-03 Ziemowit Laski <zlaski@apple.com>
4869 * c-common.h (objc_is_id, objc_declare_alias, objc_declare_class,
4870 objc_declare_protocols, objc_build_message_expr,
4871 objc_finish_message_expr, objc_build_selector_expr,
4872 objc_build_protocol_expr, objc_build_encode_expr,
4873 objc_build_string_object, objc_get_protocol_qualified_type,
4874 objc_get_class_reference, objc_get_class_ivars,
4875 objc_start_class_interface, objc_start_category_interface,
4876 objc_start_protocol, objc_continue_interface, objc_finish_interface,
4877 objc_start_class_implementation, objc_start_category_implementation,
4878 objc_continue_implementation, objc_finish_implementation,
4879 objc_set_visibility, objc_set_method_type, objc_build_method_signature,
4880 objc_add_method_declaration, objc_start_method_definition,
4881 objc_finish_method_definition, objc_add_instance_variable,
4882 objc_build_keyword_decl, objc_build_throw_stmt, objc_begin_try_stmt,
4883 objc_finish_try_stmt, objc_begin_catch_clause,
4884 objc_finish_catch_clause, objc_build_finally_clause,
4885 objc_build_synchronized, objc_static_init_needed_p,
4886 objc_generate_static_init_call): New prototypes.
4888 2004-09-03 Steve Ellcey <sje@cup.hp.com>
4890 * config/ia64/ia64.c (ia64_function_arg): Use PARALLEL even if there
4892 (ia64_function_value): Ditto.
4894 2004-09-03 Jan Beulich <jbeulich@novell.com>
4896 * config.gcc: Resurrect NetWare as a target. Handle special case of
4897 Novell linker to be used (specified through --with-ld=) and threading
4898 model of either Posix (default) or NKS.
4899 * config/i386/i386.c (ix86_return_pops_args): Conditionalize popping
4900 of incoming hidden argument on KEEP_AGGREGATE_RETURN_POINTER.
4901 * config/i386/i386.h (KEEP_AGGREGATE_RETURN_POINTER): New.
4902 * config/i386/netware.c, config/i386/netware.h: New.
4903 * config/i386/nwld.c, config/i386/nwld.h: New.
4904 * config/i386/netware-crt0.c: New.
4905 * config/i386/netware-libgcc.c: New.
4906 * config/i386/netware-libgcc.def: New.
4907 * config/i386/netware-libgcc.exp: New.
4908 * config/i386/t-netware, config/i386/t-nwld: New.
4910 * doc/install.texi: Document NKS threading model.
4912 2004-09-03 Jan Beulich <jbeulich@novell.com>
4915 * defaults.h (TARGET_DEFAULT_PACK_STRUCT): Provide default.
4916 * tree.h (initial_max_fld_align): Declare
4917 * stor-layout.c (initial_max_fld_align): Define and initialize.
4918 (maximum_field_alignment): Initialize to the same value.
4919 * common.opt: Add -fpack-struct= variant of switch.
4920 * opts.c: Handle -fpack-struct= variant of switch.
4921 * c-pragma.c: Change #pragma pack() handling so that it becomes
4922 compatible to other compilers: accept individual 'push' argument,
4923 make final pop restore (command line) default, correct interaction
4924 of push/pop and sole specification of a new alignment (so that the
4925 sequence #pragma pack(push) - #pragma pack(<n>) becomes identical
4926 to #pragma pack(push, <n>).
4927 * doc/extend.texi: New node "Structure-Packing Pragmas" under
4928 "Pragmas", describing #pragma pack.
4929 * doc/invoke.texi: Document -fpack-struct=<n> variant of switch.
4930 * doc/tm.texi: Adjust description for HANDLE_PRAGMA_PACK_PUSH_POP.
4931 Document new TARGET_DEFAULT_PACK_STRUCT.
4933 2004-09-03 Devang Patel <dpatel@apple.com>
4935 * dwarf2out.c (gen_field_die). Equate decl number to die.
4937 2004-09-03 Vladimir Makarov <vmakarov@redhat.com>
4940 * global.c (modify_reg_pav): New function.
4941 (make_accurate_live_analysis): Call the new function. Move pavin
4942 modification by earlyclobber set into the new function.
4944 2004-09-03 Andreas Schwab <schwab@suse.de>
4946 * config/m68k/m68k.c (output_andsi3): Use -1 instead of
4947 (HOST_WIDE_INT)0xffffffff since CONST_INT value are always sign
4950 2004-09-02 Jan Beulich <jbeulich@novell.com>
4952 * Makefile.in (LIB2ADDEHDEP): Add unwind.h and unwind-pe.h.
4953 * mklibgcc.in (libgcc_dep): New, covering general dependencies, but
4954 not unwind code specific ones.
4955 (libgcc2_c_dep): Replace general dependencies with use of libgcc_dep.
4956 Remove unwind code specific dependencies.
4957 (libgcov_c_dep): Replace general dependencies with use of libgcc_dep.
4959 Add libgcc_dep to output generated for LIB2ADD, LIB2ADDEH, and
4960 LIB2ADD_ST. Add LIB2ADDEHDEP to output generated for LIB2ADDEH.
4961 * tsystem.h: Declare memcpy and memset when inhibit_libc.
4963 2004-09-02 Roman Zippel <zippel@linux-m68k.org>
4965 * combine.c (try_combine): Delay modifying of insns which cannot
4968 2004-09-02 Daniel Berlin <dberlin@dberlin.org>
4970 * gcc/common.opt: Rename ivcanon to tree-loop-ivcanon, tree-lim to
4972 * gcc/tree-ssa-loop.c: Ditto
4973 * gcc/tree-ssa-loop-ivcanon.c: Ditto
4974 * gcc/doc/invoke.texi: Ditto.
4976 2004-09-02 Ziemowit Laski <zlaski@apple.com>
4978 * c-decl.c (store_parm_decls_newstyle): Make static.
4979 (store_parm_decls_from): New function.
4980 * c-tree.h (store_parm_decls_newstyle): Remove prototype.
4981 (store_parm_decls_from): New prototype.
4983 2004-09-02 David Edelsohn <edelsohn@gnu.org>
4985 * config/rs6000/rs6000.c (expand_block_move): Use SImode and
4986 HImode with STRICT_ALIGNMENT.
4988 2004-09-02 Mark Mitchell <mark@codesourcery.com>
4990 * config/arm/bpabi.h (TARGET_BPABI_CPP_BUILTINS): Define.
4991 (TARGET_OS_CPP_BUILTINS): Likewise.
4992 * config/arm/symbian.h (TARGET_OS_CPP_BUILTINS): Include
4993 TARGET_BPABI_CPP_BUILTINS.
4995 2004-09-02 Roman Zippel <zippel@linux-m68k.org>
4997 * combine.c (distribute_notes): Don't add REG_LABEL to jump insn.
4999 2004-09-02 Eric Christopher <echristo@redhat.com>
5001 * builtins.c (expand_builtin_cabs): Delete.
5002 (expand_builtin): If unable to fold the values do a normal
5003 library call for builtin_cab*.
5004 (fold_builtin_cabs): Depend on optimize and optimize_size.
5005 * optabs.c (expand_cmplxdiv_straight): Delete.
5006 (expand_cmplxdiv_wide): Ditto.
5007 (expand_vector_binop): Ditto.
5008 (expand_vector_unop): Ditto.
5009 (expand_complex_abs): Delete.
5010 (expand_binop): Remove calls to above functions.
5011 Remove open coding of complex arithmetic.
5012 (expand_unop): Ditto.
5013 * optabs.h: Remove prototypes.
5015 2004-09-02 Ziemowit Laski <zlaski@apple.com>
5017 * c-decl.c (store_parm_decls_newstyle): Make externally visible.
5018 * c-tree.h (store_parm_decls_newstyle): New prototype.
5020 2004-09-02 Geoffrey Keating <geoffk@apple.com>
5022 * config/rs6000/rs6000.c (expand_block_clear): Use vector
5023 instructions if available.
5024 (expand_block_move): Likewise.
5026 2004-09-03 Jan Hubicka <jh@suse.cz>
5028 * rtl.def (RANGE_INFO, RANGE_REG, RANGE_VAR, RANGE_LIVE): Kill.
5030 2004-09-02 Mark Mitchell <mark@codesourcery.com>
5032 * config/arm/symbian.h (LIB_SPEC): Define to empty.
5033 * config/arm/t-symbian (SHLIB_LC): Likewise.
5035 2004-09-02 Paul Brook <paul@codesourcery.com>
5037 * config/arm/bpabi.c (__aeabi_ul2d, __aeabi_ul2f): Remove.
5039 2004-09-02 Richard Sandiford <rsandifo@redhat.com>
5041 * config/mips/mips.c (mips_classify_symbol, mips_fetch_insns):
5042 (mips_restore_gp, mips_set_return_address, mips_expand_prologue)
5043 (mips16_fp_args, mips_avoid_hazard): Replace abort with gcc_assert.
5044 (build_mips16_call_stub): Likewise. Remove daft CALL_INSN checks.
5045 (mips_issue_rate): Remove unreachable abort.
5046 (mips_symbolic_constant_p, mips_symbolic_address_p, mips_symbol_insns)
5047 (mips_output_move, mips_relational_operand_ok_p, mips_arg_info)
5048 (mips_block_move_straight, print_operand_address, mips_file_start)
5049 (mips_initial_elimination_offset, mips16_fp_args, dump_constants_1)
5050 (mips_output_conditional_branch, mips_expand_builtin_direct)
5051 (mips_expand_builtin_compare): Replace abort with gcc_unreachable.
5052 * config/mips/mips.md (rotr<mode>3, consttable_float): Replace abort
5055 2004-09-02 Richard Sandiford <rsandifo@redhat.com>
5057 * config/mips/mips.md (*lea_high64): Change split condition to
5058 flow2_completed. Add a peephole2 to generate a more parallel version.
5060 2004-09-02 Jan Hubicka <jh@suse.cz>
5062 * gimplify.c (gimplify_compound_lval): Move "stack" varray out of
5065 * ggc-page.c: include tree-flow.h.
5066 (extra_order_size_table): Add stmt_ann_d.
5067 (STAT_LABEL): Rename from ....
5068 (LABEL): ... this one.
5069 * Makefile.in (ggc-page.o): Add dependency.
5071 * ggc-common.c (ggc_force_collect): New global variable.
5072 (loc_description): Add fields "freed", "collected"
5073 (ptr_hash): New static hash
5074 (ptr_hash_entry): New structure.
5075 (hash_ptr,eq_ptr,ggc_prune_ptr): New static functions.
5076 (ggc_record_overhead): Take ptr argument, record it
5077 (ggc_prune_overhead_list, ggc_free_overhead): New functions.
5078 (cmp_statistics): Imrove sorting.
5079 (dump_ggc_loc_statistics): Output newly collected statistics
5080 * ggc-page.c (ggc_alloc): Update call of ggc_record_overhead
5081 (ggc_free): Call ggc_free_overhead.
5082 (ggc_collect): Force collection when asked to be forced.
5083 (ggc_collect): Call ggc_prune_overhead_list.
5084 * ggc.h (ggc_force_collect): Declare
5085 (ggc_record_overhead): Update prototype.
5086 (ggc_free_overhead, ggc_prune_overhead_list): Declare.
5088 2004-09-02 James E Wilson <wilson@specifixinc.com>
5090 * common.opt (ftrapping-math): Default to on.
5092 2004-09-02 Richard Earnshaw <rearnsha@arm.com>
5094 * arm/predicates.md (arm_reload_memory_operand): Allow MEM.
5096 2004-09-02 Denis Chertykov <denisc@overta.ru>
5099 * config/avr/avr.md ("movmemhi"): Substitute match_dup to
5101 (*movmemqi_insn): Likewise.
5102 (*movmemhi): Likewise.
5103 (clrmemhi): Likewise.
5104 (*clrmemqi): Likewise.
5105 (*clrmemhi): Likewise.
5107 2004-09-02 Paul Brook <paul@codesourcery.com>
5109 * config.gcc (arm*-*-eabi* | arm*-*-symbianelf*): Set
5110 default_use_cxa_atexit=yes.
5112 2004-09-02 Alan Modra <amodra@bigpond.net.au>
5114 * config/rs6000/linux64.h: Don't include signal.h or sys/ucontext.h.
5115 (struct kernel_old_ucontext): Delete.
5116 (struct gcc_pt_regs, gcc_sigcontext, gcc_ucontext): New.
5117 (MD_FALLBACK_FRAME_STATE_FOR): Use gcc_* structs. Only define
5120 2004-09-02 Richard Sandiford <rsandifo@redhat.com>
5122 * toplev.c (process_options): Fix typo.
5124 2004-09-01 Richard Henderson <rth@redhat.com>
5127 * calls.c (initialize_argument_information): Tighten pass-through
5128 conditions for pass-by-reference. Remove dead TARGET_EXPR code.
5129 Use build_fold_addr_expr.
5130 (emit_library_call_value_1): Use build_fold_addr_expr. Remove code
5131 that assumes ADDR_EXPR allocates stack space.
5132 * fold-const.c (build_fold_addr_expr_with_type): Look through
5135 2004-09-01 Dan Nicolaescu <dann@ics.uci.edu>
5137 * gengenrtl.c (gendef): Use rtx_alloc, don't do PUT_CODE.
5138 * ggc.h (ggc_alloc_rtx): Delete.
5140 2004-09-01 Roger Sayle <roger@eyesopen.com>
5142 * expmed.c (enum alg_code): Remove long unused enumeration values.
5143 (struct mult_cost): New structure to hold the "score" of a synthetic
5144 multiply sequence, including both a rtx_cost and a latency field.
5145 (MULT_COST_LESS): New macro to compare mult_cost to a constant.
5146 (CHEAPER_MULT_COST): New macro to compare two mult_costs.
5147 (struct algorithm): Change type of cost field to be mult_cost.
5148 (synth_mult): Change type of cost_limit argument to be a
5149 pointer to a mult_cost. Update all cost comparisons to use the
5150 new mult_cost infrastructure. For alg_add_factor and
5151 alg_sub_factor operations, latency is lower than the rtx_cost.
5152 (choose_mult_variant): Update calls to synth_mult. Perform
5153 cost comparisons using the new mult_cost infrastructure.
5154 (expand_mult_highpart): Use alg.cost.cost instead of alg.cost
5155 to optain the total rtx_cost of a synth_mult "algorithm".
5157 2004-09-01 David Edelsohn <edelsohn@gnu.org>
5159 * config/rs6000/power4.md: Increase store latency to 12.
5160 * config/rs6000/power5.md: Same.
5162 2004-09-01 James E Wilson <wilson@specifixinc.com>
5165 * config/avr/avr.c (avr_unique_section): Delete prototype and
5167 (TARGET_ASM_UNIQUE_SECTION): Delete.
5169 2004-09-01 Ziemowit Laski <zlaski@apple.com>
5171 * c-parse.in (primary): Call objc_build_message_expr(),
5172 objc_build_selector_expr(), objc_build_protocol_expr(),
5173 objc_build_encode_expr() and objc_build_string_object() instead of
5174 build_message_expr(), build_selector_expr(), build_protocol_expr(),
5175 build_encode_expr() and build_objc_string_object(), respectively.
5176 (component_decl_list2): Call objc_get_class_ivars() instead of
5177 get_class_ivars_from_name().
5178 (keyworddecl): Call objc_build_keyword_decl() instead of
5179 build_keyword_decl().
5180 (receiver): Call objc_get_class_reference() instead of
5181 get_class_reference().
5182 (reswords): Add blank line before @@ifobjc section, for clarity.
5184 2002-09-01 Fariborz Jahanian <fjahanian@apple.com>
5186 * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Restrict alignment
5189 2004-09-01 Wu Yongwei <adah@sh163.net>
5190 Danny Smith <dannysmith@users.sourceforge.net>
5192 * gthr-win32.h (__gthread_recursive_mutex_t): Use 'unsigned long',
5193 not Windows 'DWORD'.
5194 (__GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION): Correct typo.
5195 (__GTHREAD_RECURSIVE_MUTEX_INIT_DEFAULT): Likewise.
5196 (__gthr_win32_recursive_mutex_init_function): Add prototype for
5197 __GTHREAD_HIDE_WIN32API case..
5198 (__gthr_win32_recursive_mutex_lock): Likewise.
5199 (__gthr_win32_recursive_mutex_trylock): Likewise.
5200 (__gthr_win32_recursive_mutex_unlock): Likewise.
5201 (__gthread_recursive_mutex_init_function); Add definition for
5202 __GTHREAD_HIDE_WIN32API case.
5203 (__gthread_recursive_mutex_lock): Correct call to InterlockedDecrement.
5204 * config/i386/grthr-win32.c (__gthread_recursive_mutex_lock): Correct
5205 call to InterlockedDecrement.
5207 2004-09-01 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5209 * tree-tailcall.c (find_tail_calls): Also fail is statement has
5212 * tree-ssa.c (propagate_into_addr): Properly test for LHR.
5214 * doc/c-tree.texi: Document new operands for ARRAY_REF and
5217 2004-09-01 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5219 * Makefile.in (rtl-profile.o, value-prof.o): Add GCC_H dependency.
5220 * common.opt (fspeculative-prefetching): New.
5221 * flags.h (flag_speculative_prefetching_set): Declare.
5222 * gcov-io.c (gcov_write_counter, gcov_read_counter): Allow negative
5224 * opts.c (flag_sepculative_prefetching_set): New variable.
5225 (common_handle_option): Handle -fspeculative-prefetching.
5226 * passes.c (rest_of_compilation): Ditto.
5227 * profile.c (instrument_values, compute_value_histograms, branch_prob):
5228 Use vectors instead of arrays.
5229 * toplev.c (process_options): Handle -fspeculative-prefetching.
5230 * rtl-profile.c: Include ggc.h.
5231 (rtl_gen_interval_profiler, rtl_gen_pow2_profiler,
5232 rtl_gen_one_value_profiler_no_edge_manipulation,
5233 rtl_gen_one_value_profiler, rtl_gen_const_delta_profiler): Type of
5235 * tree-profile.c (tree_gen_interval_profiler, tree_gen_pow2_profiler,
5236 tree_gen_one_value_profiler, tree_gen_const_delta_profiler): Type of
5238 * value-prof.c: Include ggc.h.
5239 (NOPREFETCH_RANGE_MIN, NOPREFETCH_RANGE_MAX): New
5241 (insn_prefetch_values_to_profile, find_mem_reference_1,
5242 find_mem_reference_2, find_mem_reference, gen_speculative_prefetch,
5243 speculative_prefetching_transform): New.
5244 (value_profile_transformations): Call speculative_prefetching_transform.
5245 (insn_values_to_profile): Call insn_prefetch_values_to_profile.
5246 (insn_divmod_values_to_profile, rtl_find_values_to_profile,
5247 tree_find_values_to_profile, find_values to profile): Use vectors
5249 (free_profiled_values): Removed.
5250 * value-prof.h (struct histogram_value): Renamed to
5251 struct histogram_value_t.
5252 (histogram_value, histogram_values): New types.
5253 (find_values_to_profile): Declaration changed.
5254 (free_profiled_values): Removed.
5255 (struct profile_hooks): Type of argument of the hooks changed to
5257 * doc/invoke.texi (-fspeculative-prefetching): Document.
5259 2004-09-01 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5261 PR rtl-optimization/16408
5262 * gcse.c (replace_store_insn): Fix LIBCALL/RETVAL notes.
5264 2004-09-01 Richard Henderson <rth@redhat.com>
5266 * config/ns32k/ns32k.h (TRANSFER_FROM_TRAMPOLINE): Remove.
5267 (TRAMPOLINE_TEMPLATE): Merge code from __trampoline inline.
5269 2004-09-01 Jakub Jelinek <jakub@redhat.com>
5271 * libgcc-std.ver (GCC_3.4.2): Export also __trampoline_setup.
5273 2004-09-01 Mike Stump <mrs@apple.com>
5275 * config/darwin.c (machopic_symbol_defined_p): In addition to
5276 being SYMBOL_REF_LOCAL_P, a symbol must also be
5277 ! SYMBOL_REF_EXTERNAL_P, as only those are _always_ locally
5278 defined in this output file, or translation unit in the case
5279 of IMA not being used.
5280 (machopic_output_indirection): SYMBOL_REF_LOCAL_P symbols
5281 never need .indirect_symbol when indirecting.
5283 2004-09-01 Jakub Jelinek <jakub@redhat.com>
5285 * Makefile.in (bb-reorder.o): Add several dependencies.
5287 2004-09-01 Jakub Jelinek <jakub@redhat.com>
5289 * fold-const.c (operand_equal_p): Require equal sign also for
5290 FIX_{CEIL,TRUNC,FLOOR,ROUND}_EXPR.
5292 2004-09-01 Richard Earnshaw <rearnsha@arm.com>
5294 * config.gcc (--with-cpu on ARM): Preserve the canonical cpu name
5295 for use in configargs.h. Put the cname in a separate variable. Use
5296 that to set target_cpu_default2.
5298 2004-09-01 J"orn Rennecke <joern.rennecke@superh.com>
5299 Nick Clifton <nickc@redhat.com>
5301 * config/sh/sh.md ("length"): Increase branch length when
5302 SH1 pic code to 18: 12 bytes of instructions, 4 byte for the
5303 constant, 2 byte for aligning the constant.
5305 2004-09-01 Richard Earnshaw <rearnsha@arm.com>
5307 * arm/arm-cores.def (ARM_CORE): Add new field for the real name of the
5309 (arm7tdmi-s): New CPU name.
5310 * arm/arm.c (ARM_CORE): Update for new format.
5311 * arm/arm.h (ARM_CORE): Likewise.
5312 * arm/gentune.sh: Update for extra field.
5313 * config.gcc: Likewise.
5314 * arm/arm-tune.md: Regenerate.
5315 * doc/invoke.texi: Document the real processor names for ARM cpus.
5317 2004-09-01 Richard Earnshaw <rearnsha@arm.com>
5319 * arm/ieee754-df.S (aeabi_ul2d, aeabi_l2d, floatundidf)
5320 (floatdidf): New functions.
5321 * arm/ieee754-sf.S (aeabi_ul2f, aeabi_l2f, floatundisf)
5322 (floatdisf): New functions.
5323 * t-arm-elf: Use them.
5325 2004-09-01 Ziemowit Laski <zlaski@apple.com>
5327 * c-common.h (lookup_interface): Remove prototype.
5328 (is_class_name): Rename to objc_is_class_name.
5329 (lookup_objc_ivar): Rename to objc_lookup_ivar.
5330 (get_current_scope): Rename to objc_get_current_scope.
5331 * c-decl.c (get_current_scope): Rename to objc_get_current_scope.
5332 * c-parse.in (parmlist_or_identifiers_1): Get rid of unused variable.
5333 (yylexname): Call objc_is_class_name() instead of is_class_name().
5334 * c-typeck.c (build_external_ref): Call objc_lookup_ivar()
5335 instead of lookup_objc_ivar().
5336 * stub-objc.c (lookup_interface): Remove stub.
5337 (is_class_name): Rename to objc_is_class_name.
5338 (lookup_objc_ivar): Rename to objc_lookup_ivar.
5340 2004-08-31 Mark Mitchell <mark@codesourcery.com>
5342 * config.gcc (arm*-*-symbianelf*): Do not include t-bpabi.
5343 * config/arm/lib1funcs.asm: Do not include supplemental .S files
5344 when compiling for Symbian.
5345 * config/arm/symbian.h (RENAME_LIBRARY): New macro.
5346 (TARGET_OS_CPP_BUILTINS): Likewise.
5347 * config/arm/t-symbian (LIB1ASMFUNCS): Define.
5349 2004-08-31 Stan Shebs <shebs@apple.com>
5351 * toplev.c (process_options): Ensure debug_hooks is initialized.
5353 2004-08-31 Mark Mitchell <mark@codesourcery.com>
5355 * target-def.h (TARGET_CXX): Add TARGET_CXX_EXPORT_CLASS_DATA.
5356 * target.h (cxx): Add export_class_data.
5357 * config/arm/arm.c (arm_cxx_export_class_data): New function.
5358 (TARGET_CXX_EXPORT_CLASS_DATA): Use it.
5359 * doc/tm.texi (TARGET_CXX_EXPORT_CLASS_DATA): Document it.
5361 2004-08-31 Kaz Kojima <kkojima@gcc.gnu.org>
5363 * config/sh/sh.c (output_branch): Check the insn length possibly
5364 in the delayed slot.
5366 2004-08-31 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5368 * tree-pretty-print.c (dump_generic_node, case CONVERT_EXPR): Add
5370 (op_symbol, case *_{DIV,MOD}_EXPR): Say what rounding is being used.
5372 * c-common.c (c_alignof_expr): Use DECL_ALIGN_UNIT and TYPE_ALIGN_UNIT.
5373 (c_sizeof_of_alignof_type): Likewise.
5374 * expr.c (array_ref_element_size): Likewise.
5375 (highest_pow2_factor_for_target): Likewise.
5376 * gimplify.c (canonicalize_addr_expr): Likewise.
5377 (gimplify_compound_lval): Likewise.
5378 * stor-layout.c (finalize_record_size, finalize_type_size): Likewise.
5379 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Likewise.
5380 * varasm.c (assemble_variable): Likewise.
5381 (output_constant_def_contents): Alignments are unsigned.
5383 2004-08-31 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5384 Jeff Law <law@redhat.com>
5386 * tree-cfg.c (cfg_remove_useless_stmts_bb): Also invalidate if VAL
5389 2004-08-31 Mark Mitchell <mark@codesourcery.com>
5391 * hooks.c (hook_bool_void_true): New function.
5392 * hooks.h (hook_bool_void_true): Declare.
5393 * target-def.h (TARGET_CXX): Add
5394 TARGET_CXX_KEY_METHOD_MAY_BE_INLINE.
5395 * target.h (struct cxx): Add key_method_may_be_inline.
5396 * config/arm/arm.c (arm_cxx_key_method_may_be_inline): New
5398 (TARGET_CXX_KEY_METHOD_MAY_BE_INLINE): New macro.
5399 * config/arm/bpabi.h: Use __THUMB_INTERWORK__ instead of
5402 2004-08-31 Denis Chertykov <denisc@overta.ru>
5405 * config/avr/avr.c (avr_hard_regno_mode_ok): Enable usage of
5406 frame pointer register only in Pmode while reload in progress.
5408 2004-08-31 Stephane Carrez <stcarrez@nerim.fr>
5411 * config/m68hc11/m68hc11.c (m68hc11_override_options): Disable -fweb
5412 because it breaks the 32-bit shift patterns that rely on a match_dup.
5414 2004-08-31 Matt Austern <austern@apple.com>
5416 * config/darwin.c (darwin_make_decl_one_only): Allocate section
5417 names once per compilation, instead of once per symbol.
5419 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
5421 * Makefile.in (build_subdir): New substitution.
5422 (fixinc.sh): Simplify heavily since fixincludes is already built.
5423 (stmp-fixinc): Depend on specs.ready.
5424 (install-mkheaders): Use new location of fixincludes.
5425 (clean): Do not descend into fixinc.
5426 (FORBUILD): Replace with ../$(build_subdir).
5427 * configure.ac (build_subdir): Substitute.
5428 (FORBUILD): Do not set.
5429 (all_outputs): Remove fixinc/Makefile.
5430 (default commands): Do not create links in fixinc.
5431 * mkfixinc.sh: New, from fixinc/mkfixinc.sh without
5432 the fixincludes configuration steps and substituting
5433 @FIXINCL@ in fixinc.in.
5434 * fixinc.in: New, from fixinc/fixincl.sh.
5436 * fixinc/*: Removed.
5438 2004-08-31 Joseph S. Myers <jsm@polyomino.org.uk>
5440 * attribs.c (strip_attrs): Remove.
5441 (split_specs_attrs): Move ...
5442 * c-decl.c: ... to here.
5443 * tree.h (split_specs_attrs, strip_attrs): Remove.
5444 * c-tree.h (split_specs_attrs): Declare.
5446 2004-08-31 Richard Sandiford <rsandifo@redhat.com>
5448 * read-rtl.c: Disable RTL checking.
5449 (apply_macro_to_rtx): Use XTMPL to access 'T' fields.
5451 2004-08-31 Richard Sandiford <rsandifo@redhat.com>
5453 * config/mips/mips.md (fcond): New code macro and attribute.
5454 (sunordered_[sd]f, suneq_[sd]f, sunlt_[sd]f, sunle_[sd]f)
5455 (seq_[sd]f, slt_[sd]f, sle_[sd]f): Redefine using :SCALARF and fcond.
5456 (sgt_[sd]f, sge_[sd]f): Redefine using :SCALARF.
5458 2004-08-30 Mark Mitchell <mark@codesourcery.com>
5461 2004-08-29 Mark Mitchell <mark@codesourcery.com>
5462 PR rtl-optimization/16590
5463 * gcse.c (pre_delete): Do not create invalid REG_EQUAL notes.
5465 2004-08-30 Andrew Pinski <apinski@apple.com>
5468 s/HOST_BITS_PER_WIDES_FAST_INT/HOST_BITS_PER_WIDEST_FAST_INT.
5469 * ChangeLog: Fix previous ChangeLog entry.
5472 * config.host (use_long_long_for_widest_fast_int): New, default is
5474 (ia64-*-hpux*): Enable use_long_long_for_widest_fast_int.
5475 * configure.ac: If use_long_long_for_widest_fast_int, then
5476 define USE_LONG_LONG_FOR_WIDEST_FAST_INT.
5477 * configure: Regenerate.
5478 * config.in: Regenerate.
5479 * hwint.h (HOST_WIDEST_FAST_INT, HOST_BITS_PER_WIDEST_FAST_INT):
5480 New: widest integer type supported efficiently in hardware for the
5482 * sbitmap.h (SBITMAP_ELT_BITS): Define based on
5483 HOST_BITS_PER_WIDEST_FAST_INT.
5484 (SBITMAP_ELT_TYPE): Define based on HOST_WIDEST_FAST_INT.
5485 * hard-reg-set.h (HARD_REG_ELT_TYPE): Define based on
5486 HOST_WIDEST_FAST_INT
5487 instead of HOST_WIDE_INT.
5488 (HARD_REG_SET_LONGS): Likewise.
5489 (UHOST_BITS_PER_WIDE_INT): Likewise.
5490 Change the checks for the fast cases to be based on
5491 HOST_BITS_PER_WIDEST_FAST_INT instead of HOST_BITS_PER_WIDE_INT.
5493 2004-08-30 Steven Bosscher <stevenb@suse.de>
5495 * cfgcleanup.c (merge_memattrs): Look at the value of MEM_SIZE,
5498 2004-08-30 Geoffrey Keating <geoffk@apple.com>
5504 * c-decl.c (grokdeclarator): Produce error for 'static' on local
5505 function declaration.
5507 2004-08-30 Richard Henderson <rth@redhat.com>
5509 * expr.c (array_ref_element_size): Force aligned_size back to
5511 (component_ref_field_offset): Similarly for aligned_offset.
5512 * tree.c (recompute_tree_invarant_for_addr_expr): Mark raw
5513 low-bound, element-size, field-offset fields rather than
5516 2004-08-30 Joseph S. Myers <jsm@polyomino.org.uk>
5518 * c-parse.in (parmlist_or_identifiers_1): Remove unreachable and
5521 2004-08-30 Joseph S. Myers <jsm@polyomino.org.uk>
5523 * c-tree.h (struct language_function): Add arg_info element.
5524 * c-decl.c (current_function_arg_info): New.
5525 (grokdeclarator, store_parm_decls): Use it instead of
5527 (c_push_function_context, c_pop_function_context): Save and
5530 2004-08-30 Richard Henderson <rth@redhat.com>
5532 * c-typeck.c (build_unary_op): Don't expand ADDR_EXPR of a
5533 COMPONENT_REF to pointer arithmetic.
5534 * varasm.c (initializer_constant_valid_p): Allow "&(*c).f", for
5535 constant "c" as a valid constant initializer. Allow narrowing of
5536 differences against the same base object, for any base object.
5538 2004-08-30 Richard Henderson <rth@redhat.com>
5540 * expr.c (expand_expr_addr_expr): New.
5541 (expand_expr_real_1) <case ADDR_EXPR>: Use it.
5543 2004-08-30 Richard Sandiford <rsandifo@redhat.com>
5545 * config/mips/mips.c (MIPS_FP_CONDITIONS): New macro.
5546 (mips_fp_condition): New enum.
5547 (mips_fp_conditions): New array.
5548 (print_fcc_operand): Delete.
5549 (print_operand): Remove %V, %v and %Q. Redefine %Z so that it prints
5550 the operand and comma if and only if ISA_HAS_8CC. Add %Y.
5551 (builtin_description): Add "cond" field.
5552 (DIRECT_BUILTIN): Initialize it.
5553 (CMP_{SCALAR,PS,4S}_BUILTINS, MOVTF_BUILTINS): Split INSN parameter
5554 into INSN and CODE. Initialize the "cond" field.
5555 (CMP_BUILTINS): Update accordingly.
5556 (mips_bdesc): Use MIPS_FP_CONDITIONS to invoke CMP_BUILTINS.
5557 (mips_expand_builtin_movtf, mips_expand_builtin_compare): Take the
5558 mips_fp_condition as argument. Make it the final operand of the
5559 comparison instruction.
5560 (mips_expand_builtin): Update accordingly.
5561 * config/mips/mips.md (UNSPEC_C_*, UNSPEC_CABS_*): Delete.
5562 (UNSPEC_C, UNSPEC_CABS): New constants. Shuffle others to fill
5564 * config/mips/mips-ps-3d.md (mips_cond_move_tf_ps, bc1any[24][ft]):
5565 Don't use the 'Q' operand prefix; just print the operand normally.
5566 (mips_cabs_*, mips_c_*): Delete, replacing with...
5567 (mips_c_cond_{ps,4s}, mips_cabs_cond_{s,d,ps,4s}): ...these new
5568 patterns. Split the 4s versions into 2 ps patterns after reload.
5570 2004-08-30 Richard Henderson <rth@redhat.com>
5572 * fold-const.c (tree_expr_nonzero_p): Use get_base_address before
5573 assuming an ADDR_EXPR is non-null.
5575 2004-08-30 Jason Merrill <jason@redhat.com>
5577 * gthr-posix.h, gthr-dce.h: Add #pragma weaks.
5579 2004-08-30 Nathan Sidwell <nathan@codesourcery.com>
5581 * alias.c (mems_in_disjoint_alias_sets_p, record_alias_subset,
5582 record_set, rtx_equal_for_memref_p, init_alias_analysis): Use
5583 gcc_assert and gcc_unreachable instead of abort.
5584 * alloc-pool.c (abort, fancy_abort): Remove.
5585 (create_alloc_pool, free_alloc_pool, pool_alloc, pool_free): Use
5586 gcc_assert or gcc_unreachable.
5587 * attribs.c (init_attributes, decl_attributes): Likewise.
5588 * bb-reorder.c (FREE, find_traces_1_round, copy_bb,
5589 mark_bb_for_unlikely_executed_section,
5590 add_labels_and_missing_jumps, fix_crossing_conditional_branches,
5591 fix_crossing_unconditional_branches): Likewise.
5592 * bitmap.c (bitmap_first_set_bit, bitmap_last_set_bit,
5593 bitmap_operation): Likewise.
5594 * bt-load.c (insn_sets_btr_p, augment_live_range,
5595 move_btr_def): Likewise.
5596 * builtins.c (c_readstr, expand_builtin_longjmp, apply_args_size,
5597 apply_result_size, expand_builtin_apply, expand_builtin_mathfn,
5598 expand_builtin_mathfn_2, expand_builtin_mathfn_3,
5599 builtin_memcpy_read_str, expand_movstr, expand_builtin_stpcpy,
5600 expand_builtin_memcmp, expand_builtin_args_info,
5601 std_gimplify_va_arg_expr, expand_builtin_unop,
5602 expand_builtin_fputs, expand_builtin_profile_func,
5603 expand_builtin_fork_or_exec, fold_builtin_bitop,
5604 fold_builtin_classify, fold_builtin_fputs): Likewise.
5606 2004-08-30 Nathan Sidwell <nathan@codesourcery.com>
5608 * gcov-io.c (GCOV_CHECK): Use gcc_assert when available.
5609 * gcov.c (abort): Remove undef.
5611 * tree.h (BINFO_PRIMARY_BASE_OF): Remove.
5612 (struct tree_binfo): Remove primary field.
5614 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
5616 * fixinc/Makefile.in (machname.h): Remove.
5617 (fixincl.x): Do not pass $@ to genfixes.
5618 * fixinc/genfixes: Remove code to produce machname.h.
5619 * fixinc/fixincl.sh: Move it here instead.
5620 * fixinc/fixlib.c: Do not conditionalize on MN_NAME_PAT's presence,
5621 instead check if pz_mn_name_pat is NULL. Make mn_get_regexps
5622 return a bool indicating whether pz_mn_name_pat is NULL.
5623 * fixinc/fixlib.h: Do not conditionalize on MN_NAME_PAT's presence.
5624 Declare extern C variables for the ENV_TABLE.
5625 * fixinc/fixfixes.c: Do not conditionalize on MN_NAME_PAT's presence,
5626 instead use the result of mn_get_regexps.
5627 * fixinc/fixtests.c: Likewise.
5629 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
5631 * configure.ac: Do not run fixincludes after stage1 during
5633 * configure: Regenerate.
5635 2004-08-30 Richard Earnshaw <rearnsha@arm.com>
5637 * sched-deps.c (get_condition): Partially revert previous, by never
5638 trying to extract the condition from a condjump.
5640 2004-08-30 Nathan Sidwell <nathan@codesourcery.com>
5642 * c-common.c (c_sizeof_or_alignof_type): Use gcc_assert.
5643 (handle_visibility_attribute, c_determine_visibility): Likewise.
5644 * c-common.h (my_friendly_assert): Remove.
5646 2004-08-30 Richard Sandiford <rsandifo@redhat.com>
5648 * config/mips/mips.md (UNSPEC_{RSQRT,RECIP}[12]_{S,D,PS}): Delete.
5649 (UNSPEC_{RSQRT,RECIP}[12]): New constants.
5650 (UNSPEC_MOVE_TF_PS): Renumber to avoid gaps.
5651 * config/mips/mips-ps-3d.md (*movcc_v2sf_[sd]i): Use :GPR.
5652 (mips_{rsqrt,recip}[12]_{s,d,ps}): Use :ANYF.
5654 2004-08-30 Diego Novillo <dnovillo@redhat.com>
5656 * tree-pretty-print.c (dump_generic_node): Handle VALUE_HANDLE
5657 in COMPONENT_REF nodes.
5659 2004-08-29 Gabriel Dos Reis <gdr@integrable-solutions.net>
5662 * c-opts.c (c_common_handle_option): <case OPT_Werror> set
5663 global_dc->warning_as_error_requested.
5664 * diagnostic.c (diagnostic_initialize): Tidy.
5665 * diagnostic.h (diagnostic_context::x_data): Remove
5666 (diagnostic_context::issue_warnings_are_errors_message): Rename
5667 from warnings_are_errors_message.
5668 (diagnostic_context::warning_as_error_requested): New.
5670 2004-08-30 Richard Earnshaw <rearnsha@arm.com>
5672 * sched-deps.c (get_condition): Fix breakage in previous patch.
5674 2004-08-30 Paul Brook <paul@codesourcery.com>
5676 * doc/install.texi: Fix broken mpfr link.
5678 2004-08-29 David O'Brien <obrien@FreeBSD.org>
5680 * config/rs6000/sysv4.h (LINK_OS_FREEBSD_SPEC): Sync '-p' handling with
5681 other FreeBSD platforms.
5683 2004-08-29 Richard Earnshaw <rearnsha@arm.com>
5685 * arm.h (REVERSE_CONDITION): Define.
5686 (REVERSIBLE_CC_MODE): All comparisons are now reversible.
5688 2004-08-29 Richard Earnshaw <rearnsha@arm.com>
5690 * flow.c (REVERSE_CONDEXEC_PREDICATES_P): Use the whole comparison, not
5691 just the codes, call reversed_comparison_code ().
5692 (ior_reg_cond): Update arguments to REVERSE_CONDEXEC_PREDICATES_P.
5693 (not_reg_cond): Use reversed_comparison_code.
5694 (and_reg_cond): Likewise.
5695 * ifcvt.c (cond_exec_process_if_block): Likewise.
5696 * doc/tm.texi (REVERSE_CONDEXEC_PREDICATES_P): Update documentation.
5698 2004-08-29 Richard Earnshaw <rearnsha@arm.com>
5700 * sched-deps.c (get_condition): Rewrite using jump support functions.
5701 Use reversed_comparison_code.
5702 (conditions_mutex_p): Use reversed_comparison_code.
5704 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5706 * config/mips/mips.c (override_options): Disable hot/cold partitioning
5709 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5711 * config/mips/mips.h (mips_builtins, mips_cmp_choice): Delete.
5712 (mips_function_type): Move to mips.c.
5713 * config/mips/mips.c (mips_builtin_type): New enum.
5714 (builtin_description): Replace code and ftype with builtin_type
5716 (DIRECT_BUILTIN, CMP_SCALAR_BUILTINS, CMP_PS_BUILTINS, CMP_4S_BUILTINS)
5717 (MOVTF_BUILTINS, CMP_BUILTINS): New macros.
5718 (CODE_FOR_mips_abs_ps): Define.
5719 (mips_bdesc): Use new macros.
5720 (mips_expand_builtin): Use builtin_type. Update calls to subroutines.
5721 (mips_init_builtins): Use the mips_bdesc[] index as the function code.
5722 (mips_expand_builtin_direct): New function.
5723 (mips_expand_builtin_movtf): Renamed from mips_expand_ps_cond_move_
5724 builtin. Replace boolean parameter with builtin_type.
5725 (mips_expand_compare_builtin, mips_expand_scalar_compare_builtin)
5726 (mips_expand_4s_compare_builtin): Delete, replacing with...
5727 (mips_expand_builtin_compare): ...this new function.
5729 2004-08-29 Mark Mitchell <mark@codesourcery.com>
5731 PR rtl-optimization/16590
5732 * gcse.c (pre_delete): Do not create invalid REG_EQUAL notes.
5734 2004-08-29 Diego Novillo <dnovillo@redhat.com>
5736 * tree-ssa-ccp.c (ccp_visit_stmt): Remove #if 0 guards.
5737 * tree-ssa-propagate.c: Fix documentation.
5739 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5741 * config/mips/mips.md (*mov[sd]f_on_*): Redefine using :SCALARF.
5742 (mov[sd]fcc): Likewise.
5744 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5746 * config/mips/mips.md (cmp[sd]f): Redefine using :SCALARF.
5748 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5750 * config/mips/mips.md (divide_condition): New mode attribute.
5751 (div[sd]f3, *div[sd]f3): Use it. Redefine using :SCALARF.
5752 (sqrt[sd]f3): Redefine using SCALARF.
5753 (*recip[sd]f3, *rsqrt<mode>[ab]): Likewise. Name formerly unnamed
5756 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5758 * config/mips/mips.md (ANYF, SCALARF): New mode macros.
5759 (loadx, storex, fmt, UNITMODE): New mode attributes.
5760 (add{sf,df,v2sf}3, sub{sf,df,v2sf}3): Redefine using :ANYF.
5761 (mul[sd]f3): Redefine using :SCALARF.
5762 (*mul[sd]f3): Renamed from mul[sd]f3_internal. Use :SCALARF.
5763 (*mul[sd]3_r4300): Likewise mul[sd]f3_r4300.
5764 (*m{add,sub}{sf,df,v2sf}3): Name formerly unnamed patterns. Use :ANYF.
5765 Check TARGET_FUSED_MADD for V2SF too.
5766 (*nm{add,sub}{sf,df,v2sf}3{,_fastmath}): Likewise, except v2sf patterns
5768 (abs{sf,df,v2sf}3, neg{sf,df,v2sf}3): Redefine using :ANYF.
5769 (*[sl][wd]xc1_[sd]i): Redefine using :ANYF.
5771 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5773 * config/mips/mips.c (mips_init_builtins): Simplify. Only create
5774 V2SF_type_node if it will be needed.
5776 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5778 * config/mips/mips.h (MIPS_CMP_MOVT, MIPS_CMP_MOVF): Delete.
5779 * config/mips/mips.c (mips_prepare_builtin_arg): New function.
5780 (mips_prepare_builtin_target): New function.
5781 (mips_expand_builtin): Use them. Update calls to subroutines.
5782 (mips_expand_ps_cond_move_builtin): Use the new functions. Replace
5783 cmp_choice with a boolean argument to select between movt and movf.
5784 Take the comparison's icode as an argument, not the function's fcode.
5785 (mips_expand_compare_builtin): New function. Rename existing function
5786 to mips_expand_scalar_compare_builtin.
5787 (mips_expand_scalar_compare_builtin, mips_expand_4s_compare_builtin)
5788 (mips_expand_ps_compare_builtin): Use the new functions. Take the
5789 comparison's icode as an argument, not the builtin's fcode.
5791 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5793 * config/mips/mips.c (print_operand): Remove '%Y' and '%y'.
5794 (mips_expand_4s_compare_builtin): Redefine CCV4 to be 0 if all
5795 registers are false and -1 if all registers are true.
5796 (mips_expand_ps_compare_builtin): Likewise CCV2. Use subregs for
5797 MIPS_CMP_UPPER and MIPS_CMP_LOWER.
5798 * config/mips/mips.md (mips_cond_move_tf_ps): Use %Q rather than %y.
5799 (bc1any4t, bc1any4f): Adjust for new CCV4 interpretation.
5800 (bc1any2t, bc1any2f): Likewise CCV2.
5801 (bc1upper2t, bc1lower2t, bc1upper2f, bc1lower2f): Delete.
5803 2004-08-29 Richard Sandiford <rsandifo@redhat.com>
5805 * config/mips/mips.md (UNSPEC_MOVE_TF_PS): New.
5806 * config/mips/mips-ps-3d.md (mips_cond_move_tf_ps): Express as an
5807 UNSPEC rather than an IF_THEN_ELSE.
5808 * config/mips/mips.c (mips_expand_ps_cond_move_builtin): Emit
5809 mips_cond_move_tf_ps by name.
5811 2004-08-29 Chao-ying Fu <fu@mips.com>
5812 James E Wilson <wilson@specifixinc.com>
5814 * config/mips/mips-modes.def (V2SF, CCV2, CCV4): New modes. Give CCV2
5815 8 byte size and alignment. Give CCV4 16 byte size and alignment.
5816 * config/mips/mips-ps-3d.md: New file.
5817 * config/mips/mips.c (TARGET_VECTOR_MODE_SUPPORTED_P,
5818 TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN): Define.
5819 (mips_const_insns): Handle CONST_VECTOR the same as CONST_DOUBLE.
5820 (mips_output_move): Emit "mov.ps" for V2SFmode.
5821 (mips_arg_info): Add checks for VECTOR_FLOAT_TYPE_P and
5823 (override_options): Check if TARGET_MIPS3D and there was an explicit
5824 !TARGET_PAIRED_SINGLE_FLOAT. Set MASK_PAIRED_SINGLE, if TARGET_MIPS3D.
5825 Check if TARGET_FLOAT64 and TARGET_HARD_FLOAT are both true, when
5826 TARGET_PAIRED_SINGLE_FLOAT is true. Check if the ISA supports
5827 TARGET_PAIRED_SINGLE_FLOAT. Allow MODE_VECTOR_FLOAT in fp registers,
5828 and allow CCV2 and CCV4 to occupy two and four CC registers.
5829 (print_fcc_operand): New function.
5830 (print_operand): Add %Y, %y, %V, %v, %Q for CCV2, CCV4, CC. Modify
5831 %Z to call print_fcc_operand.
5832 (mips_function_value): Handle MODE_VECTOR_FLOAT.
5833 (mips_class_max_nregs): Check for ST_REGS, and handle CCmodes.
5834 (mips_vector_mode_supported_p): New function.
5835 (mips_hard_regno_nregs): Check for ST_REG_P, and handle CCmodes.
5836 (builtin_description): New struct.
5837 (mips_bdesc): New array of struct builtin_description.
5838 (mips_expand_builtin, mips_init_builtins,
5839 mips_expand_ps_cond_move_builtin, mips_expand_4s_compare_builtin,
5840 mips_expand_compare_builtin, mips_expand_ps_compare_builtin): New
5842 * config/mips/mips.h (MASK_PAIRED_SINGLE, MASK_MIPS3D): New defines.
5843 (TARGET_PAIRED_SINGLE_FLOAT, TARGET_MIPS3D): New defines.
5844 (TARGET_CPU_CPP_BUILTINS): Add __mips_paired_single_float.
5845 (TARGET_SWITCHES): Added "-mpaired-single", "-mno-paired-single",
5846 "-mips3d", and "-mno-mips3d".
5847 (ASM_SPEC): Map -mips3d to -mips3d in gas.
5848 (EXTRA_CONSTRAINT_Y): New macro.
5849 (EXTRA_CONSTRAINT_STR): Renamed from EXTRA_CONSTRAINT. Add new
5850 multi-letter constraint 'Y'.
5851 (CONSTRAINT_LEN): New macro.
5852 (enum mips_builtins): New for MIPS builtin functions.
5853 (enum mips_function_type): New for the types of MIPS builtin functions.
5854 (enum mips_cmp_choice): New for the MIPS comparison builtin functions.
5855 * config/mips/mips.md: New constants for paired single and MIPS-3D
5856 instructions. Include the new mips-ps-3d.md file.
5857 (addv2sf3, subv2sf3, mulv2sf3, absv2sf2, negv2sf2, movv2sf,
5858 movv2sf_hardfloat_64bit): New named patterns.
5859 (madd.ps, msub.ps, nmaddv2sf, nmaddv2sf_fastmath, nmsubv2sf,
5860 nmsubv2sf_fastmath, ldxc1_v2sf_si, ldxc1_v2sf_di, sdxc1_v2sf_si,
5861 sdxc1_v2sf_di): New unnamed patterns.
5862 * config/mips/predicates.md (const_0_operand, const_1_operand): Add
5863 const_vector support.
5864 (const_0_or_1_operand): New predicate.
5865 * doc/invoke.texi (MIPS Options): Add -mpaired-single and -mips3d.
5867 2004-08-29 Diego Novillo <dnovillo@redhat.com>
5869 * Makefile.in (OBJS-common): Add tree-ssa-propagate.o
5870 (tree-ssa-propagate.o): New rule.
5871 (GTFILES): Add tree-ssa-propagate.c.
5872 * tree-flow.h (struct stmt_ann_d): Remove field
5874 * tree-ssa-propagate.c: New file.
5875 * tree-ssa-propagate.h: New file.
5876 * tree-ssa-ccp.c: Re-write to use the routines from
5877 tree-ssa-propagate.c.
5879 2004-08-28 Andrew Pinski <apinski@apple.com>
5881 * tree-ssa-loop.c: Remove extra include of basic-block.h.
5883 2004-08-28 Ziemowit Laski <zlaski@apple.com>
5885 * c-common.h: Update comments about ObjC/ObjC++ entry points.
5886 (objc_is_reserved_word): New prototype.
5887 (get_current_scope, objc_mark_locals_volatile): Move prototypes to
5888 separate section; these are call-backs.
5889 * c-lex.c (c_lex_with_flags): Call objc_is_reserved_word() to detect
5890 ObjC/ObjC++ "@" keywords.
5891 * c-tree.h (get_current_scope, objc_mark_locals_volatile): Remove
5892 prototypes; they already live in c-common.h.
5893 * stub-objc.c: Update copyright notice.
5894 (objc_is_reserved_word): New stub.
5896 2004-08-28 Nathan Sidwell <nathan@codesourcery.com>
5898 * system.h (gcc_assert): Remove __builtin_expect. Evaluate EXPR
5899 even when not checking.
5901 2004-08-27 Jason Merrill <jason@redhat.com>
5904 * gimplify.c (gimplify_cleanup_point_expr): Handle CLEANUP_EH_ONLY.
5905 (gimple_push_cleanup): Add eh_only parm.
5906 (gimplify_target_expr): Pass it.
5907 * c.opt (-fno-threadsafe-statics): New option.
5908 * c-opts.c (c_common_handle_option): Handle it.
5909 * c-common.h (flag_threadsafe_statics): Declare it.
5910 * c-common.c (flag_threadsafe_statics): Record it.
5911 * doc/invoke.texi: Document it.
5912 * tsystem.h (_GNU_SOURCE): Define.
5913 * gthr-posix.h (__gthread_recursive_mutex_t): New typedef.
5914 (__GTHREAD_RECURSIVE_MUTEX_INIT): New macro.
5915 (__GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION): New macro.
5916 (__gthread_recursive_mutex_init_function): New fn.
5917 (__gthread_recursive_mutex_lock): New fn.
5918 (__gthread_recursive_mutex_trylock): New fn.
5919 (__gthread_recursive_mutex_unlock): New fn.
5920 * gthr-solaris.h, gthr-single.h, gthr-dce.h: Likewise.
5921 * gthr-win32.h, gthr-vxworks.h: Likewise.
5924 2004-08-27 David Edelsohn <edelsohn@gnu.org>
5926 * config/rs6000/rs6000.c (rs6000_override_options): Increase
5927 maximum skip to 15. Set function alignment, jump alignment, and
5928 loop alignment to 16 for processors that form dispatch groups.
5929 (rs6000_rtx_costs): outer_code is used.
5931 2004-08-27 Nathan Sidwell <nathan@codesourcery.com>
5933 * stor-layout.c (sizetype_set): Remove.
5934 (set_sizetype): Don't test or set it.
5936 * tree.h (size_int_type): Remove.
5937 * fold-const.c: Do not #include gt-fold-const.h.
5938 (size_htab_hash, size_htab_eq): Remove.
5939 (size_int_kind): Use build_int_cst.
5940 (new_const, size_htab): Remove.
5941 (size_int_type): Remove.
5942 (round_up): Use build_int_cst.
5943 (round_down): Likewise. Remove spurious constant build.
5945 2004-08-27 Nathan Sidwell <nathan@codesourcery.com>
5947 * configure.ac: Add ENABLE_ASSERT_CHECKING control.
5948 Add is_release variable, use it for --enable-werror and
5949 --enable-checking defaults.
5950 * system.h (gcc_assert, gcc_unreachable): New.
5951 * doc/install.texi (--enable-checking): Update.
5952 * configure, config.in: Rebuilt.
5954 2004-08-26 Richard Sandiford <rsandifo@redhat.com>
5956 * rtl.h (read_rtx): Change prototype.
5957 * read-rtl.c (read_rtx): Provide the caller with both an rtx and a
5958 line number. Return true on success.
5959 * gensupport.c (process_include, init_md_reader_args_cb): Adjust
5960 callers accordingly.
5962 2004-08-26 Richard Henderson <rth@redhat.com>
5964 * c-typeck.c (build_offsetof): Remove.
5965 * c-tree.h (build_offsetof): Remove.
5966 * c-common.c (fold_offsetof_1, fold_offsetof): New.
5967 * c-common.h (fold_offsetof): Declare.
5968 * c-parse.in (offsetof_base): New.
5969 (offsetof_member_designator): Use it. Build references, not just
5971 (primary): Use fold_offsetof, not build_offsetof.
5973 2004-08-26 Richard Henderson <rth@redhat.com>
5975 * tree.c (staticp): Return the static object.
5976 * tree.h (staticp): Update decl.
5977 * langhooks.h (struct lang_hooks): Change staticp return type to tree.
5978 * langhooks.c (lhd_staticp): Return NULL_TREE.
5979 * langhooks-def.h (lhd_staticp): Update decl.
5980 * c-common.c (c_staticp): Return the static object.
5981 * c-common.h (c_staticp): Update decl.
5983 2004-08-26 Richard Henderson <rth@redhat.com>
5985 * config/alpha/alpha.h (HARD_REGNO_MODE_OK): Allow complex float
5988 2004-08-26 Joseph S. Myers <jsm@polyomino.org.uk>
5991 * c-decl.c (struct c_binding): Add type and inner_comp fields.
5992 (bind): Set type and inner_comp fields.
5993 (pop_scope): Restore type of decl to the correct type from an
5994 outer scope. Give error when popping file scope for incomplete
5995 arrays completed incompatibly with default initialization in an
5997 (diagnose_mismatched_decls): Handle externs with initializers at
5999 (pushdecl): Set type of external declaration at block scope based
6000 only on the visible declarations. Save type when changing the
6001 type of a declaration. Merge an external declaration at block
6002 scope with a visible static declaration at file scope.
6003 (implicitly_declare): Give recycled old declaration the new type
6004 except for incompatible declarations of built-in functions, saving
6007 2004-08-26 Ziemowit Laski <zlaski@apple.com>
6009 * c-parse.in (OBJC_TYPE_QUAL): New %token for ObjC use.
6011 2004-08-26 Daniel Berlin <dberlin@dberlin.org>
6013 * tree-alias-common.c (gate_pta): New function.
6014 (pass_build_pta): Use it.
6015 (pass_del_pta): Use it.
6016 (delete_alias_vars): Don't check flag_tree_points_to.
6018 2004-08-26 Fariborz Jahanian <fjahanian@apple.com>
6020 * config/rs6000/rs6000.h (HARD_REGNO_CALL_PART_CLOBBERED): Added
6021 TFmode as additional register mode cloberred by call.
6023 2004-08-26 Fariborz Jahanian <fjahanian@apple.com>
6025 * config/rs6000/rs6000.c (rs6000_libcall_value): Generate
6026 parallel pattern for library call returning DImode in
6029 2004-08-26 Fariborz Jahanian <fjahanian@apple.com>
6031 * config/rs6000/rs6000.c (function_arg): Generate parallel
6032 pattern for more split args.
6034 2004-08-26 Fariborz Jahanian <fjahanian@apple.com>
6036 * config/rs6000/rs6000.c (rs6000_split_multireg_move): Call
6037 either gen_movdi_di_update or gen_movdi_si_update depending on
6039 * config/rs6000/rs6000.md (movdi_update): Changed to movdi_<mode>_update,
6040 to generate two versions.
6042 2004-08-26 Daniel Berlin <dberlin@dberlin.org>
6044 * Makefile.in (lambda-code.o): New.
6045 (lambda-trans.o): Ditto.
6046 (TREE_DATA_REF_H): Ditto.
6048 (lambda-mat.o): Use LAMBDA_H.
6049 (tree-data-ref.o): Ditto.
6050 * lambda-code.c: New file. Lambda code generation algorithm.
6051 * lambda-trans.c: Ditto. Lambda transformation matrix support.
6052 * lambda.h: Add lambda loop structures.
6053 Add lambda loopnest structures.
6054 Add lambda body vector structure.
6055 Add lambda linear expression structures.
6056 Add prototypes for functions in new files.
6057 * lambda-mat.c: Include tree.h
6059 2004-08-26 Daniel Berlin <dberlin@dberlin.org>
6060 Sebastian Pop <pop@cri.ensmp.fr>
6062 * tree-data-ref.h: Include lambda.h
6063 (free_dependence_relation): Declared here.
6064 (free_dependence_relations): Ditto.
6065 (free_data_refs): Ditto.
6066 * tree-data-ref.c (free_dependence_relation): New function.
6067 (free_dependence_relations): Ditto.
6068 (free_data_refs): Ditot.
6069 (analyze_all_data_dependences): Free datarefs and dependence_relations.
6070 (build_classic_dist_vector): Store in the dependence_relations the
6071 information. Each arc in the dependence_relations graph is labelled
6072 with the distance and direction vectors.
6073 (build_classic_dir_vector): Ditto.
6074 (compute_rw_wr_ww_dependences): Renamed again compute_all_dependences.
6075 Now computes again the whole dependence graph including read-read
6077 (compute_data_dependences_for_loop): Now dependence_relations contains
6078 all the data, and thus it doesn't need to initialize the classic_dir
6079 and classic_dist vectors.
6080 (analyze_all_data_dependences): Adjusted for using the new interface of
6081 compute_data_dependences_for_loop. Remove the statistics dump.
6083 2004-08-26 Bob Wilson <bob.wilson@acm.org>
6085 * config/xtensa/xtensa.c (xtensa_ld_opcodes, xtensa_st_opcodes): Delete.
6086 (xtensa_expand_block_move): Update comment.
6087 (override_options): Remove initialization of xtensa_{ld,st}_opcodes.
6089 2004-08026 Richard Earnshaw <rearnsha@arm.com>
6092 * toplev.c (crash_signal): If we crashed while emitting
6093 a user asm, then die more gracefully.
6095 2004-08-26 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6098 * config/m32r.c (gen_compare): Use reg_or_int16_operand when
6099 checking for a valid constant, regardless of sign.
6101 2004-08-25 Richard Henderson <rth@redhat.com>
6104 * config/alpha/alpha.md (adddi_fp_hack): Don't rely on splitting
6105 if the constant satisfies add_operand.
6107 2004-08-25 Richard Henderson <rth@redhat.com>
6110 * config/alpha/alpha.c (emit_frame_store_1, emit_frame_store): New.
6111 (alpha_expand_prologue): Handle >32-bit frames. Generate proper
6112 unwind info for >16-bit frames.
6114 2004-08-25 Richard B. Kreckel <richard.kreckel@framatome-anp.com>
6117 * config/i386/gas.h (ASM_COMMENT_START): Define to "#".
6119 2004-08-25 Richard Henderson <rth@redhat.com>
6121 * config/alpha/alpha.c (alpha_cannot_force_const_mem): New.
6122 (TARGET_CANNOT_FORCE_CONST_MEM): New.
6124 2004-08-25 Andrew MacLeod <amacleod@redhat.com>
6126 * doc/tree-ssa.texi: Document new operand iterator.
6128 2004-08-26 Alan Modra <amodra@bigpond.net.au>
6131 * config/rs6000/rs6000.c (rs6000_split_multireg_move): Don't abort
6132 on "(mem (symbol_ref ..))" rtl. Look at LO_SUM base regs as well
6135 2005-08-28 Paul Brook <paul@codesourcery.com>
6137 * config/arm/symbian.h (SUBTARGET_ASM_FLOAT_SPEC): Default to
6138 -mfpu=vfp -march=armv5t
6139 * config/arm/t-symbian: Change multilib to mfloat-abi=softfp.
6141 2004-08-25 Richard Henderson <rth@redhat.com>
6143 * target-def.h (TARGET_SCALAR_MODE_SUPPORTED_P): New.
6144 * target.h (struct gcc_target): Add scalar_mode_supported_p.
6145 * targhooks.c (default_scalar_mode_supported_p): New.
6146 * targhooks.h (default_scalar_mode_supported_p): Declare.
6147 * doc/tm.texi (TARGET_SCALAR_MODE_SUPPORTED_P): Document.
6149 * c-common.c (handle_mode_attribute): Query scalar_mode_supported_p
6150 before attempting to create types. Tidy.
6151 * expr.c (vector_mode_valid_p): Use scalar_mode_supported_p.
6153 * config/alpha/alpha.c (alpha_scalar_mode_supported_p): New.
6154 (TARGET_SCALAR_MODE_SUPPORTED_P): New.
6156 2004-08-25 Richard Henderson <rth@redhat.com>
6158 * config/i386/freebsd.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
6159 set REAL_MODE_FORMAT for TFmode.
6161 2004-08-25 Ziemowit Laski <zlaski@apple.com>
6163 * c-decl.c (grokparm): New function.
6164 * c-tree.h (grokparm): New prototype.
6166 2004-08-25 Andrew MacLeod <amacleod@redhat.com>
6168 * tree-ssa-operands.h (struct ssa_operand_iterator_d): New. SSA operand
6169 iterator controlling structure.
6170 (SSA_OP_USE, SSA_OP_DEF, SSA_OP_VUSE, SSA_OP_VMAYUSE, SSA_OP_VMAYDEF,
6171 SSA_OP_VMUSTDEF, SSA_OP_VIRTUAL_USES, SSA_OP_VIRTUAL_DEFS,
6172 SSA_OP_ALL_USES, SSA_OP_ALL_DEFS, SSA_OP_ALL_OPERANDS): New. Operand
6174 (FOR_EACH_SSA_TREE_OPERAND): New. Iterate over operands as trees.
6175 (FOR_EACH_SSA_USE_OPERAND): New. Iterate over operands as uses.
6176 (FOR_EACH_SSA_DEF_OPERAND): New. Iterate over operands as defs.
6177 (FOR_EACH_SSA_MAYDEF_OPERAND): New. Iterate over V_MAY_DEFs.
6178 * tree-ssa-operands.c (NULL_DEF_OPERAND_P, NULL_USE_OPERAND_P): New.
6179 Empty operand pointers.
6180 * tree-flow-inline.h (op_iter_done): New. Return true if finished.
6181 (op_iter_next_use): New. Return next use_operand_p.
6182 (op_iter_next_def): New. Return next def_operand_p.
6183 (op_iter_next_tree): New. Return next operands as a tree.
6184 (op_iter_init): New. Initialize an iterator structure.
6185 (op_iter_init_use): New. Initialize structure and get the first use.
6186 (op_iter_init_def): New. Initialize structure and get the first def.
6187 (op_iter_init_tree): New. Initialize structure and get the first tree.
6188 (op_iter_next_maydef): New. Return next V_MAY_DEF operands.
6189 (op_iter_init_maydef): New. Initialize structure and get the first
6191 * tree-cfg.c (tree_duplicate_bb): Use new operand iterator.
6192 * tree-dfa.c (compute_immediate_uses_for_stmt,
6193 redirect_immediate_uses): Use new operand iterator.
6194 (v_may_defs_disappeared_p, v_must_defs_disappeared_p): Delete.
6195 (mark_new_vars_to_rename): Use new operand iterator. Count virtual
6196 operands instead of using *_disappeared_p routines.
6197 * tree-into-ssa.c (mark_def_sites, ssa_mark_def_sites, rewrite_stmt,
6198 ssa_rewrite_stmt): Use new operand iterator.
6199 * tree-outof-ssa.c (check_replaceable, find_replaceable_in_bb,
6200 rewrite_trees): Use new operand iterator.
6201 * tree-pretty-print.c (dump_vops): Use new operand iterator.
6202 * tree-sra.c (mark_all_v_defs): Use new operand iterator.
6203 * tree-ssa-alias.c (compute_points_to_and_addr_escape,
6204 dump_points_to_info): Use new operand iterator.
6205 * tree-ssa-ccp.c (cp_lattice_meet, visit_stmt, initialize,
6206 replace_uses_in, replace_vuse_in, likely_value, set_rhs): Use new
6208 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary,
6209 propagate_necessity): Use new operand iterator.
6210 * tree-ssa-dom.c (cprop_into_stmt, optimize_stmt): Use operand iterator.
6211 (register_definitions_for_stmt): Use new operand iterator. Take stmt as
6212 a parameter instead of a stmt_ann_t.
6213 * tree-ssa-live.c (create_ssa_var_map, calculate_live_on_entry,
6214 build_tree_conflict_graph): Use new operand iterator.
6215 * tree-ssa-loop-im.c (determine_max_movement, single_reachable_address,
6216 rewrite_mem_refs): Use new operand iterator.
6217 * tree-ssa-loop-manip.c (find_uses_to_rename_stmt,
6218 check_loop_closed_ssa_use): Use new operand iterator.
6219 * tree-ssa.c (verify_ssa, replace_immediate_uses): Use operand iterator.
6220 * tree-ssanames.c (release_defs): Use new operand iterator.
6221 * tree-vectorizer.c (vect_create_data_ref): Use new operand iterator.
6223 2004-08-25 Adam Nemet <anemet@lnxw.com>
6225 * tlink.c (initial_cwd): New variable.
6226 (tlink_init): Initialize it.
6227 (recompile_files): Use tlink_execute() instead of system(). Don't
6228 duplicate verbose output of collect_execute. Restore initial_cwd.
6229 Update comment before the function.
6231 2004-08-25 Ziemowit Laski <zlaski@apple.com>
6233 * c-typeck.c (build_c_cast): In ObjC, always preserve (and silently
6234 accept) a cast from one Objective-C pointer type to another.
6236 2004-08-25 Paolo Carlini <pcarlini@suse.de>
6238 * doc/install.texi: Document that libstdc++-v3 requires
6241 2004-08-25 Caroline Tice <ctice@apple.com>
6243 * bb-reorder.c (partition_hot_cold_basic_blocks): Add more details
6244 to comments at start of function.
6245 * cfgbuild.c (make_edges): Add more details to hot/cold partitioning
6247 * cfgcleanup.c (try_simplify_condjump, try_forward_edges,
6248 merge_blocks_move_predecessor_nojumps,
6249 merge_blocks_move_successor_nojumps, merge_blocks_move,
6250 try_crossjump_to_edge, try_crossjump_bb): Likewise.
6251 * cfglayout.c (fixup_reorder_chain): Likewise.
6252 * cfgrtl.c (rtl_can_merge_blocks, try_redirect_by_replacing_jump,
6253 cfg_layout_can_merge_blocks_p): Likewise.
6254 * ifcvt.c (find_if_case_1, find_if_case_2): Likewise.
6255 * passes.c (rest_of_compilation): Update comments for calling
6256 optimization that partitions hot/cold basic blocks.
6257 * doc/invoke.texi: Update documentation of
6258 freorder-blocks-and-partition flag.
6260 2004-08-25 Richard Sandiford <rsandifo@redhat.com>
6262 * config/mips/mips.md (reg): Renamed mode attribute from ccreg.
6263 (*mov*_on_*): Adjust accordingly. Add an explicit MOVECC: prefix.
6265 2004-08-25 Richard Sandiford <rsandifo@redhat.com>
6267 * config/mips/mips.md (any_shift): New code macro.
6268 (optab, insn): New code attributes.
6269 ({ashl,ashr,lshr}[sd]i3): Redefine using :GPR and any_shift.
6270 Use the standard rather than internal patterns for the MIPS16
6271 double-shift optimization.
6272 (*{ashl,ashr,lshr}[sd]i3): New names for the non-mips16 shift patterns.
6273 Redefine using :GPR and any_shift.
6274 (*{ashl,ashr,lshr}si3_extend): Generalize ashlsi3_internal1_extend
6275 to cover all three shifts.
6276 (*{ashl,ashr,lshr}si3_mips16): New names for the mips16 SImode shifts.
6277 Redefine using any_shift. Use :GPR and any_shift to combine splitters.
6278 (*{ashl,ashr,lshr}di3_mips16): New names for the mips16 DImode shifts.
6280 2004-08-24 Geoffrey Keating <geoffk@apple.com>
6282 * gimplify.c (lookup_tmp_var): Separate temporaries when not
6285 2004-08-25 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6287 PR libstdc++/17005 (fix for HP-UX 11.11)
6288 * config.gcc (hppa*-*-*): Move MASK_BIG_SWITCH to target_cpu_default2.
6289 (hppa*-*-hpux*): Consolidate hppa1.0-*-* code. Rework handling of
6290 tm_file including pa-hpux1010.h or pa-hpux1111.h when appropriate.
6291 * config/pa/pa-hpux1010.h, config/pa/pa-hpux1111.h: New files.
6292 * config/pa/pa-hpux.h (TARGET_HPUX): Define.
6293 (LINK_SPEC): Handle march=1.0 option.
6294 * config/pa/pa-hpux10.h (TARGET_OS_CPP_BUILTINS): Predefine _XOPEN_UNIX
6295 and _XOPEN_SOURCE_EXTENDED for UNIX 95.
6296 (SUBTARGET_OPTIONS): New define.
6297 (LINK_SPEC): Handle march=1.0 option.
6298 (STARTFILE_SPEC): New define.
6299 * config/pa/pa-hpux11.h (TARGET_OS_CPP_BUILTINS): Predefine _XOPEN_UNIX
6300 and _XOPEN_SOURCE_EXTENDED for UNIX 95. Additionally, predefine
6301 _INCLUDE__STDC_A1_SOURCE and _INCLUDE_XOPEN_SOURCE_500 for UNIX 98.
6302 (SUBTARGET_OPTIONS): New define.
6303 (LINK_SPEC): Handle march=1.0 option.
6304 (STARTFILE_SPEC): New define.
6305 * config/pa/pa.c (override_options): Add code to process -munix= option.
6306 * config/pa/pa.h (pa_unix_string, flag_pa_unix): Declare.
6307 (TARGET_HPUX, TARGET_HPUX_10_10, TARGET_HPUX_11_11): Provide default
6309 (TARGET_OPTIONS): Add SUBTARGET_OPTIONS to option list.
6310 (SUBTARGET_OPTIONS): Provide default define.
6311 * config/pa/pa64-hpux.h (STANDARD_STARTFILE_PREFIX_1,
6312 STANDARD_STARTFILE_PREFIX_2): New defines.
6313 (STARTFILE_SPEC): Provide unix95.o or unix98.o startfiles as necessary.
6314 (ENDFILE_SPEC): Use %O.
6315 * doc/install.texi (hppa*-*-hpux*): Reword paragraph on -g and gas.
6316 Mention issue caused by changing namespace and runtime to UNIX 95/98.
6317 * doc/invoke.texi (HPPA options): Move misplaced text to FRV options.
6318 Document -munix=std option.
6320 2004-08-25 Steven Bosscher <stevenb@suse.de>
6322 * cse.c (cse_around_loop, cse_check_loop_start,
6323 cse_set_around_loop): Remove.
6324 (cse_basic_block): Remove the around_loop argument.
6325 (cse_end_of_basic_block): Remove the after_loop argument.
6326 (cse_main): Likewise.
6327 * rtl.h (cse_main): Update prototype.
6328 * passes.c (rest_of_handle_cse, rest_of_handle_cse2,
6329 rest_of_handle_gcse): Update cse_main calls.
6331 2004-08-25 Nathan Sidwell <nathan@codesourcery.com>
6333 * tree.h (build_int_cst): New, sign extended constant.
6334 (build_int_cstu): New, zero extended constant.
6335 (build_int_cst_wide): Renamed from build_int_cst.
6336 * tree.c (build_int_cst, build_int_cstu): New.
6337 (build_int_cst_wide): Renamed from build_int_cst.
6338 (make_vector_type, build_common_tree_nodes,
6339 build_common_tree_nodes_2): Adjust build_int_cst calls.
6340 * builtins.c (expand_builtin_prefetch, expand_builtin_strstr,
6341 expand_builtin_strpbrk, expand_builtin_fputs,
6342 build_string_literal, expand_builtin_printf,
6343 expand_builtin_sprintf, fold_builtin_classify_type,
6344 fold_builtin_lround, fold_builtin_bitop, fold_builtin_isascii,
6345 fold_builtin_toascii, fold_builtin_isdigit,
6346 simplify_builtin_strstr, simplify_builtin_strpbrk,
6347 fold_builtin_fputs, simplify_builtin_sprintf): Likewise.
6348 * c-common.c (start_fname_decls, fix_string_type, shorten_compare,
6349 DEF_ATTR_INT): Likewise.
6350 * c-decl.c (complete_array_type, check_bitfield_type_and_width):
6352 * c-lex.c (interpret_integer, lex_charconst): Likewise.
6353 * c-parse.in (primary) <TYPES_COMPATIBLE_P> Likewise.
6354 * c-pretty-print.c (pp_c_integer_constant): Likewise.
6355 * c-typeck.c (really_start_incremental_init, push_init_level,
6356 set_nonincremental_init_from_string): Likewise.
6357 * calls.c (load_register_parameters): Likewise.
6358 convert.c (convert_to_pointer): Likewise.
6359 coverage.c (coverage_counter_alloc, tree_coverage_counter_ref,
6360 build_fn_info_type, build_fn_info_value, build_ctr_info_value,
6361 build_gcov_info): Likewise.
6362 * except.c (init_eh, assign_filter_values): Likewise.
6363 * expmed.c (store_fixed_bit_field, extract_bit_field,
6364 extract_fixed_bit_field, extract_split_bit_field, expand_shift,
6365 expand_mult_const, expand_mult_highpart_adjust, extract_high_half,
6366 expand_sdiv_pow2, expand_divmod, make_tree): Likewise.
6367 * expr.c (convert_move, emit_group_load, emit_group_store,
6368 expand_assignment, store_constructor, store_field,
6369 expand_expr_real_1, reduce_to_bit_field_precision): Likewise.
6370 fold-const.c (force_fit_type, int_const_binop, fold_convert_const,
6371 invert_truthvalue, optimize_bit_field_compare,
6372 decode_field_reference, all_ones_mask_p, constant_boolean_node,
6373 fold_div_compare, fold, fold_read_from_constant_string,
6374 fold_negate_const, fold_abs_const, fold_not_const, round_up,
6375 round_down): Likewise.
6376 * function.c (assign_parm_setup_block): Likewise.
6377 * stmt.c (shift_return_value, expand_case, estimate_case_costs):
6379 * stor-layout.c (layout_type, initialize_sizetypes,
6380 set_min_and_max_values_for_integral_type): Likewise.
6381 * tree-chrec.c (chrec_fold_multiply_poly_poly,
6382 reset_evolution_in_loop): Likewise.
6383 * tree-chrec.h (build_polynomial_chrec): Likewise.
6384 * tree-complex.c (build_replicated_const): Likewise.
6385 * tree-eh.c (honor_protect_cleanup_actions,
6386 lower_try_finally_onedest, lower_try_finally_copy,
6387 lower_try_finally_switch): Likewise.
6388 * tree-mudflap.c (mf_build_string, mx_register_decls,
6389 mudflap_register_call, mudflap_enqueue_constant): Likewise.
6390 * tree-nested.c (get_trampoline_type, get_nl_goto_field): Likewise.
6391 * tree-pretty-print.c (dump_generic_node): Likewise.
6392 * tree-ssa-ccp.c (widen_bitfield, maybe_fold_offset_to_array_ref):
6394 * tree-ssa-dom.c (simplify_rhs_and_lookup_avail_expr): Likewise.
6395 * tree-ssa-loop-niter.c (number_of_iterations_cond,
6396 loop_niter_by_eval, upper_bound_in_type, lower_bound_in_type):
6398 * tree-ssa-loop-ivcanon.c (create_canonical_iv,
6399 canonicalize_loop_induction_variables): Likewise.
6400 * tree-vectorizer.c (vect_create_index_for_array_ref,
6401 vect_transform_loop_bound, vect_compute_data_ref_alignment):
6404 * config/alpha/alpha.c (alpha_initialize_trampoline, alpha_va_start,
6405 alpha_gimplify_va_arg_1): Likewise.
6406 * config/arm/arm.c (arm_get_cookie_size): Likewise.
6407 * config/c4x/c4x.c (c4x_gimplify_va_arg_expr): Likewise.
6408 * config/i386/i386.c (ix86_va_start, ix86_gimplify_va_arg): Likewise.
6409 * config/ia64/ia64.c (ia64_gimplify_va_arg): Likewise.
6410 * config/mips/mips.c (mips_build_builtin_va_list, mips_va_start,
6411 mips_gimplify_va_arg_expr): Likewise.
6412 * config/pa/pa.c (hppa_gimplify_va_arg_expr): Likewise.
6413 * config/rs6000/rs6000.c (rs6000_va_start, rs6000_gimplify_va_arg,
6414 add_compiler_branch_island): Likewise.
6415 * config/s390/s390.c (s390_va_start): Likewise.
6416 * config/sh/sh.c (sh_va_start): Likewise.
6417 * config/stormy16/stormy16.c (xstormy16_expand_builtin_va_start):
6419 * config/xtensa/xtensa.c (xtensa_va_start,
6420 xtensa_gimplify_va_arg_expr): Likewise.
6422 * objc/objc-act.c (build_objc_string_object,
6423 build_objc_symtab_template, init_def_list, init_objc_symtab,
6424 init_module_descriptor, generate_static_references,
6425 build_selector_translation_table, get_proto_encoding,
6426 build_typed_selector_reference, build_selector_reference,
6427 build_next_objc_exception_stuff,
6428 build_method_prototype_list_template, generate_descriptor_table,
6429 generate_protocols, build_protocol_initializer,
6430 build_ivar_list_template, build_method_list_template,
6431 build_ivar_list_initializer, generate_ivars_list,
6432 generate_dispatch_table, generate_protocol_list,
6433 build_category_initializer, build_shared_structure_initializer,
6434 generate_shared_structures, handle_impent,
6435 generate_objc_image_info): Likewise.
6437 2004-04-25 Paolo Bonzini <bonzini@gnu.org>
6439 * cfglayout.c (duplicate_insn_chain): Remove references to
6440 NOTE_INSN_LOOP_VTOP and NOTE_INSN_LOOP_CONT.
6441 * cfgloop.h (struct loop): Remove fields vtop, cont and cont_dominator.
6442 * cfgrtl.c (rtl_delete_block): Remove handling of NOTE_INSN_LOOP_CONT.
6443 * final.c (final_scan_insn): Remove references to NOTE_INSN_LOOP_VTOP
6444 and NOTE_INSN_LOOP_CONT.
6445 * insn-notes.def (NOTE_INSN_LOOP_VTOP, NOTE_INSN_LOOP_CONT): Remove.
6446 * jump.c (squeeze_notes): Remove references to NOTE_INSN_LOOP_VTOP
6447 and NOTE_INSN_LOOP_CONT.
6448 * loop.c (scan_loops, find_and_verify_loops, for_each_insn_in_loop,
6449 check_dbra_loop, loop_dump_aux): Remove references to removed notes
6451 * reorg.c (mostly_true_jump): Do not rely on NOTE_INSN_LOOP_VTOPs.
6452 * unroll.c (unroll_loop, copy_loop_body, loop_iterations): Remove
6453 references to removed notes and fields.
6454 (subtract_reg_term, ujump_to_loop_cont): Remove.
6456 2004-08-25 Paolo Bonzini <bonzini@gnu.org>
6458 * doc/install.texi: Document that libcpp does not require
6459 Automake any longer. Document that Automake 1.9.1 should
6462 2004-08-25 Zack Weinberg <zack@codesourcery.com>
6464 * flags.h (enum debug_info_type): Remove DWARF_DEBUG.
6465 * defaults.h (PREFERRED_DEBUGGING_TYPE): Remove check for
6466 DWARF_DEBUGGING_INFO from choice-of-definition chain;
6467 restructure using C89 features (#elif, #error).
6468 * c-lex.c, final.c, opts.c, config/cris/cris.c, config/frv/frv.c
6469 * config/sh/sh.h: Remove references to DWARF_DEBUG.
6470 * doc/invoke.texi: Remove references to DWARF version 1;
6471 clarify why -gdwarf-2<n> doesn't work.
6473 2004-08-25 Zack Weinberg <zack@codesourcery.com>
6475 * basic-block.h (BB_SET_PARTITION): Clear old value first.
6476 * cfg.c (clear_bb_flags): Don't clear partition setting.
6477 * ifcvt.c (find_if_case_1): Remove ??? comment.
6479 2004-08-25 Alan Modra <amodra@bigpond.net.au>
6482 * config/rs6000/rs6000.h (machine_function): Remove sysv_varargs_p.
6483 * config/rs6000/sysv4.h (RS6000_VARARGS_AREA): Use
6484 current_function_stdarg in place of sysv_varargs_p.
6485 * config/rs6000/rs6000.c (setup_incoming_varargs): Don't set
6488 2004-08-24 Richard Henderson <rth@redhat.com>
6491 * config/i386/i386.c (legitimate_constant_p): Rework to not accept
6492 random codes within CONST.
6494 2004-08-24 James E Wilson <wilson@specifixinc.com>
6496 * Makefile.in (STAGEFEEDBACK_FLAGS_TO_PASS): Remove
6497 -freorder-blocks-and-partition.
6499 2004-08-24 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6502 * tree-ssa-threadupdate.c (redirection_data): Make static.
6503 (thread_block): Use ggc_alloc_cleared to allocate struct
6504 redirection_data. Don't free elements in redirection_data.
6506 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6508 * config/mips/predicates.md (small_data_pattern): Match prefetches.
6510 2004-08-24 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
6512 PR tree-optimization/17016
6513 * tree-ssa-loop-niter.c (number_of_iterations_cond,
6514 number_of_iterations_exit): Use POINTER_TYPE_P instead
6515 of testing for POINTER_TYPE.
6517 2004-08-24 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
6519 * tree-ssa-loop-ivcanon.c: New file.
6520 * tree-ssa-loop-manip.c (create_iv): New function.
6521 * Makefile.in (tree-ssa-loop-ivcanon.o): Add.
6522 (tree-ssa-loop.o, tree-ssa-loop-manip.o): Add SCEV_H dependency.
6523 * cfgloop.c (mark_single_exit_loops): New function.
6524 (verify_loop_structure): Verify single-exit loops.
6525 * cfgloop.h (struct loop): Add single_exit field.
6526 (LOOPS_HAVE_MARKED_SINGLE_EXITS): New constant.
6527 (mark_single_exit_loops): Declare.
6528 (tree_num_loop_insns): Declare.
6529 * cfgloopmanip.c (update_single_exits_after_duplication): New function.
6530 (duplicate_loop_to_header_edge): Use it.
6531 * common.opt (fivcanon): New flag.
6532 * timevar.def (TV_TREE_LOOP_IVCANON, TV_COMPLETE_UNROLL): New timevars.
6533 * tree-cfg.c (tree_find_edge_insert_loc): Return newly created block.
6534 (bsi_commit_edge_inserts_1): Pass null to tree_find_edge_insert_loc.
6535 (bsi_insert_on_edge_immediate): New function.
6536 * tree-flow.h (bsi_insert_on_edge_immediate,
6537 canonicalize_induction_variables, tree_unroll_loops_completely,
6538 create_iv): Declare.
6539 * tree-optimize.c (init_tree_optimization_passes): Add
6540 pass_iv_canon and pass_complete_unroll.
6541 * tree-pass.h (pass_iv_canon, pass_complete_unroll): Declare.
6542 * tree-scalar-evolution.c (get_loop_exit_condition,
6543 get_exit_conditions_rec, number_of_iterations_in_loop,
6544 scev_initialize): Use single_exit information.
6545 * tree-ssa-loop-niter.c (number_of_iterations_cond): Record
6546 missing assumptions.
6547 (loop_niter_by_eval): Return number of iterations as unsigned
6549 * tree-ssa-loop.c (tree_ssa_loop_init): Mark single exit loops.
6550 (tree_ssa_loop_ivcanon, gate_tree_ssa_loop_ivcanon, pass_iv_canon,
6551 tree_complete_unroll, gate_tree_complete_unroll, pass_complete_unroll):
6553 (tree_ssa_loop_done): Call free_numbers_of_iterations_estimates.
6554 * tree-ssanames.c (make_ssa_name): Allow creating ssa name before
6555 the defining statement is ready.
6556 * tree-vectorizer.c (vect_create_iv_simple): Removed.
6557 (vect_create_index_for_array_ref, vect_transform_loop_bound):
6559 (vect_transform_loop_bound): Use single_exit information.
6560 (vect_analyze_loop_form): Cleanup bogus tests.
6561 (vectorize_loops): Do not call flow_loop_scan.
6562 * tree.h (may_negate_without_overflow_p): Declare.
6563 * fold-const.c (may_negate_without_overflow_p): Split out from ...
6564 (negate_expr_p): ... this function.
6565 (tree_expr_nonzero_p): Handle overflowed constants correctly.
6566 * doc/invoke.texi (-fivcanon): Document.
6567 * doc/passes.texi: Document canonical induction variable creation.
6569 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6571 * config/mips/mips.h (ISA_HAS_INT_CONDMOVE): Delete.
6572 * config/mips/mips.c (print_operand): Fold %B/%b handling into %T/%t,
6573 using the mode of the operand to decide between them.
6574 * config/mips/mips.md (MOVECC): New mode macro.
6575 (ccreg): New mode attribute.
6576 (*mov{si,di,sf,df}_on_{cc,si,di}): Name formerly unnamed patterns.
6577 Redefine using :GPR and :MOVECC. Use %T and %t for the condition.
6578 (mov[sd]icc): Redefine using :GPR.
6580 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6582 * config/mips/mips-protos.h (mips_emit_prefetch): Delete.
6583 (mips_prefetch_cookie): New function.
6584 * config/mips/mips.c (print_operand_address): Fix handling of
6586 (mips_emit_prefetch): Delete.
6587 (mips_prefetch_cookie): New function.
6588 * config/mips/mips.md (prefetch): Turn into a define_insn. Use a
6589 mode of QImode for the address_operand. Use mips_prefetch_cookie
6590 to calculate the first "pref" operand.
6591 (prefetch_[sd]i, prefetch_[sd]i_address): Delete.
6592 (prefetch_indexed_[sd]i): Redefine using :P. Use mips_prefetch_cookie.
6594 2004-08-24 Richard Earnshaw <rearnsha@arm.com>
6596 * arm.md: Include predicates.md.
6597 * predicates.md: New file.
6598 * arm.c (s_register_operand, arm_hard_register_operand)
6599 (arm_general_register_operand, f_register_operand, reg_or_int_operand)
6600 (arm_immediate_operand, arm_neg_immediate_operand)
6601 (arm_not_immediate_operand, arm_rhs_operand, arm_rhsm_operand)
6602 (arm_add_operand, arm_addimm_operand, arm_not_operand)
6603 (offsettable_memory_operand, alignable_memory_operand)
6604 (arm_reload_memory_operand, arm_float_rhs_operand)
6605 (arm_float_add_operand, vfp_compare_operand, arm_float_compare_operand)
6606 (index_operand, shiftable_operator, logical_binary_operator)
6607 (shift_operator, equality_operator, arm_comparison_operator)
6608 (minmax_operator, cc_register, dominant_cc_register)
6609 (arm_extendqisi_mem_op, power_of_two_operand, nonimmediate_di_operand)
6610 (di_operand, nonimmediate_soft_df_operand, soft_df_operand)
6611 (const_shift_operand, load_multiple_operation)
6612 (store_multiple_operation, multi_register_push, thumb_cmp_operand)
6613 (thumb_cmpneg_operand, thumb_cbrch_target_operand)
6614 (cirrus_register_operand, cirrus_fp_register)
6615 (cirrus_shift_const): Delete, replaced with equivalents in
6617 (shift_op): Handle ROTATE.
6618 * arm-protos.h: Delete declarations for above.
6619 * arm.h (PREDICATE_CODES, SPECIAL_MODE_PREDICATES): Delete.
6620 * t-arm (MD_INCLUDES): Add predicates.md.
6621 (s-preds): Depends on MD_INCLUDES.
6623 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6625 * config/mips/mips.c (mips_gen_conditional_trap): Fix mode.
6626 * config/mips/mips.md (*conditional_trap[sd]i): Name previously unnamed
6627 patterns. Redefine using :GPR. Give the match_operator a mode.
6628 Use '%2' rather than '%z2' for operand 2.
6630 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6632 * config/mips/mips.md (load_call[sd]i): Redefine using :P. Add mode
6635 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6637 * config/mips/mips.md (indirect_jump): Use force_reg. Adjust names
6638 of internal patterns.
6639 (indirect_jump[sd]i): Renamed from indirect_jump_internal[12].
6641 (tablejump): Use expand_binop to calculate address. Adjust names
6642 of internal patterns.
6643 (tablejump[sd]i): Renamed from tablejump_internal[12].
6645 (tablejump_mips16[12]): Delete.
6647 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6649 * config/mips/mips.md (*seq_[sd]i, *seq_[sd]i_mips16, *sne_[sd]i)
6650 (*sgt_[sd]i, *sgt_[sd]i_mips16, *sge_[sd]i, *slt_[sd]i)
6651 (*slt_[sd]i_mips16, *sle_[sd]i, *sle_[sd]i_mips16, *sgtu_[sd]i)
6652 (*sgtu_[sd]i_mips16, *sge_[sd]i, *sltu_[sd]i, *sltu_[sd]i_mips16)
6653 (*sleu_[sd]i, *sleu_[sd]i_mips16): Redefine using :GPR.
6655 2004-08-24 Richard Sandiford <rsandifo@redhat.com>
6657 * config/mips/mips.md (cmpsi, cmpdi): Redefine using :GPR.
6658 (*branch_zero[sd]i): Renamed from branch_zero{,_di}. Redefine
6660 (*branch_zero[sd]i_inverted): Likewise branch_zero{,_di}_inverted.
6661 (*branch_equality[sd]i): Likewise branch_equality{,_di}.
6662 (*branch_equality[sd]i_inverted): Likewise
6663 branch_equality{,_di}_inverted.
6664 (*branch_equality[sd]i_mips16): Name formerly unnamed patterns.
6665 Redefine using :GPR.
6667 2004-08-24 Zack Weinberg <zack@codesourcery.com>
6669 * rtl.def: Reorganize, placing all codes used only in machine
6670 descriptions at the end.
6672 * rtl.def: Wrap MD-only codes in #ifdef GENERATOR_FILE.
6673 * gengtype.c: Don't include rtl.h. Define enum rtx_code and
6674 rtx_name, rtx_format arrays by direct reference to rtl.def,
6675 first undefining GENERATOR_FILE. Define enum insn_note and
6676 note_insn_name array by direct reference to insn-notes.def.
6677 (adjust_field_rtx_def): Remove local definition of rtx_name.
6678 Use symbolic names for insn notes.
6679 * Makefile.in (gengtype.o): Update dependencies.
6681 2004-08-24 Zack Weinberg <zack@codesourcery.com>
6683 * basic-block.h (struct basic_block_def): Reorder fields to
6684 eliminate interior padding. Remove 'partition' field.
6685 (BB_DISABLE_SCHEDULE, BB_HOT_PARTITION, BB_COLD_PARTITION)
6686 (BB_UNPARTITIONED, BB_PARTITION, BB_SET_PARTITION)
6687 (BB_COPY_PARTITION): New macros.
6688 * bb-reorder.c, cfgcleanup.c, cfglayout.c, cfgrtl.c, ifcvt.c
6689 Replace all references to the 'partition' field of a basic
6690 block with new macros.
6692 * insn-notes.def: Delete NOTE_INSN_DISABLE_SCHED_OF_BLOCK.
6693 * final.c (final_scan_insn): Don't handle it.
6694 * modulo-sched.c: Set BB_DISABLE_SCHEDULE flag on g->bb
6695 instead of emitting a NOTE_INSN_DISABLE_SCHED_OF_BLOCK note.
6696 * sched-rgn.c (sched_is_disabled_for_current_region_p):
6697 Look for a BB_DISABLE_SCHEDULE flag on the block instead of a note.
6699 2004-08-24 Nathan Sidwell <nathan@codesourcery.com>
6701 * c-decl.c (c_init_decl_processing): Adjust
6702 build_common_tree_nodes call.
6703 * expmed.c (const_mult_add_overflow_p): Use
6704 build_distinct_type_copy.
6705 * stor-layout.c (early_type_list): Remove.
6706 (layout_type): Don't append to early_type_list.
6707 (initialize_sizetypes): Add signed_p argument.
6708 (set_sizetype): Overwrite the stub type nodes directly.
6709 * tree.c (copy_node_stat): Clear a type's value cache here ...
6710 (build_distinct_type): ... not here.
6711 (build_common_tree_nodes): Add signed_sizetype argument. Adjust.
6712 * tree.h (initialize_sizetypes): Add signed_p argument.
6713 (build_common_tree_nodes): Likewise.
6715 * objc/objc-act.c (get_static_reference): Use
6716 build_variant_type_copy.
6717 (get_protocol_reference): Likewise.
6718 * objc/objc-act.h (TREE_STATIC_TEMPLATE): Use TREE_PRIVATE.
6720 2004-08-24 Richard Henderson <rth@redhat.com>
6721 Andrew Pinski <apinski@apple.com>
6723 * gimplify.c (gimplify_array_ref_to_plus): Delete.
6724 (gimplify_addr_expr): Do not call gimplify_array_ref_to_plus
6727 * config/rs6000/rs6000.c (altivec_expand_builtin): Go passed
6728 ARRAY_REF also to get to the STRING_CST.
6730 2004-08-24 Paul Brook <paul@codesourcery.com>
6732 * config/arm/arm.c (arm_override_options): Update error message.
6733 * config/arm/arm.h (TARGET_HARD_FLOAT): Rename to
6734 TARGET_HARD_FLOAT_ABI.
6735 (TARGET_SOFT_FLOAT_ABI): Rename to TARGET_HARD_FLOAT.
6736 (LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Use TARGET_HARD_FLOAT_ABI.
6738 2004-08-24 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6741 * config/m32r.md (movsi_sda): Add SI mode specification to
6744 2004-08-24 Nick Clifton <nickc@redhat.com>
6746 * config/m32r/m32r.h (PREDICATE_CODES): Remove duplicate definition
6747 of seth_add3_operand.
6749 2004-08-24 Nathan Sidwell <nathan@codesourcery.com>
6751 * Makefile.in (PROTO_OBJS): Add errors.o.
6752 * protoize.c (fancy_abort): Remove.
6753 * mips-tfile.c (fancy_abort): Add parameters.
6755 2004-08-24 Jonathan Wakely <redi@gcc.gnu.org>
6757 * doc/trouble.texi (C++ misunderstandings): Fix example code.
6759 2004-08-24 Andreas Tobler <a.tobler@schweiz.ch>
6761 * Makefile.in (HOOKS_H): Add dependency on MACHMODE_H.
6762 (host-default.o): Add dependency on HOOKS_H.
6763 * config/x-linux: Likewise.
6764 * config/x-solaris: Likewise.
6765 * config/i386/x-mingw32: Likewise.
6766 * config/rs6000/x-darwin: Likewise.
6768 2004-08-23 James E Wilson <wilson@specifixinc.com>
6770 * reg-notes.def (REG_NOTE): In comment, change DEF_INSN_NOTE to
6773 2004-08-23 Mark Mitchell <mark@codesourcery.com>
6776 * dwarf2out.c (loc_descriptor_from_tree): Robustify.
6778 2004-08-23 Diego Novillo <dnovillo@redhat.com>
6780 * cfg.c (check_bb_profile): Fix typos.
6781 * function.c (assign_parm_is_stack_parm): Likewise.
6782 * tree-nested.c: Likewise.
6784 2004-08-23 Daniel Jacobowitz <dan@debian.org>
6786 * ggc-zone.c (struc alloc_chunk): Rearrange flag bits and SIZE.
6788 (ggc_alloc_zone_1): Mark TYPE as unused. Don't save it in the chunk.
6790 2004-08-23 Eric Christopher <echristo@redhat.com>
6792 * defaults.h (VECTOR_MODE_SUPPORTED_P): Remove macro.
6793 * system.h (VECTOR_MODE_SUPPORTED_P): Poison.
6794 * target-def.h (TARGET_VECTOR_MODE_SUPPORTED_P): Define.
6796 * hooks.h: Include machmode.h.
6797 (hook_bool_mode_false): Declare.
6798 * hooks.c (hook_bool_mode_false): Define.
6799 * expr.c (vector_mode_valid_p): Use targetm.vector_mode_supported_p.
6800 * stor-layout.c (layout_type): Ditto.
6801 * config/alpha/alpha.c (alpha_vector_mode_supported_p): New function.
6802 Define to target macro.
6803 * config/alpha/alpha.h (VECTOR_MODE_SUPPORTED_P): Delete.
6804 * config/arm/arm.c: Ditto. Use.
6805 * config/arm/arm.h: Ditto.
6806 * config/arm/arm-protos.h: Ditto.
6807 * config/i386/i386.c: Ditto.
6808 * config/i386/i386.h: Ditto.
6809 * config/rs6000/rs6000.c: Ditto.
6810 * config/rs6000/rs6000.h: Ditto.
6811 * config/sh/sh.c: Ditto.
6812 * config/sh/sh.h: Ditto.
6813 * config/sh/sh-protos.h: Ditto.
6814 * config/sh/sh.md: Use.
6815 * doc/tm.texi: Move documentation for VECTOR_MODE_SUPPORTED_P
6816 to TARGET_VECTOR_MODE_SUPPORTED_P.
6818 2004-08-23 Nathan Sidwell <nathan@codesourcery.com>
6820 * Makefile.in (BUILD_ERRORS): Set to build-errors.
6821 (errors.o): New target for host.
6822 (build-errors.o): New target for build.
6823 (genobjs): Replace errors.o with build-errors.
6824 (gengenrtl$(buildexeext)): Add $(BUILD_ERRORS).
6825 (GCOV_OBJS, GCOV_DUMP_OBJS): Add errors.o.
6826 (fix-headers$(build_exeext)): Add $(BUILD_ERRORS).
6827 (fix-header.o): Add errors.h
6828 * collect2.c (fancy_abort): Add parameters.
6829 * collect2.h (fancy_abort): Don't declare.
6830 * errors.h (fancy_abort): Don't declare.
6831 * errors.c: Include either bconfig.h or config.h.
6832 (fancy_abort): Trim filename.
6833 * fix-header.c (v_fatal, fatal): Remove.
6834 (progname): Remove definition.
6835 (main): Set progname here.
6836 * gcc.c (fancy_abort): Add parameters.
6837 * gcc.h (fancy_abort): Remove declaration.
6838 * gcov.c (fancy_abort): Remove.
6839 * rtl.h (fancy_abort): Don't declare.
6840 (abort): Don't define.
6841 * tree.h (fancy_abort): Don't declare.
6842 (abort): Don't define.
6843 * system.h (fancy_abort): Declare.
6844 (abort): Define to fancy_abort.
6845 * fixinc/Makefile.in (ALLOBJ): Add ../build-errors.o
6847 * tree.h (enum size_type_kind): Remove USIZETYPE, UBITSIZETYPE.
6848 (usize_type, ubitsizetype): Remove.
6849 * stor-layout.c (set_sizetype): Don't initialize usizetype,
6851 * fold-const.c (size_diffop): TYPE can never be ubitsizetype.
6853 * tree.h (build_distinct_type_copy): New.
6854 (build_type_copy): ... here. Rename to ...
6855 (build_variant_type_copy): ... here.
6856 * tree.c (build_qualified_type): Rename build_type_copy call.
6857 (build_distinct_type_copy): New, broken out of ...
6858 (build_type_copy): ... here. Rename to ...
6859 (build_variant_type_copy): ... here. Use
6860 build_distinct_type_copy.
6861 (build_common_tree_nodes_2): Rename build_type_copy call.
6862 * c-common.c (c_common_nodes_and_builtins): Rename build_type_copy
6864 (handle_packed_attribute, handle_unused_attribute,
6865 handle_transparanet_union_attribute, handle_aligned_attribute,
6866 handle_deprecated_attribute): Likewise.
6867 * c-decl.c (clone_underlying_type, store_parm_decls_oldstyle):
6869 * config/arm/arm.c (arm_handle_isr_attribyte): Likewise.
6870 * config/rs6000/rs6000.c (rs6000_init_builtins): Use
6871 build_distinct_type_copy.
6873 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6875 * config/mips/mips.md (mfhilo_[sd]i): Redefine using :GPR. Add mode
6878 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6880 * config/mips/mips.md (length): Don't use mips_fetch_insns for indexed
6882 (*lwxc1_<mode>, *ldxc1_<mode>, *swxc1_<mode>, *sdxc1_<mode>): Name
6883 formerly unnamed patterns. Redefine using :P for the address. Remove
6884 explicit length attributes.
6886 2004-08-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
6888 * tree-ssa-loop-im.c (fem_single_reachable_address, for_each_memref):
6890 (single_reachable_address): Use them.
6891 (schedule_sm): Add dump.
6892 (is_call_clobbered_ref): New function.
6893 (determine_lsm_reg): Check whether the reference is call clobbered.
6894 Only work for gimple_reg_type values.
6896 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6898 * config/mips/mips.md (*mov<mode>_ra): Name previously unnamed MIPS16
6899 $31 store insns. Redefine using :GPR.
6901 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6903 * config/mips/mips.md (P): New mode macro.
6904 (*xgot_hi[sd]i, *xgot_lo[sd]i, *got_disp[sd]i, *got_page[sd]i)
6905 (*load_got[sd]i, *low[sd]i, *low[sd]i_mips16): Redefine using :P.
6906 Add mode attributes.
6908 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6910 * config/mips/mips.md (UNSPEC_[LS][WD][LR]): Delete in favor of...
6911 (UNSPEC_{LOAD,STORE}_{LEFT,RIGHT}): ...these new constants. Shuffle
6912 later constants to cover the gap.
6913 (load, store): New mode attributes.
6914 (mov_l[wd]l, mov_l[wd]r, mov_s[wd]l, mov_s[wd]r): Redefine using :GPR.
6915 Use new unspec constants.
6917 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6919 * config/mips/mips.md (one_cmpl[sd]i2): Redefine using :GPR.
6920 (and[sd]3, ior[sd]i3, xor[sd]i3): Likewise. Change 32-bit patterns
6921 to use register_operand rather than uns_arith_operand as the predicate
6922 for operand 1. Remove redundant MIPS16 force_reg() for operand 1.
6923 (*and[sd]i3, *ior[sd]i3, *xor[sd]i3): Name formerly unnamed patterns.
6924 Redefine using :GPR. Make same predicate change here. Extend the
6925 commutativity of operands 1 and 2 from the SImode version to the
6927 (*and[sd]i3_mips16, *ior[sd]i3_mips16, *xor[sd]i3_mips16): Likewise,
6928 but with no predicate changes.
6929 (*nor[sd]i3): Redefine using :GPR.
6931 2004-08-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
6933 * tree-ssa-operands.c (get_call_expr_operands): Add VUSE operands for
6936 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6938 * config/mips/mips.h (ISA_HAS_DCLZ_DCLO): Delete.
6939 * config/mips/mips.md (abs[sd]i2): Redefine using :GPR. Only use
6940 branch-likely insns for absdi2 if GENERATE_BRANCHLIKELY. Use "%."
6941 rather than "%z2" (with a fake const0_rtx for operand 2).
6942 (ffs[sd]i2): Redefine using :GPR.
6943 (clz[sd]i2): Likewise. Use ISA_HAS_CLO_CLZ for the 64-bit case.
6945 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6947 * config/mips/mips.md ({,u}divmod[sd]i4): Redefine using :GPR.
6949 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6951 * config/mips/mips.md (any_extend): New code macro.
6952 (u, su): New code attributes.
6953 ({,u}mulsidi3, {,u}mulsidi3_32bit_internal, {,u}mulsidi3_32bit_r4000)
6954 ({u,s}mulsi3_highpart, {u,s}mulsi3_highpart_internal)
6955 ({u,s}mulsi3_highpart_mulhi_internal, {s,u}muldi3_highpart)
6956 (*{s,u}mul_acc_di): Redefine using any_extend.
6957 (*{,u}muls_di, *{s,u}msac_di): Likewise. Change names of patterns
6958 to reflect real insn names.
6959 (*mulsidi3_64bit, *mulsidi3_64bit_parts): Replace use of match_operator
6960 with an any_extend template.
6961 ({u,s}mulsi3_highpart_neg_mulhi_internal): Redefine using any_extend.
6964 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6966 * config/mips/mips.h (GENERATE_MULT3_SI): Check TARGET_MAD.
6967 * config/mips/mips.md (mul[sd]i3, mul[sd]i3_internal)
6968 (mul[sd]i3_r4000): Redefine using :GPR.
6969 (mulsi3_mult3): Don't check TARGET_MAD separately.
6970 (muldi3_mult3): Moved after mulsi_mult3.
6972 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
6974 * config.gcc (mips-*-*): Remove definitions of MASK_GAS and
6975 OBJECT_FORMAT_ELF. Set MASK_SPLIT_ADDR by default if using GNU ld.
6976 * config/mips/mips.h (MASK_GAS): Delete. Shuffle later masks down.
6977 (TARGET_GAS, TARGET_MIPS_AS): Delete.
6978 (TARGET_GPWORD): Define to true for n32 on IRIX.
6979 (TARGET_SWITCHES): Remove -mmips-as. Turn -mgas into a no-op.
6980 (MIPS_AS_ASM_SPEC, SUBTARGET_MIPS_AS_ASM_SPEC): Delete.
6981 (GAS_ASM_SPEC): Delete, folding into ASM_SPEC.
6982 (ASM_ABI_DEFAULT_SPEC, TARGET_ASM_SPEC): Delete.
6983 (MDEBUG_ASM_SPEC): Delete, folding into...
6984 (SUBTARGET_ASM_DEBUGGING_SPEC): ...here.
6985 (ASM_SPEC): Inline old GAS_ASM_SPEC. Use GNU names for ABI switches.
6986 (EXTRA_SPECS): Remove mips_as_asm_spec, gas_asm_spec, target_asm_spec,
6987 subtarget_mips_as_asm_spec, mdebug_asm_spec. Use MULTILIB_ABI_DEFAULT
6988 to define asm_abi_default_spec.
6989 (ASM_STABS_OP, ASM_STABN_OP, ASM_STABD_OP): Delete.
6990 (TARGET_ASM_SELECT_SECTION): Delete.
6991 * config/mips/mips.c (MIPS_MAX_FIRST_STACK_STEP): Define to 0x7ff0
6992 for non-mips16 code, removing previous workaround for SGI assemblers.
6993 (TARGET_ASM_INTEGER, mips_assemble_integer): Delete.
6994 (TARGET_ASM_ALIGNED_DI_OP): Define this instead.
6995 (override_options): Remove !TARGET_GAS and !have_named_sections code.
6996 (print_operand): Fold TARGET_GAS conditionals into asm strings.
6997 (mips_output_filename): Remove !TARGET_GAS code. Replace use of
6998 ASM_STABS_OP and ASM_STABN_OP.
6999 (mips_file_start): Remove TARGET_MIPS_AS/TARGET_GAS checks.
7000 (mips_output_aligned_decl_common): Remove mention of SGI o32 assembler.
7001 (mips_output_function_prologue): Remove !TARGET_GAS code.
7002 (mips_select_rtx_section): Remove !have_named_sections code.
7003 (mips_select_section): Delete.
7004 * config/mips/mips.md (trap): Remove !TARGET_GAS check.
7005 * config/mips/linux.h (TARGET_DEFAULT): Remove use of MASK_GAS.
7006 * config/mips/sdb.h (PUT_SDB_DEF, PUT_SDB_PLAIN_DEF): Delete.
7007 (PUT_SDB_BLOCK_START, PUT_SDB_BLOCK_END): Fold TARGET_GAS conditional.
7008 * config/mips/vxworks.h (ASM_SPEC): As for mips.h.
7009 * config/mips/windiss.h (ASM_SPEC): Likewise.
7011 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
7013 * read-rtl.c (map_value, mapping, macro_group): New structures.
7014 (BELLWETHER_CODE): New macro.
7015 (modes, codes, bellwether_codes): New variables.
7016 (find_mode, uses_mode_macro_p, apply_mode_macro, find_code)
7017 (uses_code_macro_p, apply_code_macro, apply_macro_to_string)
7018 (apply_macro_to_rtx, uses_macro_p, add_condition_to_string)
7019 (add_condition_to_rtx, apply_macro_traverse, add_mapping)
7020 (add_map_value, initialize_macros): New functions.
7021 (def_hash, def_hash_eq_p): Generalize to anything that points to,
7022 or starts with, a char * field.
7023 (find_macro, read_mapping, check_code_macro): New functions.
7024 (read_rtx_1): New, split out from read_rtx. Handle the new
7025 define_{mode,code}_{macro,attr} constructs. Use find_macro
7026 to parse the name of a code or mode. Use BELLWETHER_CODE to
7027 extract the format and to choose a suitable code for rtx_alloc.
7028 Modify recursive invocations to use read_rtx_1.
7029 (read_rtx): Call initialize_macros. Apply code and mode macros
7030 to the rtx returned by read_rtx_1. Cache everything after the
7031 first macro expansion for subsequent read_rtx calls.
7032 * doc/md.texi: Document new .md constructs.
7033 * config/mips/mips.md (GPR): New mode macro.
7034 (d, si8_di5): New mode attributes.
7035 (any_cond): New code macro.
7036 (add[sd]i3): Redefine using :GPR.
7037 (*add[sd]i3): Likewise, renaming from add[sd]i3_internal.
7038 (*add[sd]i3_sp[12], *add<mode>3_mips16): Redefine using :GPR, naming
7039 previously unnamed MIPS16 patterns.
7040 (*addsi3_extended): Renamed from addsi3_internal_2. Fix overly long
7041 lines. Don't match (plus (const_int 0) ...).
7042 (*addsi3_extended_mips16): Name previously unnamed MIPS16 pattern.
7043 Use a define_split to generate the addition.
7044 (sub[sd]i3): Redefine using :GPR. Turn subsi3 into a define_insn.
7045 (subsi3_internal): Delete.
7046 (*subsi3_extended): Renamed from subsi3_internal_2.
7047 (bunordered, bordered, bunlt, bunge, buneq, bltgt, bunle, bungt)
7048 (beq, bne, bgt, bge, blt, ble, bgtu, bgeu, bltu, bleu): Redefine
7049 using an any_cond template.
7051 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
7053 * read-rtl.c (read_rtx): Tidy use of format_ptr.
7055 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
7057 * read-rtl.c (string_obstack): New file-scope variable.
7058 (read_string, read_quoted_string, read_braced_string)
7059 (read_escape): Remove obstack parameter and use string_obstack instead.
7060 (read_rtx): Remove function-local rtl_obstack and initialize
7061 string_obstack instead. Update call to read_string.
7063 2004-08-22 Andrew Pinski <apinski@apple.com>
7066 * c-typeck.c (build_unary_op): Use &a.b if the foldded lowered
7067 expression is not constant.
7068 (c_finish_return): Do not go through INDIRECT_REF when looking
7069 for the inner expression of an ADDR_EXPR for warning about.
7071 2004-08-22 Richard Henderson <rth@redhat.com>
7074 * cfgexpand.c (expand_gimple_tailcall): Detect when we can both
7075 create new blocks and fall through.
7076 (expand_gimple_basic_block): Update to match.
7078 2004-08-22 Ulrich Weigand <uweigand@de.ibm.com>
7080 * reload.c (find_reloads_address): Make return value tri-state.
7081 Return -1 if LEGITIMIZE_RELOAD_ADDRESS succeeded.
7082 (find_reloads): Assume that reloaded addresses match 'o' or
7083 EXTRA_MEMORY_CONSTRAINT constraints only if find_reloads_address
7084 returned 1 (not -1). Omit optional reloads for address operands
7085 only if find_reloads_address returned 1 (not -1).
7087 * config/s390/s390.c (legitimize_reload_address): New function.
7088 * config/s390/s390-protos.h (legitimize_reload_address): Declare.
7089 * config/s390/s390.h (LEGITIMIZE_RELOAD_ADDRESS): Define. Call
7090 legitimize_reload_address.
7092 2004-08-22 Richard Hendersion <rth@redhat.com>
7094 * tree.h (SAVE_EXPR_RESOLVED_P): New.
7095 * gimplify.c (gimplify_save_expr): Use it.
7096 * expr.c (expand_expr_real_1): Likewise. Also set DECL_IGNORED_P
7097 on the temporary variable.
7099 2004-08-22 Andrew Pinski <pinskia@physics.uc.edu>
7101 * fold-const.c (rtl_expr_nonnegative_p): Delete.
7102 * tree.h (rtl_expr_nonnegative_p): Remove.
7104 2004-08-22 Steven Bosscher <stevenb@suse.de>
7106 * config/i386/ppro.md (ppro_complex_insn): Add missing check
7107 for cpu==pentiumpro.
7109 * combine.c (struct reg_stat): Fix comment typo.
7111 2004-08-22 Joseph S. Myers <jsm@polyomino.org.uk>
7113 * c-tree.h (c_sizeof_nowarn): Remove.
7115 2004-08-21 Joseph S. Myers <jsm@polyomino.org.uk>
7117 * c-decl.c (set_array_declarator_type): Rename to
7118 set_array_declarator_inner.
7119 (build_c_parm, build_attrs_declarator, build_function_declarator):
7121 (make_pointer_declarator): Call build_attrs_declarator.
7122 * c-tree.h (set_array_declarator_type): Rename to
7123 set_array_declarator_inner.
7124 (build_c_parm, build_attrs_declarator, build_function_declarator):
7126 * c-parse.in (after_type_declarator,
7127 parm_declarator_starttypename, parm_declarator_nostarttypename,
7128 notype_declarator, absdcl_maybe_attribute, direct_absdcl1, parm,
7129 firstparm): Use these functions
7131 2004-08-21 Joseph S. Myers <jsm@polyomino.org.uk>
7133 * c-decl.c (build_array_declarator, set_array_declarator_type,
7134 start_decl, grokdeclarator, grokparms): Change boolean parameters
7136 * c-tree.h (build_array_declarator, set_array_declarator_type,
7137 start_decl): Update prototypes.
7138 * c-decl.c, c-parse.in: All callers changed.
7140 2004-08-21 Mike Stump <mrs@apple.com>
7142 * config/rs6000/darwin.h (SUBTARGET_OPTIONS): Move from here, to...
7143 (darwin_fix_and_continue): Likewise.
7144 (darwin_fix_and_continue_switch): Likewise.
7145 * config/darwin.h (SUBTARGET_OPTIONS): ...here, to fix -mone-byte-bool.
7146 (darwin_fix_and_continue): Likewise.
7147 (darwin_fix_and_continue_switch): Likewise.
7149 2004-08-21 Danny Smith <dannysmith@users.sourceforge.net>
7152 * config/i386/winnt/c (gen_stdcall_suffix, gen_fastcall_suffix):
7153 Remove, merging into ...
7154 (gen_stdcall_or_fastcall_suffix): New function, returning tree
7155 rather than const char*, and accepting additional parameter.
7156 Don't add suffix to '*'-prefixed symbols or variadic functions.
7157 (i386_pe_encode_section_info): Adjust for call to new function.
7158 Call change_decl_assembler_name.
7160 2004-08-20 Mike Stump <mrs@apple.com>
7162 * config/darwin.c (machopic_indirect_data_reference): Mark
7164 * config/386/386.c (darwin_local_data_pic): Add.
7165 (legitimate_constant_p): Reorder so that PLUS handling runs
7166 before darwin_local_data_pic to match the ordering in
7167 legitimate_pic_address_disp_p and so that MINUS runs after
7168 darwin_local_data_pic as otherwise the darwin_local_data_pic
7169 logic can be skipped, which would be very bad.
7170 (legitimate_pic_address_disp_p): Move from from here to
7171 darwin_local_data_pic so it can be reused.
7173 2004-08-21 Alan Modra <amodra@bigpond.net.au>
7175 * config/rs6000/linux64.h (DOT_SYMBOLS): Define.
7176 (CRT_CALL_STATIC_FUNCTION): Define !DOT_SYMBOLS version.
7177 (ASM_DECLARE_FUNCTION_SIZE): Modify for !DOT_SYMBOLS.
7178 (ASM_OUTPUT_SOURCE_LINE, DBX_OUTPUT_BRAC, DBX_OUTPUT_NFUN): Likewise.
7179 (RS6000_ABI_NAME): Define as "linux".
7180 (SUBSUBTARGET_OVERRIDE_OPTIONS): Set dot_symbols.
7181 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Select
7182 ABI_AIX when rs6000_abi_name is "linux" and TARGET_64BIT.
7183 * config/rs6000/rs6000-protos.h (rs6000_output_function_entry): Decl.
7184 * config/rs6000/rs6000.c (dot_symbols): New global var.
7185 (rs6000_output_function_entry): New function, modified for
7187 (print_operand <case 'z'>): ..extracted from here.
7188 (rs6000_assemble_visibility): Modify for !DOT_SYMBOLS.
7189 (rs6000_output_function_epilogue): Likewise.
7190 (rs6000_elf_declare_function_name): Likewise.
7191 * config/rs6000/rs6000.h (DOT_SYMBOLS): Define.
7192 (ASM_WEAKEN_DECL, ASM_OUTPUT_DEF_FROM_DECLS): Modify for !DOT_SYMBOLS.
7193 * configure.ac (HAVE_LD_NO_DOT_SYMS): Add new AC_DEFINE.
7194 * configure: Regenerate.
7195 * config.in: Regenerate.
7197 2004-08-20 Mark Mitchell <mark@codesourcery.com>
7199 * reload.c (find_reloads_address): Fix thinko in previous change.
7201 * reload.c (find_reloads_address): Reload the sum of a LO_SUM and
7204 2004-08-20 Jakub Jelinek <jakub@redhat.com>
7206 PR rtl-optimization/17099
7207 * combine.c (force_to_mode): Check if inner_mask has any bits set
7208 outside of GET_MODE (x) instead of op_mode.
7210 2004-08-20 Mark Mitchell <mark@codesourcery.com>
7212 * config.gcc (arm*-*-symbianelf*): Add t-symbian Makefile
7214 * config/arm/bpabi.h (RENAME_LIBRARY_SET): Fix typo.
7215 (SUBTARGET_EXTRA_ASM_SPEC): Pass -meabi=3 to the assembler.
7216 * config/arm/symbian.h (SUBTARGET_CPU_DEFAULT): Assume ARMV5
7218 (SUBTARGET_ASM_FLOAT_SPEC): Default to -mfpu=vfp for hard-float
7220 * config/arm/t-symbian: New file.
7222 2004-08-20 Andrew Pinski <apinski@apple.com>
7224 * regrename.c (kill_value_regno): ANSIfy.
7226 2004-08-20 Dale Johannesen <dalej@apple.com>
7228 * config/rs6000/rs6000.c (rs6000_rtx_costs): Improve DIV/MOD.
7230 2004-08-20 Daniel Jacobowitz <dan@debian.org>
7232 * regrename.c (kill_value_one_regno): Renamed from kill_value_regno.
7233 (kill_value_regno): New function, derived from kill_value.
7234 (kill_value): Update.
7235 (copyprop_hardreg_forward_1): Update call to kill_value_regno.
7237 2004-08-20 Daniel Berlin <dberlin@dberlin.org>
7239 Fix PR tree-optimization/17111
7240 * tree-ssa-pre.c (create_value_expr_from): Don't change the types
7241 of non-value_handles.
7242 (bitmap_set_contains): All constants are in every set.
7244 2004-08-20 Nathan Sidwell <nathan@codesourcery.com>
7246 * fold-const.c (round_up, round_down): Use build_int_cst.
7247 Optimize common case.
7249 2004-08-20 Zack Weinberg <zack@codesourcery.com>
7250 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7252 * config/pa/pa-protos.h (readonly_data, one_only_readonly_data_section,
7253 one_only_data_section): Rename to som_readonly_data_section,
7254 som_one_only_readonly_data_section and som_one_only_data_section.
7255 * config/pa/pa.c (ONE_ONLY_TEXT_SECTION_ASM_OP,
7256 NEW_TEXT_SECTION_ASM_OP, DEFAULT_TEXT_SECTION_ASM_OP): Delete
7257 conditional defines.
7258 (som_text_section_asm_op): Replace ONE_ONLY_TEXT_SECTION_ASM_OP,
7259 NEW_TEXT_SECTION_ASM_OP and DEFAULT_TEXT_SECTION_ASM_OP with actual
7261 (pa_select_section): Use renamed section functions.
7262 * config/pa/pa.h (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS,
7263 SOM_READONLY_DATA_SECTION_FUNCTION,
7264 SOM_ONE_ONLY_READONLY_DATA_SECTION_FUNCTION,
7265 SOM_ONE_ONLY_DATA_SECTION_FUNCTION, FORGET_SECTION_FUNCTION):
7267 * config/pa/som.h: ... not here.
7268 (DEFAULT_TEXT_SECTION_ASM_OP, NEW_TEXT_SECTION_ASM_OP,
7269 ONE_ONLY_TEXT_SECTION_ASM_OP, READONLY_DATA_ASM_OP,
7270 ONE_ONLY_READONLY_DATA_SECTION_ASM_OP,
7271 ONE_ONLY_DATA_SECTION_ASM_OP): Delete.
7272 (READONLY_DATA_SECTION): Use som_readonly_data_section.
7274 2004-08-20 Nathan Sidwell <nathan@codesourcery.com>
7276 * fold-const.c (int_const_binop): Don't generate non-overflowing
7277 size-types specially.
7278 (fold_convert_const): Likewise.
7280 * stor-layout.c (initialize_sizetypes): Set SIZETYPE earlier,
7281 clear cache on copied sizetype.
7283 2004-08-20 Ben Elliston <bje@au.ibm.com>
7285 * configure.ac: Don't escape apostrophe in --enable-coverage help.
7286 * configure: Regenerate.
7288 2004-08-20 Danny Smith <dannysmith@users.sourceforge.net>
7291 * gcc.c (struct stat input_stat): Don't define if
7292 HOST_LACKS_INODE_NUMBERS
7293 (do_spec_1): If HOST_LACKS_INODE_NUMBERS, use lrealpath rather
7294 than stat to determine if temp file is same as input file.
7295 * doc/hostconfig.texi: Document HOST_LACKS_INODE_NUMBERS.
7296 * config/i386/xm-mingw32.h: Define HOST_LACKS_INODE_NUMBERS
7298 2004-08-20 Richard Sandiford <rsandifo@redhat.com>
7300 * configure.ac (mips*-*-*): Print an error if not using GAS.
7301 * configure: Regenerated.
7302 * doc/install.texi: Remove irix5 bullet from --with-gnu-as. Remove
7303 comments about buggy MIPSpro assemblers.
7304 * config.gcc (mips-sgi-irix[56]*): Combine stanzas. Include elfos.h
7305 before mips.h and iris.h after it. Use t-iris and t-slibgcc-irix.
7306 Use iris5.h only for IRIX 5 configs. Use iris6.h and t-iris6 for
7307 IRIX 6 configs. Define IRIX_USING_GNU_LD if using GNU ld.
7308 * config/mips/iris5.h (TARGET_IRIX, SWITCHES_NEED_SPACES)
7309 (DEFAULT_SIGNED_CHAR, WORD_SWITCH_TAKES_ARG, SUBTARGET_CC1_SPEC)
7310 (NO_IMPLICIT_EXTERN_C, MIPS_DEFAULT_GVALUE)
7311 (TARGET_ASM_EXTERNAL_LIBCALL): Move to iris.h.
7312 (WCHAR_TYPE, WCHAR_TYPE_SIZE, TARGET_OS_CPP_BUILTINS): Delete in favor
7313 of more general IRIX 6 definitions.
7314 (OBJECT_FORMAT_ELF, ASM_OUTPUT_ASCII, ASM_WEAKEN_LABEL)
7315 (HANDLE_SYSV_PRAGMA): Delete in favor of elfos.h definitions.
7316 (TARGET_IRIX5, ABICALLS_ASM_OP, BSS_SECTION_ASM_OP, HAS_INIT_SECTION)
7317 (LD_INIT_SWITCH, LD_FINI_SWITCH, SUBTARGET_ASM_OPTIMIZING_SPEC)
7318 (ASM_FINAL_SPEC, DBX_DEBUGGING_INFO, MIPS_DEBUGGING_INFO)
7319 (PREFERRED_DEBUGGING_TYPE, DWARF2_UNWIND_INFO, SET_FILE_NUMBER)
7320 (LABEL_AFTER_LOC, DOLLARS_IN_IDENTIFIERS, NO_DOLLAR_IN_LABEL)
7321 (TARGET_ASM_NAMED_SECTION, EXTRA_SECTION_FUNCTIONS)
7322 (ASM_DECLARE_FUNCTION_SIZE, ASM_OUTPUT_WEAK_ALIAS)
7323 (SUBTARGET_EXTRA_SPECS): Delete definitions or undefs.
7324 (LINK_SPEC): Move most of definition to iris.h.
7325 (SUBTARGET_LINK_SPEC): New macro.
7326 (IRIX_STARTFILE_SPEC): Fold into...
7327 (STARTFILE_SPEC): ...here.
7328 (IRIX_ENDFILE_SPEC): Fold into...
7329 (ENDFILE_SPEC): ...here.
7330 * config/mips/iris6.h (TARGET_IRIX5): Remove override.
7331 (WCHAR_TYPE, WCHAR_TYPE_SIZE, WINT_TYPE, WINT_TYPE_SIZE)
7332 (DWARF_OFFSET_SIZE, DWARF_INITIAL_LENGTH_SIZE, SET_ASM_OP)
7333 (LINK_ELIMINATE_DUPLICATE_LDIRECTORIES, ASM_DECLARE_OBJECT_NAME)
7334 (ASM_FINISH_DECLARE_OBJECT, LOCAL_LABEL_PREFIX): Move to iris.h.
7335 (TARGET_OS_CPP_BUILTINS): Likewise. Guard IRIX6-specific bits.
7336 (DWARF2_UNWIND_INFO, DWARF2_GENERATE_TEXT_SECTION_LABEL)
7337 (SUBTARGET_CPP_SPEC, DWARF2_DEBUGGING_INFO, MIPS_DEBUGGING_INFO)
7338 (PREFERRED_DEBUGGING_TYPE, DWARF2_FRAME_INFO, MD_EXEC_PREFIX)
7339 (ASM_DECLARE_FUNCTION_NAME, ASM_DECLARE_FUNCTION_SIZE)
7340 (FUNCTION_NAME_ALREADY_DECLARED, SUPPORTS_INIT_PRIORITY)
7341 (POPSECTION_ASM_OP, SUBTARGET_ASM_SPEC, SUBTARGET_MIPS_AS_ASM_SPEC)
7342 (SUBTARGET_ASM_DEBUGGING_SPEC, SUBTARGET_ASM_OPTIMIZING_SPEC)
7343 (BSS_SECTION_ASM_OP*, READONLY_DATA_SECTION_ASM_OP*)
7344 (EH_FRAME_SECTION_NAME, MUST_USE_SJLJ_EXCEPTIONS, CTORS_SECTION_ASM_OP)
7345 (DTORS_SECTION_ASM_OP, TARGET_ASM_NAMED_SECTION, EH_FRAME_SECTION_NAME)
7346 (ASM_OUTPUT_ALIGN, ASM_OUTPUT_FILENAME, ASM_OUTPUT_ALIGNED_LOCAL)
7347 (ASM_OUTPUT_ALIGNED_BSS): Remove definitions or undefs.
7348 (TARGET_IRIX6): Define to 1.
7349 (DRIVER_SELF_SPECS): Define.
7350 (DWARF2_FRAME_INFO): Define to 1 rather than !TARGET_SGI_O32_AS.
7351 (SUBTARGET_CC1_SPEC): Remove in favor of DRIVER_SELF_SPECS.
7352 (SUBTARGET_LINK_SPEC): New macro.
7353 (IRIX_STARTFILE_SPEC): Fold into...
7354 (STARTFILE_SPEC): ...here. Remove !mabi=* case.
7355 (SUBTARGET_{,DONT_}WARN_UNUSED_SPEC): New macros.
7356 (LIB_SPEC, LIBGCC_SPEC): Use them.
7357 (LIB_SPEC): Remove !mabi=* case.
7358 (IRIX_ENDFILE_SPEC): Fold into...
7359 (ENDFILE_SPEC): ...here. Remove !mabi=* case.
7360 * config/mips/mips-protos.h (irix_output_external_libcall): Delete.
7361 * config/mips/mips.h (TARGET_IRIX5, TARGET_SGI_O32_AS): Delete.
7362 (TARGET_IRIX6): New macro.
7363 (ASM_ABI_DEFAULT_SPEC): Remove !ELF definition.
7364 (MD_EXEC_PREFIX, MD_STARTFILE_PREFIX, SET_FILE_NUMBER)
7365 (LABEL_AFTER_LOC): Delete.
7366 * config/mips/mips.c (TARGET_ASM_FILE_START, TARGET_ASM_FILE_END)
7367 (TARGET_SECTION_TYPE_FLAGS): Remove TARGET_IRIX versions.
7368 (mips_build_builtin_va_list): Check TARGET_IRIX6.
7369 (override_options): Remove TARGET_SGI_O32_AS-related code.
7370 (irix_output_external_libcall): Make static.
7371 (mips_output_filename): Avoid use of SET_FILE_NUMBER and
7373 (mips_file_start): Tidy guard for ABI sections. Remove use of
7374 ABICALLS_ASM_OP; use .abicalls instead.
7375 (mips_output_aligned_decl_common, mips_declare_object_name)
7376 (mips_finish_declare_object): Remove use of TARGET_SGI_O32_AS.
7377 (mips_output_function_prologue): Set TREE_ASM_WRITTEN if emitting
7378 .globl foo .text directives.
7379 (irix_asm_named_section_1, irix_asm_named_section)
7380 (irix_section_align_entry, irix_section_align_htab)
7381 (irix_orig_asm_out_file, irix_section_align_entry_eq)
7382 (irix_section_align_entry_hash, irix_asm_output_align)
7383 (irix_file_start, irix_section_align_1, copy_file_data)
7384 (irix_file_end, irix_section_type_flags): Delete.
7385 * config/mips/irix-crti.asm (__gcc_init): Move to .gcc_init section.
7386 Use standard section syntax. Remove protective "jr $31".
7387 (__gcc_fini): Likewise .gcc_fini.
7388 * config/mips/irix-crtn.asm: Adjust sections accordingly.
7389 * config/mips/sdb.h (PUT_SDB_SIZE, PUT_SDB_TYPE): Moved from
7391 * config/mips/t-iris (irix-crti.o, irix-crtn.o): New rules, moved
7393 (EXTRA_MULTILIB_PARTS): Define.
7394 * config/mips/t-iris6: Remove bogus comment.
7395 (EXTRA_MULTILIB_PARTS, CRTSTUFF_T_CFLAGS): Delete.
7396 * config/mips/iris5gas.h, config/mips/iris5gld.h,
7397 config/mips/iris6gas.h, config/mips/iris6gld.h,
7398 config/mips/t-iris5-as, config/mips/t-iris5-gas
7399 config/mips/t-irix-gld: Delete.
7400 * config/mips/iris.h: New file.
7401 * config/mips/t-slibgcc-irix: Renamed from t-iris5-6.
7403 2004-08-20 Richard Earnshaw <rearnsha@arm.com>
7405 * postreload.c (reload_cse_move2add): Allow any condjump, but check
7406 that the implicit set isn't clobbered in the jump insn.
7408 2004-08-19 Mark Mitchell <mark@codesourcery.com>
7410 * defaults.h (TARGET_LIBGCC_LIBFUNCS): Remove.
7411 * optabs.c (init_optabs): Don't check it.
7412 * config/arm/bpabi.h (TARGET_LIBGCC_LIBFUNCS): Do not define.
7413 * doc/tm.texi (TARGET_LIBGCC_FUNCS): Remove.
7415 2004-08-18 Andreas Krebbel <krebbel1@de.ibm.com>
7417 * config/s390/s390.md (s390_warn_framesize_string)
7418 (s390_warn_dynamic_string, s390_stack_size_string)
7419 (s390_stack_guard_string): New global string variables.
7420 (s390_warn_framesize, s390_warn_dynamicstack_p, s390_stack_size)
7421 (s390_stack_guard): New global variables.
7422 (override_options): Added checks for the new options.
7423 (s390_emit_prologue): Emit stack check and trap code and perform
7424 compile time stack size checking.
7426 * config/s390/s390.h (TARGET_OPTIONS): Added new options
7427 "warn-framesize", "warn-dynamicstack", "stack-size" and
7430 * doc/invoke.texi: Added documentation for the new options.
7432 2004-08-19 Ulrich Weigand <uweigand@de.ibm.com>
7434 * unwind-dw2-fde.c (get_cie_encoding): Cast argument to strlen
7435 to eliminate warning.
7436 (linear_search_fdes): Declare p as unsigned.
7437 (binary_search_mixed_encoding_fdes): Likewise.
7438 * unwind-dw2.c (get_cie_encoding): Cast argument to strlen
7439 to eliminate warning.
7440 * config/s390/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Add missing
7443 2004-08-19 Ulrich Weigand <uweigand@de.ibm.com>
7445 * config/s390/s390-protos.h (preferred_la_operand_p): Adapt prototype.
7446 * config/s390/s390.c (preferred_la_operand_p): Accept two operands
7447 instead of one. Check for strictly legitimate address.
7448 * config/s390/s390.md ("*la_31"/"*la_64" peepholes): Adapt call
7449 to preferred_la_operand_p, do not call gen_rtx_PLUS in predicate.
7451 2004-08-19 Eric Christopher <echristo@redhat.com>
7453 * langhooks-def.h (LANG_HOOKS_UNSAVE_EXPR_NOW): Remove.
7454 * langhooks.h (unsave_expr_now): Ditto.
7455 * tree.h (unsave_expr_1): Remove prototype.
7456 (lhd_unsave_expr_now): Rename to unsave_expr_now.
7457 * tree-inline.c (unsave_expr_1): Move here
7458 from tree.c. Make static.
7459 (unsave_expr_now): Rename from lhd_unsave_expr_now.
7460 * tree-sra.c: Fix up for rename.
7461 * tree-ssa-copy.c: Ditto.
7463 * tree.c (unsave_expr_1): Move to tree-inline.c.
7465 2004-08-19 Caroline Tice <ctice@apple.com>
7467 * config/i386/cygming.h (switch_to_section): Fix typo (change
7468 in_unlikely_text_section to in_unlikely_executed_text).
7470 2004-08-19 Daniel Berlin <dberlin@dberlin.org>
7472 * vec.h (VEC_lower_bound): New macro.
7474 2004-08-19 Richard Sandiford <rsandifo@redhat.com>
7477 * config/mips/mips.c (struct mips_arg_info): Delete num_bytes.
7478 (mips_arg_info): Update accordingly. Remove common treatment of fpr_p;
7479 treat each ABI separately. Deal with n32/n64 complex float arguments.
7480 (function_arg): Add associated complex handling here.
7482 2004-08-19 Richard Henderson <rth@redhat.com>
7484 * config/arm/arm.c (arm_gen_load_multiple): Use
7485 adjust_automodify_address. Take base memory and offset instead
7486 of unchanging/struct/scalar bits.
7487 (arm_gen_store_multiple): Likewise.
7488 (arm_gen_movmemqi): Use adjust_automodify_address.
7489 * config/arm/arm-protos.h: Update decls.
7490 * config/arm/arm.md (load_multiple): Update arm_gen_load_multiple call.
7491 (store_multiple): Similarly.
7493 2004-08-19 J"orn Rennecke <joern.rennecke@superh.com>
7495 * regclass.c (globalize_reg): Update call_really_used_regs.
7497 2004-08-19 Nathan Sidwell <nathan@codesourcery.com>
7499 * doc/invoke.texi (integer-share-limit): Document.
7501 * tree.h (TYPE_CACHED_VALUES_P): New.
7502 (TYPE_CACHED_VALUES): New.
7503 (TYPE_ORIG_SIZE_TYPE): Adjust.
7504 * tree.def (INTEGER_CST): Update documentation.
7505 * tree.c: Inlcude params.h.
7506 (build_int_cst): Cache small values.
7507 (build_type_copy): Do not copy the value cache.
7508 * c-common.c (c_common_nodes_and_builtins): Add comment, remove
7510 * c-typeck.c (build_c_cast): Add comment about OVERFLOW setting.
7511 * expmed.c (const_mult_add_overflow_p): Clear type copy's value
7513 * fold-const.c (force_fit_type): Copy value when setting
7515 (int_const_binop): Likewise.
7516 * stor-layout.c: Include params.h
7517 (set_sizetype): Create values cache.
7518 (fixup_unsigned_type): Set UNSIGNED_P before caching any values.
7519 * params.def (PARAM_INTEGER_SHARE_LIMIT): New.
7520 * params.h (INTEGER_SHARE_LIMIT): New.
7521 * Makefile.in (tree.o, stor-layout.o): Depend on PARAMS_H.
7523 2004-08-19 Paolo Bonzini <bonzini@gnu.org>
7525 * gimplify.c (gimplify_minimax_expr): Remove.
7526 (gimplify_expr) <MIN_EXPR, MAX_EXPR>: Remove special handling.
7528 2004-08-19 Dorit Naishlos <dorit@il.ibm.com>
7530 * tree-vectorizer.c (vect_can_force_dr_alignment_p): Replace
7531 STACK_BOUDARY with PREFERRED_STACK_BOUNDARY.
7533 2004-08-19 Mark Mitchell <mark@codesourcery.com>
7535 * bpabi.h (FPUTYPE_DEFAULT): Set it to FPUTYPE_VFP.
7537 2004-08-18 Andrew Pinski <apinski@apple.com>
7539 * varasm.c (ecode_reg_name): Do nothing if the asmspec is empty.
7541 2004-08-18 Mark Mitchell <mark@codesourcery.com>
7543 * config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility.
7544 (__aeabi_ul2f): Likewise.
7546 2004-08-18 Richard Henderson <rth@redhat.com>
7548 * config/xtensa/xtensa.c (xtensa_expand_block_move): Expand block
7549 move to rtl completely.
7550 (struct meminsnbuf, xtensa_emit_block_move): Remove.
7551 (xtensa_find_mode_for_size): Remove.
7552 * config/xtensa/xtensa-protos.h (xtensa_emit_block_move): Remove.
7553 * config/xtensa/xtensa.md (movmemsi_internal): Remove.
7555 2004-08-18 Richard Henderson <rth@redhat.com>
7557 * config/mcore/mcore.c (mode_from_align): Remove DImode.
7558 (block_move_sequence): Rewrite to use adjust_address.
7559 (mcore_expand_block_move): Cleanup logic. Accept only operands.
7560 Return boolean indicating success/failure.
7561 * config/mcore/mcore-protos.h (mcore_expand_block_move): Update decl.
7562 * config/mcore/mcore.md (movmemsi): Update to match.
7564 2004-08-18 Mike Stump <mrs@apple.com>
7566 * doc/invoke.texi (-mfix-and-continue): Add support for
7567 fast turn around debugging.
7568 (-ffix-and-continue): Likewise.
7569 (-mindirect-data): Likewise.
7570 (-findirect-data): Likewise.
7571 * config/darwin.c (TARGET_FIX_AND_CONTINUE): Likewise.
7572 (indirect_data): Likewise.
7573 (machopic_data_defined_p): Likewise.
7574 (machopic_output_indirection): Likewise.
7575 (darwin_encode_section_info): Likewise.
7576 (darwin_fix_and_continue): Likewise.
7577 (darwin_fix_and_continue_switch): Likewise.
7578 * config/darwin.h (MACHO_SYMBOL_STATIC): Likewise.
7579 * config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Likewise.
7580 (SUBTARGET_OPTION_TRANSLATE_TABLE): Likewise.
7581 (SUBTARGET_OPTIONS): Likewise.
7582 (darwin_fix_and_continue): Likewise.
7583 (darwin_fix_and_continue_switch): Likewise.
7584 (TARGET_FIX_AND_CONTINUE): Likewise.
7585 * config/rs6000.c (rs6000_emit_prologue): Likewise.
7587 2004-08-19 Steven Bosscher <stevenb@suse.de>
7589 * basic-block.h (struct edge_def): Remove crossing_edge.
7590 (EDGE_CROSSING): New define.
7591 (EDGE_ALL_FLAGS): Update.
7592 * bb-reorder.c (find_traces_1_round, better_edge_p,
7593 find_rarely_executed_basic_blocks_and_cr, fix_up_fall_thru_edges,
7594 find_jump_block, fix_crossing_conditional_branches,
7595 fix_crossing_unconditional_branches, add_reg_crossing_jump_notes):
7596 Replace all occurences of crossing_edge with an edge flag check
7598 * cfgcleanup.c (try_simplify_condjump, try_forward_edges,
7599 try_crossjump_bb): Likewise.
7600 * cfglayout.c (fixup_reorder_chain): Likewise.
7601 * cfgrtl.c (force_nonfallthru_and_redirect,
7602 commit_one_edge_insertion): Likewise.
7604 * Makefile.in (cfganal.o): Depend on TIMEVAR_H.
7605 * tree-flow.h (compute_dominance_frontiers): Move prototype...
7606 * basic-block.h: ...here.
7607 * tree-cfg.c (compute_dominance_frontiers_1,
7608 compute_dominance_frontiers): Move from here...
7609 * cfganal.c: ...to here. Include timevar.h.
7611 2004-08-18 James E Wilson <wilson@specifixinc.com>
7613 * config/mips/mips.h (ASM_SPEC): In comment, change -meabi= to -mabi=.
7614 * config/mips/sb1.md (ir_sb1_divsf_1pipe): Renamed from ...1pipes.
7616 * config/mips/mips.md (type): Add frdiv.
7617 (divsf3+1, divsf3+2): Change type to frdiv.
7618 * config/mips/sb1.md (ir_sb1_recipsf_2pipes, ir_sb1_recipsf_1pipe,
7619 ir_sb1_recipdf_2pipes, ir_sb1_recipdf_1pipe): New.
7621 * config/mips/3000.md (r3k_fdiv_single, r3k_fdiv_double): Add frdiv.
7622 * config/mips/4300.md (r4300_fdiv_single, r4300_fdiv_double): Likewise.
7623 * config/mips/4600.md (r4600_fdiv_single, f4600_fdiv_double): Likewise.
7624 * config/mips/5000.md (r5k_fdiv_single): Likewise.
7625 * config/mips/5400.md (ir_vr54_fdiv_sf, ir_vr54_fdiv_df): Likewise.
7626 * config/mips/5500.md (ir_vr55_fdiv_sf, ir_vr55_fdiv_df): Likewise.
7627 * config/mips/6000.md (r6k_fdiv_single, r6k_fdiv_double): Likewise.
7628 * config/mips/7000.md (rm7_fp_divsqrt_df, rm7_fp_divsqrt_sf): Likewise.
7629 * config/mips/9000.md (rm8k_fdivs, rm9k_fdivd): Likewise.
7630 * config/mips/generic.md (generic_fdiv_single, generic_fdiv_double):
7632 * config/mips/sr71k.md (ir_sr70_fdiv_sf, ir_sr70_fdiv_df): Likewise.
7634 2004-08-18 Robert Bowdidge <bowdidge@apple.com>
7636 * config/rs6000/x-darwin: Remove XCFLAGS -mdynamic-no-pic to
7637 get regression tester working again.
7639 2004-08-18 Zack Weinberg <zack@codesourcery.com>
7641 * insn-notes.def, reg-notes.def: New files.
7642 * rtl.h: Use them to define enum insn_note and enum reg_note.
7643 * rtl.c: Use them to define note_insn_name and reg_note_name.
7644 * Makefile.in (RTL_BASE_H): Update.
7646 * modulo-sched.c, sched-rgn.c, final.c: NOTE_DISABLE_SCHED_OF_BLOCK
7647 renamed to NOTE_INSN_DISABLE_SCHED_OF_BLOCK.
7649 2004-08-18 Richard Earnshaw <rearnsha@arm.com>
7651 * arm.c (arm_size_rtx_costs): New function.
7652 (arm_override_options): Use it if optimizing for space.
7654 2004-08-18 Richard Henderson <rth@redhat.com>
7656 * emit-rtl.c (gen_const_mem): New.
7657 * rtl.h (gen_const_mem): Declare.
7658 * expr.c (do_tablejump): Use it.
7659 * varasm.c (force_const_mem): Likewise.
7660 * config/darwin.c (machopic_indirect_data_reference): Likewise.
7661 (machopic_legitimize_pic_address): Likewise.
7662 * config/arm/arm.c (legitimize_pic_address): Likewise.
7663 * config/i386/i386.c (legitimize_pic_address): Likewise.
7664 (legitimize_tls_address): Likewise.
7665 * config/ia64/ia64.c (ia64_expand_tls_address): Likewise.
7666 * config/ia64/ia64.md (load_fptr): Likewise.
7667 * config/m32r/m32r.c (m32r_legitimize_pic_address): Likewise.
7668 * config/pa/pa.c (legitimize_pic_address): Likewise.
7669 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Likewise.
7670 (rs6000_emit_move): Likewise.
7671 * config/s390/s390.c (legitimize_pic_address): Likewise.
7672 (legitimize_tls_address): Likewise.
7673 * config/s390/s390.md (casesi): Likewise.
7674 * config/sh/sh.c (sh_reorg): Likewise.
7675 * config/sparc/sparc.c (legitimize_pic_address): Likewise.
7676 * config/v850/v850.md (casesi): Likewise.
7678 * config/darwin.c (machopic_indirect_call_target): Set MEM_NOTRAP_P.
7679 * config/sh/sh.c (prepare_move_operands): Remove incorrect
7680 use of MEM_READONLY_P.
7682 2004-08-18 Steven Bosscher <stevenb@suse.de>
7684 * Makefile.in (OBJS-common): Add postreload-gcse.c.
7685 Add new postreload-gcse.o.
7686 * cse.c (SAFE_HASH): Define as wrapper around safe_hash.
7687 (lookup_as_function, insert, rehash_using_reg, use_related_value,
7688 equiv_constant): Use SAFE_HASH instead of safe_hash.
7689 (exp_equiv_p): Export. Add for_gcse argument when comparing
7691 (lookup, lookup_for_remove, merge_equiv_classes, find_best_addr,
7692 find_comparison_args, fold_rtx, cse_insn): Update callers.
7693 (hash_rtx): New function derived from old canon_hash and bits
7694 from gcse.c hash_expr_1.
7695 (canon_hash_string): Rename to hash_rtx_string.
7696 (canon_hash, safe_hash): Make static inline. Call hash_rtx.
7697 * cselib.c (hash_rtx): Rename to cselib_hash_rtx.
7698 (cselib_lookup): Update this caller.
7699 * gcse.c (modify_mem_list_set, canon_modify_mem_list_set):
7701 (hash_expr): Call hash_rtx.
7702 (ldst_entry): Likewise.
7703 (expr_equiv_p): Call exp_equiv_p.
7704 (struct unoccr, hash_expr_1, hash_string_1, lookup_expr,
7705 reg_used_on_edge, reg_set_between_after_reload_p,
7706 reg_used_between_after_reload_p, get_avail_load_store_reg,
7707 is_jump_table_basic_block, bb_has_well_behaved_predecessors,
7708 get_bb_avail_insn, hash_scan_set_after_reload,
7709 compute_hash_table_after_reload,
7710 eliminate_partially_redundant_loads, gcse_after_reload,
7711 get_bb_avail_insn, gcse_after_reload_main): Remove.
7712 * postreload-gcse.c: New file, reincarnating most of the above.
7713 * rtl.h (exp_equiv_p, hash_rtx): New prototypes.
7714 (gcse_after_reload_main): Update prototype.
7715 * timevar.def (TV_GCSE_AFTER_RELOAD): New timevar.
7716 * passes.c (rest_of_handle_gcse2): Use it.
7718 2004-08-18 Diego Novillo <dnovillo@redhat.com>
7720 * tree-ssa-loop.c (pass_loop_init): Add TODO_dump_func.
7721 (pass_loop_done): Likewise.
7723 2004-08-18 Andrew Pinski <apinski@apple.com>
7725 * config/rs6000/darwin.md: Delete the altivec patterns which are
7726 handled differently now.
7727 (load_macho_picbase_di): Make sure that is only happens for TARGET_64BIT
7728 (macho_correct_pic_di): Likewise.
7729 (call_indirect_nonlocal_darwin64): Likewise.
7730 Delete the save world/saveFP/saveVec patterns.
7732 Revert the reversion of: 2004-08-16 Stan Shebs <shebs@apple.com>
7733 * config/darwin.c (macho_indirect_data_reference): Add DImode case.
7734 * config/rs6000/rs6000.md: Include darwin.md.
7735 (builtin_setjmp_receiver): Add DImode case.
7736 * config/rs6000/rs6000.c (rs6000_emit_move): Add DImode case to
7739 2004-08-18 Matt Austern <austern@apple.com>
7742 * darwin.h (EH_FRAME_SECTION_ATTR): Mark so it doesn't get stripped.
7743 * darwin.c (darwin_file_end): Mark file as potentially strippable.
7745 2004-08-18 Richard Henderson <rth@redhat.com>
7747 * alias.c (readonly_fields_p): Remove.
7748 (objects_must_conflict_p): Don't call it.
7749 * tree.h (readonly_fields_p): Remove.
7750 * langhooks.h (struct lang_hooks): Remove honor_readonly.
7751 * langhooks-def.h (LANG_HOOKS_HONOR_READONLY): Remove.
7753 2004-08-18 Diego Novillo <dnovillo@redhat.com>
7755 * tree-dfa.c (add_referenced_var): Only global variables are
7757 * tree-flow.h (struct ptr_info_def): Add field pt_global_mem.
7758 * tree-ssa-alias.c (compute_points_to_and_addr_escape): Mark
7759 all pointers dereferenced if the statement dereferences them.
7760 (create_name_tags): Do not create memory tags for pointers
7761 that have PT_ANYTHING set.
7762 Also check if PT_VARS is not empty before creating a name tag.
7763 (compute_flow_sensitive_aliasing): Don't mark call-clobbered
7764 variables that share the same alias set with a pointer that
7766 (add_may_alias): Add FIXME comment to remove clobbering
7767 aliased variables and tags.
7768 (replace_may_alias): Likewise.
7769 (set_pt_anything): Do not clear PT_VARS nor IS_DEREFERENCED.
7770 (merge_pointed_to_info): If the original variable has not
7771 points-to information, call set_pt_anything.
7772 (add_pointed_to_var): Do not prevent adding a pointed-to
7773 variable if the pointers is PT_ANYTHING.
7774 If the variable is a global, set PT_GLOBAL_MEM.
7775 (collect_points_to_info_r): Don't assume that PLUS_EXPRs of
7776 pointer type only come in PTR+OFFSET flavours.
7777 Always call merge_pointed_to_info on PHI arguments that are
7779 (get_nmt_for): Mark call-clobbered tags whose pointer points
7781 * tree-ssa-operands.c (opf_kill_def, opf_no_vops): Switch
7783 (get_indirect_ref_operands): Always clear OPF_KILL_DEF from
7785 (add_stmt_operand): Abort if the caller tried to add a killing
7786 definition for a memory tag.
7787 * tree-ssa.c (verify_flow_sensitive_alias_info): Remove
7790 2004-08-18 J"orn Rennecke <joern.rennecke@superh.com>
7792 * sh.h (CONDITIONAL_REGISTER_USAGE): Don't exclude fixed registers
7793 from call_used_regs. Update call_really_used_regs.
7794 (CALL_REALLY_USED_REGISTERS): Define.
7795 * sh.c (output_stack_adjust, shmedia_target_regs_stack_space):
7796 Replace call_used_regs with call_really_used_regs.
7797 (calc_live_regs, sh_media_register_for_return): Likewise.
7798 (sh5_schedule_saves, sh_expand_prologue, reg_unused_after): Likewise.
7799 * sh.md (return_media): Likewise.
7801 2004-08-18 Andrew Pinski <apinski@apple.com>
7803 * config/darwin.c (machopic_legitimize_pic_address): Only set
7804 MEM_READONLY_P in the non TARGET_TOC case.
7806 2004-08-18 Zack Weinberg <zack@codesourcery.com>
7808 * rtl.def (NIL): Delete.
7809 * read-rtl.c (read_rtx): Handle (nil) like (define_constants).
7810 Tighten the syntax a little.
7812 * cfgloop.h, combine.c, cse.c, loop-iv.c, postreload.c, reload.c
7813 * config/alpha/alpha.c, config/alpha/alpha.h, config/arc/arc.h
7814 * config/arm/arm.h, config/frv/frv.h, config/i386/i386.c
7815 * config/i386/predicates.md, config/m32r/m32r.h
7816 * config/m68hc11/m68hc11.c, config/mcore/mcore.h, config/mips/mips.c
7817 * config/mmix/mmix.c, config/pa/pa.h, config/sh/sh.h
7818 * config/sparc/sparc.h, doc/tm.texi:
7819 Replace all occurrences of NIL with UNKNOWN.
7821 2004-08-18 Zack Weinberg <zack@codesourcery.com>
7823 * dojump.c (do_jump <unordered_bcc>): Do not recursively call
7824 self with a TRUTH_ORIF_EXPR; generate the appropriate jump
7825 sequence inline. Move drop_through_label code into this
7826 block, being the only place it is used. Adjust comments.
7828 2004-08-18 Fariborz Jahanian <fjahanian@apple.com>
7830 * config/rs6000/altivec.md: Add new patterns for calls to
7831 save_world/rest_world functions.
7833 * config/rs6000/rs6000-protos.h: (save_world_operation,
7834 restore_world_operation) new declarations.
7836 * config/rs6000/rs6000.c: (struct rs6000_stack) new world_save_p
7838 (rs6000_stack_info): Set world_save_p field.
7839 (save_world_operation): New function.
7840 (restore_world_operation): New function.
7841 (compute_save_world_info): New function.
7842 (rs6000_stack_info): Call compute_save_world_info.
7843 (rs6000_emit_prologue): Check for world_save_p and generate
7844 pattern to call save_world for saving all non-volatile and
7846 (rs6000_emit_epilogue): Check for world_save_p and generate
7847 pattern to call rest_world to restore saved registers.
7849 config/rs6000/rs6000.h: macros FIRST_SAVED_ALTIVEC_REGNO,
7850 FIRST_SAVED_FP_REGNO, FIRST_SAVED_GP_REGNO defined.
7851 (rs6000_reg_names): New entries added for save_world_operation and
7852 restore_world_operation.
7854 2004-08-18 Caroline Tice <ctice@apple.com>
7856 * Makefile.in (STAGEFEEDBACK_FLAGS_TO_PASS) Add
7857 "-freorder-blocks-and-partition" to the flags used in second
7858 stage of profiledbootstrap.
7859 * bb-reorder.c (push_to_next_round_p): Add new variable,
7860 next_round_is_last; set and use variable to make sure, when
7861 partitioning, that the last trace construction round consists
7862 of all (and only) cold basic blocks.
7863 (rotate_loop): Don't copy blocks that end in a section
7865 (copy_bb): Correctly initialize "partition" of duplicated bb.
7866 (add_unlikely_executed_notes): Add a comment.
7867 (find_rarely_executed_basic_blocks_and_crossing_edges): Modify
7868 to make sure, if function contains hot blocks, that the
7869 successors of ENTRY_BLOCK_PTR are hot; also, only look for
7870 crossing edges if the architecture supports named sections.
7871 (mark_bb_for_unlikely_executed_section): Modify to always
7872 insert the NOTE_INSN_UNLIKELY_EXECUTED_CODE immediately after
7873 the basic block note insn.
7874 (fix_crossing_unconditional_branches): Remove extra space.
7875 (fix_edges_for_rarely_executed_code): Modify to only do
7876 partitioning work if the architecture supports named sections.
7877 (reorder_basic_blocks): Modify to only add
7878 NOTE_INSN_UNLIKELY_EXECUTED_CODE notes if the architecture
7879 supports named sections.
7880 * c-common.c (handle_section_attribute): Initialize new global
7881 variable, user_defined_section_attribute, to true if user has
7883 * cfgcleanup.c (try_forward_edges): Modify to not attempt to
7884 forward edges that cross section boundaries.
7885 * cfglayout.c (fixup_reorder_chain): Modify to only fix up
7886 partitioning information if the architecture supports named
7888 * cfgrtl.c (target.h): Add statement to include this.
7889 (rtl_split_block): Make sure newly created bb gets correct
7891 (try_redirect_by_replacing_jump): Make sure redirection isn't
7892 attempting to cross section boundaries.
7893 (force_nonfallthru_and_redirect): Only do partition fix up if
7894 architecture supports named sections.
7895 (rtl_split_edge): Make sure newly created bb ends up in
7897 (commit_one_edge_insertion): Remove code that incorrectly
7898 updated basic block partition; Make sure partition fix up only
7899 happens if architecture supports named sections and it's not
7901 (rtl_verify_flow_info_1): Fix if-condition on test/error
7902 condition that fallthru edges are not allowed to cross section
7904 * defaults.h (NORMAL_TEXT_SECTION_NAME): Remove this.
7905 * final.c (final_scan_insn): Remove redundant test from if-statement;
7906 change calls to text_section into calls to function_section; add code
7907 to only to partitioning fix up if architecture supports named
7909 * ifcvt.c (find_if_case_1): Make sure newly created bb has correct
7911 (if_convert): Add targetm.have_named_sections to test.
7912 * output.h (unlikely_section_label): Extern declaration for new global
7914 (unlikely_text_section_name): Likewise.
7915 * opts.c (decode_options): If both partitioning and DWARF debugging
7916 are turned on, issue a warning that this doesn't work, and change
7917 partitiong to basic block reordering (without hot/cold partitions).
7918 * passes.c (rest_of_handle_final): Re-set new global variable,
7919 user_defined_section_attribute, to false.
7920 (rest_of_compilation): Change options for calling partitioning
7921 function: Don't call if the user defined the section attribute, and
7922 don't call if DECL_ONE_ONLY is true for the current function.
7923 * predict.c (choose_function_section): Return immediately if we
7924 are doing hot/cold partitioning (i.e. let the basic block partitioning
7925 determine where the function belongs).
7926 * reg-stack.c (emit_swap_insn): Add condition to step over
7927 NOTE_INSN_UNLIKELY_EXECUTED_CODE notes.
7928 * toplev.c (user_defined_section_attribute): New global variable.
7929 * toplev.h (user_defined_section_attribute): Extern declaration
7930 for new global variable.
7931 * varasm.c (unlikely_section_label): New global variable.
7932 (unlikely_text_section_name): New global variable.
7933 (unlikely_text_section): Add code to initialize
7934 unlikely_text_section_name if necessary; modify to use
7935 unlikely_text_section_name and unlikely_section_label; also to use
7936 named_section properly.
7937 (in_unlikely_text_section): Modify to work correctly with
7938 named_section and to use unlikely_text_section_name.
7939 (named_section): Add code to work properly with cold section.
7940 (function_section): Clean up if-statement.
7941 * config/darwin.c (darwin_asm_named_section): Return to original
7942 code, removing use of SECTION_FORMAT_STRING.
7943 * config/arm/pe.h (switch_to_section): Add case for
7944 in_unlikely_executed_text to switch statement.
7945 * config/i386/cygming.h (switch_to_section): Likewise.
7946 * config/i386/darwin.h (NORMAL_TEXT_SECTION_NAME): Remove.
7947 (SECTION_FORMAT_STRING): Likewise.
7948 * config/mcore/mcore.h (switch_to_section): Likewise.
7949 * config/rs6000/darwin.h (NORMAL_TEXT_SECTION_NAME): Remove.
7950 (SECTION_FORMAT_STRING): Remove.
7952 2004-08-18 Roger Sayle <roger@eyesopen.com>
7954 * config/i386/i386.h (FIXED_REGISTERS): Update encoding to be
7955 -ffixed-reg safe, by preserving the meanings of zero and one.
7956 (CALL_USED_REGISTERS): Likewise.
7957 (CONDITIONAL_REGISTER_USAGE): Update to process new encodings.
7959 2004-08-18 Kaz Kojima <kkojima@gcc.gnu.org>
7961 * config/sh/sh.c (split_branches): Check the result of
7963 (sh_output_mi_thunk): Call init_flow if basic_block_info is null.
7964 Call rtl_register_cfg_hooks.
7966 2004-08-18 Richard Henderson <rth@redhat.com>
7968 * rtl.h (MEM_READONLY_P): Replace RTX_UNCHANGING_P.
7969 * alias.c (true_dependence): Update to match new semantics.
7970 (canon_true_dependence, write_dependence_p): Likewise.
7971 (anti_dependence, output_dependence): Update write_dependence_p args.
7972 (unchanging_anti_dependence): Remove.
7973 * calls.c (purge_mem_unchanging_flag): Remove.
7974 (fixup_tail_calls): Don't call it.
7975 (expand_call): Don't add unchanging memory to function usage.
7976 * expr.c (emit_block_move_via_libcall): Likewise.
7977 (clear_storage_via_libcall): Don't clobber RTX_UNCHANGING_P mems.
7978 (get_subtarget): Don't use RTX_UNCHANGING_P.
7979 (expand_assignment, store_constructor, expand_expr_real_1): Likewise.
7980 (do_tablejump): Set MEM_READONLY_P, not RTX_UNCHANGING_P.
7981 * combine.c (get_last_value_validate): Use MEM_READONLY_P.
7982 * cse.c (insert): Don't use RTX_UNCHANGING_P.
7983 (cse_insn, canon_hash): Use MEM_READONLY_P.
7984 * emit-rtl.c (set_mem_attributes_minus_bitpos): Use MEM_READONLY_P
7985 instead of RTX_UNCHANGING_P.
7986 * explow.c (maybe_set_unchanging): Remove.
7987 * expr.h (maybe_set_unchanging): Remove.
7988 * flow.c (insn_dead_p, mark_used_regs): Use anti_dependence.
7989 * function.c (assign_stack_temp_for_type): Don't use RTX_UNCHANGING_P.
7990 (assign_parm_setup_reg, expand_function_start): Likewise.
7991 * integrate.c (copy_rtx_and_substitute): Likewise.
7992 * ra-rewrite.c (emit_colors): Likewise.
7993 * regmove.c (copy_src_to_dest, regmove_optimize): Likewise.
7994 (fixup_match_1): Likewise.
7995 * reload1.c (reload, alter_reg): Likewise.
7996 * local-alloc.c (validate_equiv_mem): Check MEM_READONLY_P,
7997 not RTX_UNCHANGING_P.
7998 (equiv_init_varies_p): Likewise.
7999 * loop-invariant.c (check_maybe_invariant): Likewise.
8000 * resource.c (mark_referenced_resources, mark_set_resources): Likewise.
8001 * loop.c (note_addr_stored): Likewise.
8002 (prescan_loop): Likewise. Don't check function usage for clobbered
8004 * rtlanal.c (rtx_unstable_p): Check MEM_READONLY_P,
8005 not RTX_UNCHANGING_P.
8006 (rtx_varies_p, modified_between_p, modified_in_p): Likewise.
8007 * varasm.c (force_const_mem): Likewise.
8008 * stmt.c (expand_decl): Don't set RTX_UNCHANGING_P.
8009 * web.c (entry_register): Likewise.
8010 * tree-gimple.h (get_base_address): Move decl ...
8012 * doc/rtl.texi (MEM_READONLY_P): Replace RTX_UNCHANGING_P.
8014 * config/alpha/alpha.c (alpha_set_memflags_1): Rewrite to be
8015 called via for_each_rtx. Copy MEM_SCALAR_P, MEM_NOTRAP_P too.
8016 (alpha_set_memflags): Update to match.
8018 * config/darwin.c (machopic_indirect_data_reference): Set
8019 MEM_READONLY_P instead of RTX_UNCHANGING_P.
8020 (machopic_indirect_call_target): Likewise.
8021 (machopic_legitimize_pic_address): Likewise.
8022 * config/arm/arm.c (legitimize_pic_address, arm_gen_load_multiple,
8023 arm_gen_store_multiple, arm_gen_movmemqi): Likewise.
8024 * config/arm/arm.md (load_multiple, store_multiple): Likewise.
8025 * config/frv/frv.md (symGOT2reg): Likewise.
8026 * config/i386/i386.c (legitimize_pic_address,
8027 legitimize_tls_address, ix86_split_to_parts): Likewise.
8028 * config/ia64/ia64.c (ia64_expand_tls_address): Likewise.
8029 * config/ia64/ia64.md (load_fptr): Likewise.
8030 * config/m32r/m32r.c (m32r_legitimize_pic_address): Likewise.
8031 * config/m68k/m68k.c (legitimize_pic_address): Likewise.
8032 * config/mcore/mcore.c (block_move_sequence): Likewise.
8033 * config/mn10300/mn10300.md (symGOT2reg): Likewise.
8034 * config/pa/pa.c (legitimize_pic_address): Likewise.
8035 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Likewise.
8036 (rs6000_emit_move): Likewise.
8037 * config/s390/s390.c (legitimize_pic_address): Likewise.
8038 (legitimize_tls_address): Likewise.
8039 * config/s390/s390.md (casesi): Likewise.
8040 * config/sh/sh.c (prepare_move_operands, sh_reorg): Likewise.
8041 * config/sh/sh.md (symGOT2reg): Likewise.
8042 * config/sparc/sparc.c (legitimize_pic_address): Likewise.
8043 * config/v850/v850.md (casesi): Likewise.
8045 * config/ia64/ia64.c (gen_thread_pointer): Don't set RTX_UNCHANGING_P.
8046 * config/iq2000/iq2000.c (save_restore_insns): Likewise.
8047 * config/mips/mips.c (mips_restore_gp): Likewise.
8048 (mips_save_restore_reg, mips16_gp_pseudo_reg): Likewise.
8049 * config/sh/sh.c (sh_reorg): Likewise.
8051 2004-08-18 Richard Henderson <rth@redhat.com>
8053 * tree.h (struct tree_decl): Add gimple_formal_temp.
8054 (DECL_GIMPLE_FORMAL_TEMP_P): New.
8055 * gimplify.c (pop_gimplify_context): Clear it.
8056 (lookup_tmp_var): Set it, if is_formal.
8057 (gimplify_init_constructor): Use rhs_predicate_for for COMPLEX.
8058 Use is_gimple_val for VECTOR. Simplify return value.
8059 (gimplify_save_expr): Use and set DECL_GIMPLE_FORMAL_TEMP_P.
8060 (gimplify_expr): Likewise.
8061 * tree-gimple.c (is_gimple_formal_tmp_rhs): Rename from
8062 is_gimple_tmp_rhs for clarity. Update all callers.
8063 (is_gimple_reg_rhs): Simplify logic.
8064 (is_gimple_formal_tmp_var): Rename from is_gimple_tmp_var for
8065 clarity; use DECL_GIMPLE_FORMAL_TEMP_P.
8066 (is_gimple_formal_tmp_reg): Similarly.
8067 * tree-gimple.h: Update decls.
8068 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Use
8069 DECL_IGNORED_P, not DECL_ARTIFICIAL. Tidy formatting.
8070 * tree-ssa-live.c (var_union, type_var_init): Likewise.
8072 2004-08-18 Paolo Bonzini <bonzini@gnu.org>
8074 * c4x.c (legitimize_operands): Remove calls to
8075 preserve_subexpressions_p.
8077 2004-08-18 David Edelsohn <edelsohn@gnu.org>
8079 * varasm.c (MAX_OFILE_ALIGNMENT): Move ...
8080 * defaults.h (MAX_OFILE_ALIGNMENT): ... here.
8082 2004-08-18 Ziemowit Laski <zlaski@apple.com>
8084 * gcc.c (default_compilers): Add info about ".mm", ".M" and ".mii"
8085 Objective-C++ extensions.
8086 * gengtype.c (get_file_basename): Match entire subdirectory name
8087 ('cp', 'objc', 'objcp') rather than just its suffix.
8088 (get_base_file_bitmap): Allow for files to belong to more than one
8090 (get_output_file_with_visibility): Treat objc/objc-act.h as a header
8091 used by more than one front-end.
8093 2004-08-18 Richard Earnshaw <rearnsha@arm.com>
8095 * arm.md (addsi3, subsi3, andsi3, iorsi3, movsi, movhi): Rework to
8096 avoid use of preserve_subexpressions_p.
8098 2004-08-17 Richard Henderson <rth@redhat.com>
8101 * tree-sra.c (scalarize_use): Mark all v_defs for !is_output too.
8103 2004-08-17 DJ Delorie <dj@redhat.com>
8105 * doc/extend.texi: Document new xstormy16 attribute.
8107 * config/stormy16/stormy16.c (xstormy16_splittable_below100_operand): New.
8108 (xstormy16_splittable_below100_or_register): New.
8110 (xstormy16_reorg): New.
8111 (TARGET_MACHINE_DEPENDENT_REORG): Define.
8113 * config/stormy16/stormy16.md (movqi_internal): Make name public.
8114 (movhi_internal): Likewise.
8115 (cbhranchhi): Likewise.
8116 (cbhranchhi_neg): Likewise.
8117 (andhi3): Only allow splittable below100 operands.
8119 (peephole2): New and/zero_extend->and peephole.
8120 (peephole2): New load/ior/save->set1 peephole.
8121 (peephole2): New load/and/save->clr1 peephole.
8122 (bclrx, bclrx2, bclr7, bclr15): New.
8123 (bsetx, bsetx2, bset7, bset15): New.
8125 * config/stormy16/stormy16.c (xstormy16_print_operand): Be more
8126 liberal about acceptable 'B' masks.
8128 * config/stormy16/stormy16-protos.h
8129 (xstormy16_asm_output_aligned_common, xstormy16_below100_symbol,
8130 xstormy16_below100_operand, xstormy16_below100_or_register,
8131 xstormy16_onebit_set_operand, xstormy16_onebit_clr_operand): New.
8132 (PREDICATE_CODES): Add new predicates.
8134 * config/stormy16/stormy16.c
8135 (xstormy16_asm_output_aligned_common, xstormy16_below100_symbol,
8136 xstormy16_below100_operand, xstormy16_below100_or_register,
8137 xstormy16_onebit_set_operand, xstormy16_onebit_clr_operand): New.
8138 (xstormy16_expand_iorqi3, xstormy16_expand_andqi3): New.
8139 (xstormy16_legitimate_address_p): Allow below100 symbols.
8140 (xstormy16_extra_constraint_p): Add 'W' for below100 operands.
8141 (xstormy16_expand_move): Leave below100 operands as-is.
8142 (xstormy16_encode_section_info): Encode below100 symbols.
8143 (xstormy16_strip_name_encoding): New.
8144 (xstormy16_print_operand): Print 'b' as shift mask.
8145 (xstormy16_attribute_table): Add below100 attributes.
8146 (xstormy16_handle_below100_attribute): New.
8148 * config/stormy16/stormy16.h (EXTRA_SECTIONS): add in_bss100.
8149 (XSTORMY16_SECTION_FUNCTION): New.
8150 (EXTRA_SECTION_FUNCTIONS): Define using the above.
8151 (ASM_OUTPUT_ALIGNED_DECL_COMMON, ASM_OUTPUT_ALIGNED_DECL_LOCAL): New.
8152 (ASM_OUTPUT_SYMBOL_REF): Handle encoded symbols.
8153 (ASM_OUTPUT_LABELREF): Define.
8155 * config/stormy16/stormy16.md (movqi_internal): Add below100 support.
8156 (movhi_internal): Add below100 support.
8157 (andhi3): Add below100 support.
8158 (iorhi3): Add below100 support.
8159 (iorqi3, iorqi3_internal, andqi3, andqi3_internal): New.
8161 2004-08-17 James E Wilson <wilson@specifixinc.com>
8163 * config/mips/mips.c (gen_conditional_move): Use GET_MODE (op0) instead
8164 of VOIDmode for comparison code mode.
8165 * config/mips/mips.md: For conditional move patterns, use mode of
8166 first compare operand for comparison mode, instead of VOIDmode.
8168 * config/mips/mips.md: Add canonical nmadd and nmsub patterns for both
8169 normal and -ffast-math code.
8171 2004-08-17 Mark Mitchell <mark@codesourcery.com>
8174 * doc/invoke.texi (-fkeep-inline-functions): Update documentation.
8176 2004-08-17 Robert Bowdidge <bowdidge@apple.com>
8178 * config/rs6000/x-darwin: Add -mdynamic-no-pic to gcc build flags.
8180 2004-08-17 Andreas Tobler <a.tobler@schweiz.ch>
8182 * config/rs6000/darwin.md (*call_nonlocal_darwin64): Add #else clause
8183 for non Darwin targets.
8184 (*call_value_nonlocal_darwin64): Likewise.
8186 2004-08-17 Fariborz Jahanian <fjahanian@apple.com>
8188 * config/rs6000/rs6000.c (rs6000_function_value): Check for
8189 altivec mode for altivec return register.
8191 2004-08-17 David Edelsohn <edelsohn@gnu.org>
8193 Revert 2004-08-16 Stan Shebs <shebs@apple.com>
8194 * config/darwin.c (macho_indirect_data_reference): Add DImode case.
8195 * config/rs6000/rs6000.md: Include darwin.md.
8196 (builtin_setjmp_receiver): Add DImode case.
8197 * config/rs6000/rs6000.c (rs6000_emit_move): Add DImode case to
8200 2004-08-17 Dorit Naishlos <dorit@il.ibm.com>
8202 * tree-vectorizer.c: New File: loop vectorization on SSAed GIMPLE
8204 * tree-vectorizer.h: New File: Same.
8205 * Makefile.in (tree-vectorizer.c, tree-vectorizer.h): Add new files.
8206 * common.opt (ftree-vectorize): New flag to enable vectorization.
8207 * timevar.def (TV_TREE_VECTORIZATION): New dump file for
8209 * tree-data-ref.h (init_data_ref): Additional argument.
8210 (array_base_name_differ_p): Moved to tree-data-ref.c.
8211 * tree-data-ref.c (array_base_name_differ_p): Revised.
8212 (initialize_data_dependence_relation): Call array_base_name_differ_p
8213 with an extra argument.
8214 (analyze_all_data_dependences): Same.
8215 (init_data_ref): Additional argument is_read to set DR_IS_READ.
8216 * tree-ssa-phiopt.c (empty_block_p): Expose for usage out of this
8218 * tree-flow.h (vectorize_loops, empty_block_p): Add declaration.
8219 * tree-optimize.c (pass_vectorize): Schedule the vectorization pass.
8220 * tree-pass.h (tree_opt_pass pass_vectorize): Declare the new
8222 * tree-ssa-loop.c (tree_ssa_loop_init): Call scev_initialize.
8223 (tree_ssa_loop_done): Call scev_finalize.
8224 (tree_vectorize): Define the new vectorization pass.
8225 * defaults.h (UNITS_PER_SIMD_WORD): Allow targets to specify the
8226 size of the vector they support (until support for multiple vector
8227 sizes is added to the vectorizer).
8228 * config/i386/i386.h (UNITS_PER_SIMD_WORD): Define.
8229 * config/rs6000/rs6000.h (UNITS_PER_SIMD_WORD): Define.
8230 * invoke.texi (fdump-tree-vect, ftree-vectorize): Add
8233 2004-08-17 Nathan Sidwell <nathan@codesourcery.com>
8235 * objc/objc-act.c (build_protocol_initializer): Fix build_int_cst
8237 (generate_protocol_list, handle_impent): Likewise.
8239 2004-08-17 Roger Sayle <roger@eyesopen.com>
8241 * regclass.c (init_reg_sets_1): Add ENABLE_CHECKING sanity tests to
8242 ensure that call_used_regs is a superset of both fixed_regs and
8243 call_really_used_regs.
8245 2004-08-17 Daniel Bornstein <danfuzz@milk.com>
8248 * arm.md (addsi3_cbranch_scratch): Correct case labels.
8250 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
8253 * fold-const.c (fold): Check for integer operand when
8254 folding (A >> N) & 1 ? (1 << N) : 0. Fix from Andrew
8255 Pinski <pinskia@physics.uc.edu>.
8257 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
8259 * configure.ac: Trust toplevel's notion of BISON/FLEX/MAKEINFO.
8260 No need to check if in a cross configuration.
8261 * configure: Regenerate.
8263 * calls.c (precompute_register_parameters):
8264 Inline preserve_subexpressions_p ().
8265 * expmed.c (expand_mult_const, emit_store_flag): Likewise.
8266 * optabs.c (expand_binop, expand_twoval_binop, prepare_cmp_insn):
8268 * expr.c (get_subtarget): Likewise.
8269 * rtl.h (preserve_subexpressions_p): Remove.
8270 * stmt.c (preserve_subexpressions_p): Remove.
8272 * dojump.c (do_jump) <COND_EXPR, EQ_EXPR, NE_EXPR,
8273 TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR, COMPOUND_EXPR>:
8274 Abort on gimplified cases.
8276 2004-08-16 James E Wilson <wilson@specifixinc.com>
8278 * tree.h (VECTOR_FLOAT_TYPE_P): New.
8279 (FLOAT_TYPE_P): Use it.
8280 * c-typeck.c (build_binary_op): After convert calls, check for
8281 check for ERROR_MARK operands.
8283 2004-08-16 Zack Weinberg <zack@codesourcery.com>
8285 * Makefile.in (BUILD_PREFIX, BUILD_PREFIX_1): Delete.
8286 (BUILD_RTL, BUILD_PRINT, BUILD_ERRORS, BUILD_VARRAY): Update.
8287 (genobjs): Add build-rtl.o, build-print-rtl.o, build-varray.o.
8288 (genobjs static pattern rule): Remove %.c dependency.
8289 ($(BUILD_PREFIX_1)rtl.o, print-rtl.o, $(BUILD_PREFIX_1)varray.o):
8290 Rename rules; delete commands; fix dependencies.
8291 (mostlyclean): Do not delete temporary source copies.
8292 * configure.ac: Delete all references to BUILD_PREFIX and
8294 * configure: Regenerate.
8296 * print-rtl.c: Include bconfig.h #ifdef GENERATOR_FILE.
8297 Do not include tree.h, real.h, flags.h, hard-reg-set.h, or
8298 basic-block.h #ifdef GENERATOR_FILE. Surround some more code
8299 with #ifndef GENERATOR_FILE so that nothing from those headers
8302 * rtl.c, varray.c: Include bconfig.h #ifdef GENERATOR_FILE.
8304 2004-08-16 Adam Nemet <anemet@lnxw.com>
8306 * Makefile.in (LIBS): Move $(LIBIBERTY) after $(BANSHEELIB).
8308 2004-08-16 Andrew Pinski <apinski@apple.com>
8310 * target-def.h (TARGET_EH_RETURN_FILTER_MODE): Remove
8311 extraneous semicolon.
8313 2004-08-16 Devang Patel <dpatel@apple.com>
8315 * c-common.c (handle_used_attribute): Set DECL_PRESERVE_P.
8316 * print-tree.c (print_node): Print DECL_PRESERVE_P.
8317 * target-def.h (TARGET_ASM_MARK_DECL_PRESERVED): New #define.
8318 (TARGET_ASM_OUT): New member, TARGET_ASM_MARK_DECL_PRESERVED
8319 * target.h (struct gcc_target): New member, mark_decl_preserved.
8320 * hooks.c (hook_void_charptr): Rename to ...
8321 (hook_void_constcharptr): ... new name.
8322 * hooks.h (hook_void_charptr): Rename to ..
8323 (hook_void_constcharptr): ... new name.
8324 * tree.h (DECL_PRESERVE_P): New #define.
8325 (struct tree_decl): New member, preserve_flag.
8326 * varasm.c (assemble_start_function): Mark decl preserved.
8327 (assemble_variable): Same.
8328 * darwin.c (darwin_mark_decl_preserved): New function.
8329 * darwin.h (TARGET_ASM_MARK_DECL_preserved): New #define.
8330 * darwin-protos.h (darwin_mark_decl_preserved): New decl.
8331 * doc/tm.texi (TARGET_ASM_MARK_DECL_PRESERVED): Document.
8333 2004-08-16 Joseph S. Myers <jsm@polyomino.org.uk>
8335 * c-decl.c (grokdeclarator): Allow for function definition where
8336 innermost declarator has attributes.
8338 2004-08-16 Fariborz Jahanian <fjahanian@apple.com>
8340 * except.c (get_exception_filter, build_post_landing_pads,
8341 dw2_build_landing_pads): Use target-specific mode for 'filter'.
8342 * target-def.h (TARGET_EH_RETURN_FILTER_MODE): macro defined and used.
8343 * target.h (eh_return_filter_mode): New field added.
8344 * targhooks.c (default_eh_return_filter_mode): Defined.
8345 * targhooks.h (default_eh_return_filter_mode): Declared.
8346 * config/rs6000/rs6000.c (rs6000_eh_return_filter_mode): Defined.
8348 2004-08-16 Nathanael Nerode <neroden@gcc.gnu.org>
8350 * configure.ac: Replace _GCC_TOPLEV_NONCANONICAL_TARGET with
8351 ACX_NONCANONICAL_TARGET; remove now-unneeded AC_SUBST.
8352 * configure: Regenerate.
8354 2004-08-16 Stan Shebs <shebs@apple.com>
8356 Basic support for 64-bit Darwin.
8357 * config/darwin.c (macho_indirect_data_reference): Add DImode case.
8358 (machopic_legitimize_pic_address): Similarly, plus use Pmode
8360 * config/rs6000/darwin.h (PTRDIFF_TYPE): Be "long int" if 64-bit.
8361 (TARGET_OS_CPP_BUILTINS): Add 64-bit preprocessor macro.
8362 (SUBTARGET_SWITCHES): Add -m32 and -m64 flags.
8363 (SUBTARGET_OVERRIDE_OPTIONS): Require 64-bit processor if -m64.
8364 (PROCESSOR_DEFAULT64): Define.
8365 * config/rs6000/darwin.md: New file, patterns specific to 64-bit
8367 * config/rs6000/rs6000.md: Include darwin.md.
8368 (builtin_setjmp_receiver): Add DImode case.
8369 * config/rs6000/rs6000.c (TARGET_ASM_UNALIGNED_DI_OP): Define for
8371 (TARGET_ASM_ALIGNED_DI_OP): Ditto.
8372 (rs6000_emit_move): Add DImode case to Darwin bits.
8373 (machopic_output_stub): Use .quad if 64-bit.
8374 * invoke.texi: Document -m32 and -m64.
8376 2004-08-16 Janis Johnson <janis187@us.ibm.com>
8378 * doc/extend.texi (AltiVec builtins): Document additional differences
8379 from the Motorola AltiVec PIM.
8381 2004-08-16 Nathan Sidwell <nathan@codesourcery.com>
8383 * c-typeck.c (build_c_cast): Only copy overflow from expr nodes.
8384 * tree.h (IS_NON_TYPE_CODE_CLASS): Simplify.
8385 (struct tree_common): Update public_flag documentation.
8387 2004-08-16 Nathanael Nerode <neroden@gcc.gnu.org>
8389 * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
8390 Check for artificial variables, not is_gimple_tmp_var.
8391 * tree-ssa-live.c (var_union): Likewise.
8393 2004-08-16 Nathan Sidwell <nathan@codesourcery.com>
8395 * calls.c (load_register_parameters): Remove spurious FIXME token.
8397 2004-08-15 Ziemowit Laski <zlaski@apple.com>
8399 * Makefile.in (C_PRETTY_PRINT_H): Add c-pretty-print.h.
8400 (c-lang.o): Depend on c-objc-common.h.
8401 (c-objc-common.o): Depend on $(C_PRETTY_PRINT_H) and
8402 c-objc-common.h; remove duplicate $(C_TREE_H) dependency.
8403 * c-lang.c: Include c-objc-common.h.
8404 (LANG_HOOKS_FINISH, LANG_HOOKS_INIT_OPTIONS,
8405 LANG_HOOKS_INITIALIZE_DIAGNOSTICS, LANG_HOOKS_HANDLE_OPTION,
8406 LANG_HOOKS_MISSING_ARGUMENT, LANG_HOOKS_POST_OPTIONS,
8407 LANG_HOOKS_GET_ALIAS_SET, LANG_HOOKS_SAFE_FROM_P,
8408 LANG_HOOKS_EXPAND_EXPR, LANG_HOOKS_MARK_ADDRESSABLE,
8409 LANG_HOOKS_PARSE_FILE, LANG_HOOKS_TRUTHVALUE_CONVERSION,
8410 LANG_HOOKS_FINISH_INCOMPLETE_DECL, LANG_HOOKS_UNSAFE_FOR_REEVAL,
8411 LANG_HOOKS_STATICP, LANG_HOOKS_SET_DECL_ASSEMBLER_NAME,
8412 LANG_HOOKS_NO_BODY_BLOCKS, LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL,
8413 LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_FUNCTION_ENTER_NESTED,
8414 LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_DUP_LANG_SPECIFIC_DECL,
8415 LANG_HOOKS_DECL_UNINIT, LANG_HOOKS_RTL_EXPAND_STMT,
8416 LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE,
8417 LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN,
8418 LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS,
8419 LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P,
8420 LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING,
8421 LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS,
8422 LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN,
8423 LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION, LANG_HOOKS_TYPE_FOR_MODE,
8424 LANG_HOOKS_TYPE_FOR_SIZE, LANG_HOOKS_SIGNED_TYPE,
8425 LANG_HOOKS_UNSIGNED_TYPE, LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE,
8426 LANG_HOOKS_INCOMPLETE_TYPE_ERROR, LANG_HOOKS_TYPE_PROMOTES_TO,
8427 LANG_HOOKS_REGISTER_BUILTIN_TYPE, LANG_HOOKS_WRITE_GLOBALS):
8428 Move to c-objc-common.h.
8429 * c-objc-common.c: Include c-objc-common.h.
8430 * c-objc-common.h: New file.
8432 2004-08-15 Andreas Tobler <a.tobler@schweiz.ch>
8433 Andrew Pinski <pinskia@physics.uc.edu>
8436 * config/rs6000/darwin-tramp.asm (L_abort$stub): Change to new stub
8439 2004-08-15 Nathan Sidwell <nathan@codesourcery.com>
8441 * tree.h (build_int_cst): New.
8442 (build_int_2): Remove.
8443 * tree.c (build_int_2): Remove.
8444 (build_int_cst): New.
8445 (make_vector_type, build_common_tree_nodes,
8446 build_common_tree_nodes_2): Use build_int_cst.
8447 * builtins.c (expand_builtin_prefetch, expand_builtin_strstr,
8448 expand_builtin_strpbrk, expand_builtin_fputs,
8449 build_string_literal, expand_builtin_printf,
8450 expand_builtin_sprintf, fold_builtin_lround, fold_builtin_bitop,
8451 fold_builtin_bitop, fold_builtin_isascii, fold_builtin_toascii,
8452 fold_builtin_isdigit, simplify_builtin_strstr,
8453 simplify_builtin_strpbrk, fold_builtin_fputs,
8454 simplify_builtin_sprintf): Use build_int_cst.
8455 * c-common.c (start_fname_decls, fix_string_type,
8456 c_common_nodes_and_builtins, c_init_attributes,
8457 shorten_compare): Likewise.
8458 * c-decl.c (complete_array_type,
8459 check_bitfield_type_and_width): Likewise.
8460 * c-lex.c (interpret_integer, lex_charconst): Likewise.
8461 * c-parse.in (primary): <TYPES_COMPATIBLE_P> Likewise.
8462 * c-pretty-print.c (pp_c_integer_constant): Likewise.
8463 * c-typeck.c (really_start_incremental_init, push_init_level,
8464 set_nonincremental_init_from_string): Likewise.
8465 * calls.c (load_register_parameters): Likewise.
8466 * convert.c (convert_to_pointer): Likewise.
8467 * coverage.c (coverage_counter_alloc, tree_coverage_counter_ref,
8468 build_fn_info_type, build_ctr_info_value, build_gcov_info):
8470 * except.c (init_eh, assign_filter_values, assign_filter_values):
8472 * expmed.c (store_fixed_bit_field, extract_bit_field,
8473 extract_fixed_bit_field, extract_split_bit_field, expand_shift,
8474 expand_mult_const, expand_mult_highpart_adjust, extract_high_half,
8475 expand_sdiv_pow2, expand_divmod, make_tree): Likewise.
8476 * expr.c (convert_move, emit_group_load, emit_group_store,
8477 expand_assignment, store_constructor, store_field,
8478 expand_expr_real_1, reduce_to_bit_field_precision): Likewise.
8479 * fold-const.c (force_fit_type, int_const_binop, fold_convert_const,
8480 invert_truthvalue, optimize_bit_field_compare,
8481 decode_field_reference, all_ones_mask_p, constant_boolean_node,
8482 fold_div_compare, fold, fold_read_from_constant_string,
8483 fold_negate_const, fold_abs_const, fold_not_const): Likewise.
8484 * function.c (assign_parm_setup_block): Likewise.
8485 * stmt.c (shift_return_value, expand_end_case_type,
8486 estimate_case_costs): Likewise.
8487 * stor-layout.c (layout_type, initialize_sizetypes,
8488 set_min_and_max_values_for_integral_type): Likewise.
8489 * tree-chrec.c (chrec_fold_multiply_poly_poly,
8490 reset_evolution_in_loop): Likewise.
8491 * tree-chrec.h (build_polynomial_chrec): Likewise.
8492 * tree-complex.c (build_replicated_const): Likewise.
8493 * tree-eh.c (honor_protect_cleanup_actions,
8494 lower_try_finally_onedest, lower_try_finally_copy,
8495 lower_try_finally_switch): Likewise.
8496 * tree-mudflap.c (mf_build_string, mx_register_decls,
8497 mudflap_register_call, mudflap_enqueue_constant): Likewise.
8498 * tree-nested.c (get_trampoline_type, get_nl_goto_field): Likewise.
8499 * tree-pretty-print.c (dump_generic_node): Likewise.
8500 * tree-ssa-ccp.c (widen_bitfield, maybe_fold_offset_to_array_ref):
8502 * tree-ssa-dom.c (simplify_rhs_and_lookup_avail_expr): Likewise.
8503 * tree-ssa-loop-niter.c (number_of_iterations_cond,
8504 loop_niter_by_eval, upper_bound_in_type, lower_bound_in_type):
8507 * config/alpha/alpha.c (alpha_initialize_trampoline,
8508 alpha_va_start, alpha_gimplify_va_arg_1): Use build_int_cst.
8509 * config/arm/arm.c (arm_get_cookie_size): Likewise.
8510 * config/c4x/c4x.c (c4x_gimplify_va_arg_expr): Likewise.
8511 * config/i386/i386.c (ix86_va_start, ix86_gimplify_va_arg): Likewise.
8512 * config/i860/i860.c (i860_va_start): Likewise.
8513 * config/ia64/ia64.c (ia64_gimplify_va_arg): Likewise.
8514 * config/mips/mips.c (mips_build_builtin_va_list, mips_va_start,
8515 mips_gimplify_va_arg_expr): Likewise.
8516 * config/pa/pa.c (hppa_gimplify_va_arg_expr): Likewise.
8517 * config/rs6000/rs6000.c (rs6000_va_start, rs6000_gimplify_va_arg,
8518 add_compiler_branch_island): Likewise.
8519 * config/s390/s390.c (s390_va_start): Likewise.
8520 * config/sh/sh.c (sh_va_start): Likewise.
8521 * config/stormy16/stormy16.c (xstormy16_expand_builtin_va_start):
8523 * config/xtensa/xtensa.c (xtensa_va_start,
8524 xtensa_gimplify_va_arg_expr): Likewise.
8526 * objc/objc-act.c (build_objc_string_object,
8527 build_objc_symtab_template, init_def_list, init_objc_symtab,
8528 init_module_descriptor, generate_static_references,
8529 build_selector_translation_table, get_proto_encoding,
8530 build_typed_selector_reference, build_selector_reference,
8531 build_next_objc_exception_stuff,
8532 build_method_prototype_list_template, generate_descriptor_table,
8533 generate_protocols, build_protocol_initializer,
8534 build_ivar_list_template, build_method_list_template,
8535 build_ivar_list_initializer, generate_ivars_list,
8536 generate_dispatch_table, generate_protocol_list,
8537 build_category_initializer, build_shared_structure_initializer,
8538 generate_shared_structures, handle_impent,
8539 generate_objc_image_info): Use build_int_cst.
8541 2004-08-15 Ben Elliston <bje@au.ibm.com>
8543 * vec.h: Comment improvements.
8545 2004-08-14 Roger Sayle <roger@eyesopen.com>
8547 * c-common.c (shorten_compare, pointer_int_sum,
8548 c_common_truthvalue_conversion, boolean_increment): Replace calls
8549 to build with calls to buildN.
8550 * c-decl.c (complete_array_type, grokdeclarator): Likewise.
8551 * c-gimplify.c (c_build_bind_expr, gimplify_c_loop,
8552 gimplify_switch_stmt): Likewise.
8553 * c-typeck.c (default_function_array_conversion,
8554 build_component_ref, build_array_ref, build_function_call,
8555 pointer_diff, build_unary_op, build_conditional_expr,
8556 build_compound_expr, build_modify_expr, c_finish_goto_label,
8557 c_finish_goto_ptr, c_finish_return, c_finish_loop,
8558 c_finish_bc_stmt, c_finish_stmt_expr, c_end_compound_stmt,
8559 build_binary_op): Likewise.
8561 2004-08-15 Steven Bosscher <stevenb@suse.de>
8563 * rtl.c (note_insn_name): Add NOTE_DISABLE_SCHED_OF_BLOCK.
8565 2004-08-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8567 * fixinc/inclhack.def (stdio_va_list): Also fix com_err.h, cps.h,
8568 curses.h, krb5.h, lc_core.h, pfmt.h, wchar.h and curses_colr/curses.h.
8569 * fixinc/fixincl.x: Rebuilt.
8571 2004-08-14 Richard Sandiford <rsandifo@redhat.com>
8573 * config/mips/mips-protos.h (mips_symbolic_constant_p)
8574 (mips_atomic_symbolic_constant_p, mips_stack_address_p)
8575 (mips_small_data_pattern_p): Declare.
8576 * config/mips/mips.h (CONST_GP_P): Moved from mips.c.
8577 (PREDICATE_CODES, SPECIAL_MODE_PREDICATES): Delete.
8578 * config/mips/mips.c (mips_symbolic_constant_p): Make global.
8579 (mips_atomic_symbolic_constant_p, mips_stack_address_p): New functions.
8580 (uns_arith_operand, const_arith_operand, arith_operand, sle_operand)
8581 (sleu_operand, small_int, reg_or_0_operand, const_float_1_operand)
8582 (reg_or_const_float_1_operand, hilo_operand, extend_operator)
8583 (macc_msac_operand, equality_op, cmp_op, trap_cmp_op)
8584 (pc_or_label_operand, call_insn_operand, move_operand)
8585 (consttable_operand, symbolic_operand, general_symbolic_operand)
8586 (global_got_operand, local_got_operand, stack_operand)
8587 (fp_register_operand, lo_operand, fcc_register_operand): Delete.
8588 (mips_small_data_pattern_1): Renamed from small_data_pattern_1.
8589 (mips_small_data_pattern_p): Replace previous small_data_pattern
8590 predicate. Turn into a bool () (rtx) function.
8591 * config/mips/predicates.md: New file.
8592 * config/mips/mips.md: Include it. Use the target-independent
8593 comparison_operator instead of cmp_op. Rename trap_cmp_op to
8594 trap_comparison_operator and equality_op to equality_operator.
8595 Replace uses of small_int with the equivalent const_arith_operand.
8596 Rename reg_or_const_float_1_operand to reg_or_1_operand. Rename
8597 const_float_1_operand to const_1_operand. Rename fcc_register_operand
8598 to fcc_reload_operand.
8599 * config/mips/sb1.md: Rename fp_register_operand to fpr_operand.
8601 2004-08-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8603 PR libstdc++/17005 partial fix.
8604 * pa-hpux11.h (TARGET_OS_CPP_BUILTINS): Define _INCLUDE__STDC_A1_SOURCE
8605 except when generating ANSI/C89 code.
8607 2004-08-14 Nathan Sidwell <nathan@codesourcery.com>
8609 * c-common.c (shorten_compare): Use force_fit_type directly.
8611 2004-08-14 Gerald Pfeifer <gerald@pfeifer.com>
8612 Dimitri Papadopoulos-Orfanos <papadopo@shfj.cea.fr>
8613 Dave Korn <dk@artimi.com>
8615 * doc/install.texi (Building): Avoid duplicate reference to GNU
8617 (*-*-solaris2*): Do not recommend GNU make any longer. Simplify.
8619 2004-08-14 Richard Henderson <rth@redhat.com>
8621 * config/alpha/alpha.h (PROMOTE_MODE): Don't promote vector types.
8622 * config/alpha/alpha.c (function_value): Use PROMOTE_MODE.
8624 2004-08-13 Richard Henderson <rth@redhat.com>
8626 * config/i386/i386.md (call_1, sibcall_1, call_1_rex64): Use Pmode
8627 for constant_call_address_operand.
8628 (call_value_pop_1, call_value_1): Likewise.
8629 (sibcall_value_1, call_value_1_rex64): Likewise.
8631 2004-08-13 James E Wilson <wilson@specifixinc.com>
8633 * config/mips/sb1.md (ir_sb1_divdf_2pipes, ir_sb1_divdf_1pipe):
8634 Correct mode from SFmode to DFmode.
8636 2004-08-13 Ziemowit Laski <zlaski@apple.com>
8638 * config/darwin.h (EXTRA_SECTION_FUNCTIONS): Mark the __sel_fixup,
8639 __cstring_object and __image_info sections with the no_dead_strip
8642 2004-08-13 Roger Sayle <roger@eyesopen.com>
8643 David Billinghurst <David.Billinghurst@riotinto.com>
8645 PR libgfortran/15930
8646 * fixinc/inclhack.def (irix___generic1, irix___generic2): New.
8647 * fixinc/fixincl.x: Regenerate.
8648 * fixinc/tests/base/internal/math_core.h: New file.
8650 2004-08-13 Richard Henderson <rth@redhat.com>
8652 * dbxout.c (NO_DBX_FUNCTION_END): Default to zero.
8653 (dbxout_function_end): Remove ifdefs for it.
8654 (dbxout_begin_prologue): Protect N_BNSYM with it, and gdb extensions.
8656 2004-08-13 Richard Henderson <rth@redhat.com>
8658 * Makefile.in (insn-preds.o): Depend on TREE_H.
8659 * genpreds.c (write_insn_preds_c): Include tree.h.
8660 * config/alpha/alpha.c (reg_or_0_operand, reg_or_6bit_operand,
8661 reg_or_8bit_operand, cint8_operand, add_operand, sext_add_operand,
8662 const48_operand, and_operand, or_operand, mode_width_operand,
8663 mode_mask_operand, mul8_operand, const0_operand,
8664 hard_fp_register_operand, hard_int_register_operand,
8665 reg_or_cint_operand, some_operand, some_ni_operand, input_operand,
8666 samegp_function_operand, direct_call_operand, small_symbolic_operand,
8667 global_symbolic_operand, call_operand, symbolic_operand,
8668 dtp16_symbolic_operand, dtp32_symbolic_operand,
8669 gotdtp_symbolic_operand, tp16_symbolic_operand, tp32_symbolic_operand,
8670 gottp_symbolic_operand, alpha_comparison_operator,
8671 alpha_zero_comparison_operator, alpha_swapped_comparison_operator,
8672 signed_comparison_operator, alpha_fp_comparison_operator,
8673 divmod_operator, fix_operator, aligned_memory_operand,
8674 unaligned_memory_operand, reg_or_unaligned_mem_operand,
8675 any_memory_operand, reg_not_elim_operand, normal_memory_operand,
8676 reg_no_subreg_operand, addition_operation): Move to predicates.md.
8677 (reg_or_const_int_operand): Remove. Replace all users with
8678 reg_or_cint_operand.
8679 (tls_symbolic_operand_1): Export. Don't check mode or for CONST.
8680 (resolve_reload_operand): Split out of aligned_memory_operand.
8681 * config/alpha/alpha-protos.h: Update for exports.
8682 * config/alpha/alpha.h (PREDICATE_CODES): Remove.
8683 * config/alpha/alpha.md: Include predicates.md.
8684 * config/alpha/predicates.md: New file.
8686 2004-08-13 Richard Sandiford <rsandifo@redhat.com>
8688 * genattrtab.c (insn_ent): Replace insn_code, insn_index and lineno
8689 fields with a pointer to the instruction definition.
8690 (get_attr_value, fill_attr, make_length_attrs, remove_insn_ent)
8691 (insert_insn_ent, simplify_test_exp, optimize_attrs, write_attr_get)
8692 (write_attr_case, write_const_num_delay_slots): Update accordingly.
8693 (write_attr_case, write_const_num_delay_slots): Write the name of
8694 an insn next to its case statement.
8695 * genoutput.c (data): Add a filename field.
8696 (gen_insn, gen_peephole, gen_expand, gen_split): Set it.
8697 (output_insn_data): Print the location of each insn definition.
8698 * genrecog.c (write_action): Print the name of an insn above
8699 the statement that returns its code.
8701 2004-08-12 Andrew Pinski <pinskia@physics.uc.edu>
8703 * config/darwin-c.c (find_subframework_file): Fix spelling of cannot.
8704 * config/libgloss.h: Likewise.
8705 * config/arm/arm.c (arm_gen_load_multiple): Likewise.
8706 * c4x/c4x-modes.def: Likewise.
8707 * config/c4x/c4x.c (c4x_hard_regno_rename_ok): Likewise.
8708 (c4x_rptb_nop_p): Likewise.
8709 (c4x_rptb_valid_p): Likewise.
8710 (c4x_rptb_insert): Likewise.
8711 (c4x_address_conflict): Likewise.
8712 * config/c4x/c4x.md: Likewise.
8713 * config/frv/frv.md: Likewise.
8714 * config/i386/athlon.md: Likewise.
8715 * config/i386/i386.md: Likewise.
8716 * config/i386/predicates.md: Likewise.
8717 * config/ia64/ia64.c: Likewise.
8718 * config/ia64/itanium1.md: Likewise.
8719 * config/ia64/itanium2.md: Likewise.
8720 * config/iq2000/iq2000.md: Likewise.
8721 * config/mcore/mcore.c: Likewise.
8722 * config/mips/mips.c: Likewise.
8723 * config/mips/r3900.h: Likewise.
8724 * config/mips/sb1.md: Likewise.
8725 * config/pa/milli64.S: Likewise.
8726 * config/pa/pa.c: Likewise.
8727 * config/pa/pa.h: Likewise.
8728 * config/rs6000/8540.md: Likewise.
8730 2004-08-13 Daniel Berlin <dberlin@dberlin.org>
8732 * Makefile.in (BOOT_CFLAGS): Remove accidental addition of -dU.
8734 2004-08-13 J"orn Rennecke <joern.rennecke@superh.com>
8736 * sh.md (cbranch define_delay) Use cond_delay_slot for
8737 non-anulled condition too.
8739 2004-08-12 David Edelsohn <edelsohn@gnu.org>
8741 * config/rs6000/rs6000.c (any_parallel_operand): New predicate.
8742 * config/rs6000/rs6000.h (PREDICATE_CODES): Add
8743 any_parallel_operand, lmw_operation, stmw_operation,
8744 mfcr_operation, mtcrf_operation. Remove PARALLEL from any_operand.
8745 * config/rs6000/rs6000.md (save_fpregs_{si,di}): Use
8746 any_parallel_operand.
8747 (return_and_restore_fpregs_{si,di}): Same.
8749 2004-08-12 Zack Weinberg <zack@codesourcery.com>
8751 * genrecog.c (add_to_sequence): When processing a MATCH_PARALLEL,
8752 if pred->singleton != PARALLEL, issue a warning and pretend it was.
8753 Also issue a warning for any predicate we don't know about.
8755 2004-08-12 Richard Henderson <rth@redhat.com>
8757 * config/i386/i386.c (internal_label_prefix): Export.
8758 (internal_label_prefix_len, struct ix86_address,
8759 ix86_decompose_address, maybe_get_pool_constant,
8760 ix86_fp_compare_code_to_integer, ix86_fp_comparison_codes,
8761 memory_address_length): Export.
8762 (any_fp_register_operand, fp_register_operand,
8763 register_and_not_any_fp_reg_operand, register_and_not_fp_reg_operand,
8764 x86_64_general_operand, x86_64_szext_general_operand,
8765 x86_64_nonmemory_operand, x86_64_movabs_operand,
8766 x86_64_szext_nonmemory_operand, x86_64_immediate_operand,
8767 x86_64_zext_immediate_operand, const_int_1_31_operand,
8768 symbolic_operand, pic_symbolic_operand, local_symbolic_operand,
8769 tls_symbolic_operand, global_dynamic_symbolic_operand,
8770 local_dynamic_symbolic_operand, initial_exec_symbolic_operand,
8771 local_exec_symbolic_operand, call_insn_operand, sibcall_insn_operand,
8772 constant_call_address_operand, const0_operand, const1_operand,
8773 const248_operand, const_0_to_3_operand, const_0_to_7_operand,
8774 const_0_to_15_operand, const_0_to_255_operand, incdec_operand,
8775 shiftdi_operand, reg_no_sp_operand, mmx_reg_operand,
8776 general_no_elim_operand, nonmemory_no_elim_operand,
8777 index_register_operand, q_regs_operand, flags_reg_operand,
8778 non_q_regs_operand, zero_extended_scalar_load_operand,
8779 vector_move_operand, no_seg_address_operand, sse_comparison_operator,
8780 ix86_comparison_operator, ix86_carry_flag_operator,
8781 fcmov_comparison_operator, promotable_binary_operator,
8782 cmp_fp_expander_operand, ext_register_operand, binary_fp_operator,
8783 mult_operator, div_operator, arith_or_logical_operator,
8784 memory_displacement_operand, cmpsi_operand, long_memory_operand,
8785 aligned_operand): Move to predicates.md as define_predicates.
8786 (tls_symbolic_operand_1): Remove.
8787 (x86_64_sign_extended_value): Merge into x86_64_immediate_operand.
8788 (x86_64_zero_extended_value): Merge into x86_64_zext_immediate_operand.
8789 (legitimize_address): Merge tls_symbolic_operand contents.
8790 (ix86_expand_move): Likewise.
8791 * config/i386/i386-protos.h: Update for exports.
8792 * config/i386/i386.h (EXTRA_CONSTRAINT): Update for renames.
8793 (PREDICATE_CODES, SPECIAL_MODE_PREDICATES): Remove.
8794 * config/i386/i386.md: Include predicates.md.
8795 * config/i386/predicates.md: New file.
8797 2004-08-13 Mark Mitchell <mark@codesourcery.com>
8800 * config/i386/winnt.c (i386_pe_mark_dllexport): Set
8802 (i386_pe_mark_dllimport): Likewise.
8803 (i386_pe_encode_section_info): Likewise, when overriding
8804 dllimport attribute.
8806 2004-08-12 Geoffrey Keating <geoffk@apple.com>
8808 * configure.ac: When testing for flex, nm, ar, and bison, check
8809 that they will actually be built.
8810 * configure: Regenerate.
8812 2004-08-12 Ulrich Weigand <uweigand@de.ibm.com>
8814 * config/s390/s390.h (MAX_FIXED_MODE_SIZE): Define.
8815 (MOVE_MAX_PIECES): Define.
8817 2004-08-12 Devang patel <dpatel@apple.com>
8819 * dbxout.c (dbxout_begin_prologue): New function.
8820 (dbx_debug_hooks): Use new begin prologue hook.
8821 (dbxout_function_end): Emit N_ENSYM.
8822 * stab.def (N_BNSYM, N_ENSYM): Define and document these two new stabs.
8824 2004-08-12 Janis Johnson <janis187@us.ibm.com>
8826 * config/rs6000/altivec.h (vec_dst): Fix C++ functions whose first
8829 * config/rs6000/rs6000.c (altivec_init_builtins): Fix argument type
8832 * doc/extend.texi (AltiVec builtins): Fix description for recent
8833 changes. Update operation list to match current support.
8835 2004-08-12 Andreas Krebbel <krebbel1@de.ibm.com>
8837 * config/s390/s390.c (struct s390_frame_layout): New struct as element
8838 of struct machine_function.
8839 (cfun->machine->frame_size): Moved into cfun->machine->frame_layout and
8841 (cfun->machine->save_fprs_p): Replaced by cfun_save_high_fprs and
8843 (cfun_frame_layout, cfun_save_high_fprs_p, cfun_gprs_save_area_size)
8844 (cfun_set_fpr_bit, cfun_fpr_bit_p): New macros.
8845 (s390_frame_area, s390_register_info): New functions.
8846 (s390_optimize_prolog): Renamed to s390_optimize_prologue. Added check
8848 (s390_return_addr_rtx, s390_return_address_offset)
8849 (s390_va_start, s390_gimplify_va_arg)
8850 (s390_emit_prologue, s390_emit_epilogue): Adjusted for new stack
8852 (s390_frame_info): Functionality partly moved to s390_register_info.
8853 Made adaptions for new stack layout.
8854 (save_gprs, restore_gprs): Changed meaning of second parameter and
8855 adapted all callers.
8857 * config/s390/s390.h (s390_backchain_string): New global variable.
8858 (MASK_BACKCHAIN): Removed definition.
8859 (TARGET_BACKCHAIN): Changed check.
8860 (TARGET_KERNEL_BACKCHAIN): New macro.
8861 (TARGET_SWITCHES): Removed entries of "backchain" and "no-backchain".
8862 (TARGET_OPTIONS): Added "backchain", "no-backchain" and
8864 (DYNAMIC_CHAIN_ADDRESS): Adjusted for new stack layouts.
8866 * config/s390/s390.md ("allocate_stack"): Added TARGET_KERNEL_BACKCHAIN
8867 as condition. Adjusted for new stack layout.
8869 * doc/invoke.texi: Added documentation for new option
8870 "-mkernel-backchain" and adjusted documentation of "-mbackchain" and
8873 2004-08-12 Paul Brook <paul@codesourcery.com>
8875 * config/arm/lib1funcs.asm (ARM_FUNC_ALIAS): Also alias _L__name.
8876 (aeabi_uidivmod, aeabi_idivmod): Provide thumb implementation.
8878 2004-08-12 David Daney <ddaney@avtrex.com>
8880 * java/gcj.texi: Add subsection on signal usage.
8882 2004-08-12 David Edelsohn <edelsohn@gnu.org>
8884 * expr.c (move_by_pieces): Set alignment for move to minimum of
8885 MOVE_MAX_PIECES mode alignment and the largest non-slow mode
8886 alignment, but not less than the original alignment.
8887 (move_by_pieces_ninsns): Same.
8888 (can_store_by_pieces): Similar for store with STORE_MAX_PIECES.
8889 (store_by_pieces_1): Same.
8891 2004-08-12 Diego Novillo <dnovillo@redhat.com>
8893 PR tree-optimization/16867
8894 * tree.c (is_global_var): New function.
8895 (needs_to_live_in_memory): Check for TREE_ADDRESSABLE.
8897 * tree.h (DECL_NEEDS_TO_LIVE_IN_MEMORY_INTERNAL): Remove.
8899 (is_global_var): Declare.
8900 * tree-dfa.c (dump_variable): Display global and addressable
8902 (add_referenced_var): Clarify documentation when marking
8903 variables call-clobbered.
8904 * tree-flow-inline.h (is_call_clobbered): Call is_global_var
8905 instead of needs_to_live_in_memory.
8906 (mark_call_clobbered): If the variable is a tag, mark it
8908 * tree-gimple.c (is_gimple_reg): Don't check for
8910 (is_gimple_non_addressable): Likewise.
8911 * tree-ssa-alias.c (get_nmt_for): Always check whether the tag
8912 needs to be marked call-clobbered.
8913 (setup_pointers_and_addressables): Call is_global_var instead
8914 of needs_to_live_in_memory.
8915 * tree-ssa-dce.c (need_to_preserve_store): Remove.
8916 Update all users with is_global_var.
8917 (mark_stmt_if_obviously_necessary): Fix processing of aliased
8918 stores. Don't check the virtual definitions. Rather, check
8919 whether the store is going into global memory.
8920 (find_obviously_necessary_stmts): Get the symbol from the PHI
8922 * tree-ssa-operands.c (get_call_expr_operands): Do not add
8923 clobbering may-defs if the call does not have side effects.
8925 2004-08-12 Jakub Jelinek <jakub@redhat.com>
8928 * output.h (default_function_rodata_section,
8929 default_no_function_rodata_section): New prototypes.
8930 * target.h (struct gcc_target): Add asm_out.function_rodata_section.
8931 * target-def.h (TARGET_ASM_FUNCTION_RODATA_SECTION): Define.
8932 (TARGET_ASM_OUT): Add it.
8933 * varasm.c (default_function_rodata_section,
8934 default_no_function_rodata_section): New functions.
8935 * final.c (final_scan_insn): Call
8936 targetm.asm_out.function_rodata_section instead of
8937 readonly_data_section.
8938 * config/darwin.h (TARGET_ASM_FUNCTION_RODATA_SECTION): Define.
8939 * config/mcore/mcore.c (TARGET_ASM_FUNCTION_RODATA_SECTION): Likewise.
8940 * config/ip2k/ip2k.c (TARGET_ASM_FUNCTION_RODATA_SECTION): Likewise.
8941 * config/rs6000/xcoff.h (TARGET_ASM_FUNCTION_RODATA_SECTION):
8943 * config/alpha/alpha.c (TARGET_ASM_FUNCTION_RODATA_SECTION): Likewise.
8944 * config/i386/cygming.h (TARGET_ASM_FUNCTION_RODATA_SECTION):
8946 * config/i386/i386-interix.h (TARGET_ASM_FUNCTION_RODATA_SECTION):
8948 * config/arm/pe.h (TARGET_ASM_FUNCTION_RODATA_SECTION): Likewise.
8949 * config/avr/avr.c (TARGET_ASM_FUNCTION_RODATA_SECTION): Likewise.
8950 * doc/tm.texi (TARGET_ASM_FUNCTION_RODATA_SECTION): Document.
8952 2004-08-12 Paul Brook <paul@codesourcery.com>
8954 * dwarf2out.h (dwarf2out_frame_finish): Conditionalize outputting eh
8956 * doc/tm.texi: Document interaction between TARGET_UNWIND_INFO and
8959 2004-08-12 Ben Elliston <bje@au.ibm.com>
8962 * config/rs6000/altivec.h: Change vector to __vector throughout.
8963 (Except for the `vector' macro itself).
8965 2004-08-12 Zack Weinberg <zack@codesourcery.com>
8967 * genpreds.c: Add capability to generate predicate bodies as
8968 well as function prototypes. Write function prototypes for
8969 the generic predicates too.
8970 (process_define_predicate, write_tm_preds_h, write_insn_preds_c)
8971 (write_predicate_subfunction, mark_mode_tests, add_mode_tests)
8972 (write_match_code, write_predicate_expr, write_one_predicate_function)
8973 (parse_option): New functions.
8974 (output_predicate_decls): Delete.
8975 (main): Read the machine description, process DEFINE_PREDICATE or
8976 DEFINE_SPECIAL_PREDICATE patterns, write tm-preds.h or insn-preds.c
8979 * genrecog.c (struct decision_test): Replace index with
8980 struct pred_data pointer.
8981 (next_index): Remove, unused.
8982 (pred_table, preds, special_mode_pred_table): Delete.
8983 (compute_predicate_codes, process_define_predicate): New functions.
8984 (validate_pattern, add_to_sequence, write_switch): Update for
8985 new data structures.
8986 (main): Handle DEFINE_PREDICATE and DEFINE_SPECIAL_PREDICATE.
8987 Check both error_count and have_error.
8989 * gensupport.c (in_fname, first_predicate): New globals.
8990 (define_pred_queue, define_pred_tail): New RTL-pattern queue.
8991 (predicate_table, last_predicate, old_pred_table)
8992 (old_special_pred_table): New statics.
8993 (hash_struct_pred_data, eq_struct_pred_data, lookup_predicate)
8994 (add_predicate, init_predicate_table): New functions.
8995 (process_rtx): Handle DEFINE_PREDICATE and DEFINE_SPECIAL_PREDICATE.
8996 (init_md_reader_args_cb): Use the global in_fname. No need to zero
8997 it or max_include_len. Call init_predicate_table.
8998 (read_rtx): Run the predicate queue after the attribute queue
8999 but before all the others.
9000 * gensupport.h (in_fname, struct pred_data, first_predicate)
9001 (lookup_predicate, add_predicate, FOR_ALL_PREDICATES): Declare.
9002 * rtl.def (MATCH_CODE, MATCH_TEST, DEFINE_PREDICATE)
9003 (DEFINE_SPECIAL_PREDICATE): New RTL codes.
9004 * dummy-conditions.c: Don't include bconfig.h, system.h,
9005 coretypes.h, tm.h, or system.h. Do include stddef.h.
9006 Duplicate declaration of struct c_test from gensupport.h.
9008 * Makefile.in (OBJS-common): Add insn-preds.o.
9009 (STAGESTUFF, .PRECIOUS): Add insn-preds.c.
9010 (insn-preds.c, insn-preds.o): New rules.
9011 (s-preds): Also generate insn-preds.c.
9012 (dummy-conditions.o, genpreds$(build_exeext), genpreds.o):
9013 Update dependencies.
9014 (print-rtl.o, print-rtl1.o): Correct dependencies.
9016 * recog.h: Delete prototypes of predicate functions.
9018 * doc/md.texi (Predicates): New section with complete
9019 documentation of operand/operator predicates. Remove some
9020 incomplete documentation of predicates from other places.
9021 * doc/tm.texi (Misc): Move SPECIAL_MODE_PREDICATES next to
9022 PREDICATE_CODES; indicate that both are deprecated in favor
9023 of define_predicate/define_special_predicate.
9025 * config/ia64/ia64.c: All predicate function definitions moved
9027 (small_addr_symbolic_operand, tls_symbolic_operand): Delete.
9028 (ia64_expand_load_address, ia64_expand_move):
9029 Check SYMBOL_REF_TLS_MODEL directly, don't use tls_symbolic_operand.
9031 * config/ia64/ia64.md: All predicates now defined here.
9032 (symbolic_operand): Is now a special predicate.
9034 * config/ia64/ia64.h: Declare ia64_section_threshold.
9035 (PREDICATE_CODES): Delete.
9037 2004-08-12 Richard Henderson <rth@redhat.com>
9039 * c-common.h (STATEMENT_LIST_HAS_LABEL): New.
9040 * c-semantics.c (add_stmt): Set it.
9041 * c-decl.c (finish_decl): Use it to create a new BIND_EXPR
9042 before instantiating a variable sized type.
9044 2004-08-12 Richard Henderson <rth@redhat.com>
9046 * stor-layout.c (round_up, round_down): Move ...
9047 * fold-const.c (round_up, round_down): ... here. Use
9048 multiple_of_p to avoid any arithmetic at all.
9050 2004-08-12 Richard Henderson <rth@redhat.com>
9052 * gimplify.c (struct gimplify_init_ctor_preeval_data): New.
9053 (gimplify_init_ctor_preeval_1): New.
9054 (gimplify_init_ctor_preeval): New.
9055 (gimplify_init_ctor_eval): New.
9056 (gimplify_init_constructor): Use them. Always gimplify the LHS
9059 2004-08-12 Ziemowit Laski <zlaski@apple.com>
9061 (This patch is part of merge of objc-improvements-branch
9064 * doc/frontends.texi: Mention Objective-C++ in addition to
9066 * doc/install.texi: Add 'obj-c++' to list of configurable
9068 * doc/invoke.texi: Rename Objective-C option headings to
9069 indicate they also apply to Objective-C++. List file
9070 extensions for Objective-C++ sources. Mention that
9071 ObjC and ObjC++ compilations may also use C and C++ options,
9072 respectively. Point users to doc/standards.texi for
9073 further info on ObjC and ObjC++.
9074 * doc/sourcebuild.texi: Mention the objcp/ directory and
9075 the Objective-C++ sources it contains.
9076 * doc/standards.texi: Update link to Apple ObjC site;
9077 add link to gcc readings.html WWW doc.
9079 2004-08-12 Alan Modra <amodra@bigpond.net.au>
9081 * config/rs6000/rs6000.c (function_arg_padding): Revert 2004-07-28
9082 and 2004-07-14 changes.
9084 2004-08-12 Paul Brook <paul@codesourcery.com>
9086 * doc/invoke.texi: Fix typo.
9088 2004-08-11 Devang Patel <dpatel@apple.com>
9090 * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Add -dead_strip
9091 and -no_dead_strip_inits_and_terms.
9093 * doc/invoke.texi (Darwin Options): Document -dead_strip and
9094 -no_dead_strip_inits_and_terms.
9096 2004-08-11 Paul Brook <paul@codesourcery.com>
9098 * config/arm/arm-protos.h (arm_finalize_pic) Rename ...
9099 (arm_load_pic_register): ... to this.
9100 * config/arm/arm.c (arm_finalize_pic): Rename ...
9101 (arm_load_pic_register): ... to this. Always output insns at the
9102 current location. Load via low reg in thumb mode.
9103 (arm_expand_prologue): Call arm_load_pic_register.
9104 (thumb_expand_prologue): Ditto.
9105 * config/arm/arm.h (FINALIZE_PIC): Remove.
9106 * config/arm/arm.md (builtin_setjmp_receiver): Call
9107 arm_load_pic_register.
9109 2004-08-11 Paul Brook <paul@codesourcery.com>
9111 * arm.c (thumb_force_lr_save): Add prototype.
9112 (thumb_compute_save_reg_mask): New function.
9113 (thumb_find_work_register): New function.
9114 (arm_get_frame_offsets): Use thumb_compute_save_reg_mask.
9115 (thumb_unexpanded_epilogue): Ditto. Remove redundant code.
9116 Don't clobber r3 when removing pretend args.
9117 (thumb_expand_prologue): Use thumb_compute_save_reg_mask.
9118 (thumb_output_function_prologue): Use new functions.
9119 (thumb_set_return_address): Use thumb_compute_save_reg_mask.
9120 * arm.h (THUMB_REG_PUSHED_P): Remove.
9122 2004-08-11 James E Wilson <wilson@specifixinc.com>
9124 PR rtl-optimization/16490
9125 * cfgrtl.c (cfg_layout_split_edge): Set global_live_at_start and
9126 global_live_at_end for new basic block if already set for other blocks.
9128 2004-08-11 David Edelsohn <edelsohn@gnu.org>
9130 * config/rs6000/rs6000.h (MAX_FIXED_MODE_SIZE): Define.
9132 * config/rs6000/rs6000.md (mfcr rlwinm patterns): Set length to 8.
9133 (mfcr rlwinm rlwinm patterns): Set length to 12.
9135 2004-08-11 Andrew MacLeod <amacleod@redhat.com>
9137 * tree-flow-inline.h (get_def_ops, get_use_ops, get_v_may_def_ops,
9138 get_vuse_ops,get_v_must_def_ops): Add operand structure reference.
9139 (get_v_may_def_result_ptr, get_v_may_def_op_ptr): New access struct.
9140 (start_ssa_stmt_operands): Delete.
9141 * tree-flow.h (struct stmt_ann_d): Replace operand vectors with new
9142 struct stmt_operands_d.
9143 (build_ssa_operands): New extern entry point.
9144 * tree-ssa-dom.c (record_equivalences_from_stmt): Remove operand
9145 building code, replace with create_ssa_artficial_load_stmt().
9146 * tree-ssa-operands.c (struct voperands_d): Delete.
9147 (allocate_v_may_def_optype): Allocate v_may_def_operand_type_t vector.
9148 (allocate_v_must_def_optype): Use sizeof (tree), not sizeof (tree *).
9149 (free_uses, free_defs, free_vuses, free_v_may_defs,
9150 free_v_must_defs): Remove dealloc parameter.
9151 (remove_vuses, remove_v_may_def, remove_v_must_defs): Delete.
9152 (finalize_ssa_defs, finalize_ssa_uses, finalize_ssa_v_may_defs,
9153 finalize_ssa_vuses, finalize_ssa_v_must_defs): Perform all operand
9154 vector comparisons, ssa_name reuse, and allocations here.
9155 (verify_start_operands): Delete.
9156 (finalize_ssa_stmt_operands): Set new operands by calling finalize
9158 (start_ssa_stmt_operands): Move from tree-flow-inline.h.
9159 (append_def, append_usei): Simplify to simple accumulation.
9160 (append_v_may_def, append_vuse, append_v_must_def): Simplify to avoiding
9161 duplicates and simple accumulation.
9162 (free_ssa_operands): Free vectors in a stmt_operand structure.
9163 (build_ssa_operands): New. Create a new stmt_operand structure from
9164 a stmt and an old set of stmt_operands.
9165 (get_stmt_operands): Simplify and call build_ssa_operands.
9166 (get_expr_operands, get_asm_expr_operands, get_indirect_ref_operands,
9167 get_call_expr_operands, add_stmt_operand, add_call_clobber_ops,
9168 add_call_read_ops): Don't pass prev_vops around anymore.
9169 (note_addressable): Return if no stmt annotation.
9170 (copy_virtual_operands): Access v_may_def operands through a struct.
9171 (create_ssa_artficial_load_stmt): New. Create a load stmt for DOM's
9172 hash tables without treating the stmt as a real stmt.
9173 * tree-ssa-operands.h (struct v_may_def_operand_type): New. Access
9174 v_may_def def and use through a struct instead of 2 array elements.
9175 (struct v_may_def_optype_d): Use v_may_def_operand_type.
9176 (struct stmt_operands_d): New. Struct for storing all operand vectors.
9178 2004-08-11 Nick Clifton <nickc@redhat.com>
9180 * config/arm/arm.c (arm_is_longcall_p): Update comment describing
9181 this funciton's behaviour. Return true when the current function
9182 has a section attribute and -mlong-calls is in effect.
9183 * config/arm/arm.h (ARM_DECLARE_FUNCTION_SIZE): Do not set the
9184 short-call marker when -mlong-calls is in effect and the function
9185 has a section attribute.
9187 2004-08-10 Zack Weinberg <zack@codesourcery.com>
9189 * stmt.c (expand_return): If asked to return the RESULT_DECL,
9190 just call expand_value_return on result_rtl.
9192 2004-08-10 Richard Henderson <rth@redhat.com>
9194 * builtins.def (BUILT_IN_STACK_ALLOC): Remove.
9195 * builtins.c (expand_builtin) <BUILT_IN_STACK_ALLOC>: Remove.
9196 * dwarf2out.c (loc_descriptor): Handle PARALLEL here ...
9197 (add_location_or_const_value_attribute): ... not here. Use
9198 loc_descriptor_from_tree if possible.
9199 (loc_descriptor_from_tree_1): Rename from loc_descriptor_from_tree.
9200 Simplify address handling. Handle DECL_VALUE_EXPR. Handle register
9202 (loc_descriptor_from_tree): New. Update callers.
9203 * expr.c (expand_var): Ignore DECL_VALUE_EXPR variables.
9204 * gimplify.c (gimplify_decl_expr): Lower variable sized types to
9205 pointer plus dereference. Set DECL_VALUE_EXPR. Set save_stack.
9206 (gimplify_call_expr): Do not recognize BUILT_IN_STACK_ALLOC
9207 and BUILT_IN_STACK_RESTORE.
9208 (gimplify_expr): Lower DECL_VALUE_EXPR decls.
9209 * stmt.c (expand_stack_alloc): Remove.
9210 * tree-mudflap.c (mx_register_decls): Don't look for
9211 BUILT_IN_STACK_ALLOC.
9212 * tree-nested.c (convert_local_reference): Likewise.
9213 * tree.h (DECL_VALUE_EXPR): New.
9215 2004-08-10 Richard Henderson <rth@redhat.com>
9217 * stor-layout.c (round_up): Check for 0/1 before dividing.
9218 (round_down): Likewise.
9220 * tree-tailcall.c (suitable_for_tail_opt_p): Also check DECL_EXTERNAL.
9222 2004-08-09 Mark Mitchell <mark@codesourcery.com>
9224 * config.gcc (arm*-*-eabi*): New target.
9225 * defaults.h (TARGET_LIBGCC_FUNCS): New macro.
9226 (TARGET_LIB_INT_CMP_BIASED): Likewise.
9227 * expmed.c (expand_divmod): Try a two-valued divmod function as a
9229 * gthr.h: Remove bogus tokens at end of #pragma.
9230 * optabs.c (expand_twoval_binop_libfunc): New function.
9231 (prepare_cmp_insn): Handle the !TARGET_LIB_INT_CMP_BIASED case.
9232 (prepare_float_lib_cmp): Try reversing the condition.
9233 (debug_optab_libfuncs): New function.
9234 * optabs.h (expand_twoval_binop_libfunc): Declare.
9235 * config/arm/arm.c (arm_init_libfuncs): New function.
9236 (arm_compute_initial_eliminatino_offset): Return HOST_WIDE_INT.
9237 (TARGET_INIT_LIBFUNCS): Define it.
9238 * config/arm/arm.h (TARGET_BPABI): New macro.
9239 * config/arm/arm-protos.h
9240 (arm_compute_initial_elimination_offset): Return HOST_WIDE_INT.
9241 * config/arm/bpabi.S: New file.
9242 * config/arm/bpabi.c: Likewise.
9243 * config/arm/bpabi.h: Likewise.
9244 * config/arm/ieee754-df.S (__aeabi_dneg): New function or alias.
9245 (__aeabi_drsub): Likewise.
9246 (__aeabi_dsub): Likewise.
9247 (__aeabi_dadd): Likewise.
9248 (__aeabi_ui2d): Likewise.
9249 (__aeabi_i2d): Likewise.
9250 (__aeabi_f2d): Likewise.
9251 (__aeabi_dmul): Likewise.
9252 (__aeabi_ddiv): Likewise.
9253 (__aeabi_cdrcmple): Likewise.
9254 (__aeabi_cdcmpeq): Likewise.
9255 (__aeabi_cdcmple): Likewise.
9256 (__aeabi_dcmpeq): Likewise.
9257 (__aeabi_dcmplt): Likewise.
9258 (__aeabi_dcmple): Likewise.
9259 (__aeabi_dcmpge): Likewise.
9260 (__aeabi_dcmpgt): Likewise.
9261 (__aeabi_dcmpun): Likewise.
9262 (__aeabi_d2iz): Likewise.
9263 (__aeabi_d2uiz): Likewise.
9264 (__aeabi_d2f): Likewise.
9265 * config/arm/ieee754-sf.S (__aeabi_fneg): New function or alias.
9266 (__aeabi_frsub): Likewise.
9267 (__aeabi_fsub): Likewise.
9268 (__aeabi_fadd): Likewise.
9269 (__aeabi_ui2f): Likewise.
9270 (__aeabi_i2f): Likewise.
9271 (__aeabi_fmul): Likewise.
9272 (__aeabi_fdiv): Likewise.
9273 (__aeabi_cfrcmple): Likewise.
9274 (__aeabi_cfcmpeq): Likewise.
9275 (__aeabi_cfcmple): Likewise.
9276 (__aeabi_fcmpeq): Likewise.
9277 (__aeabi_fcmplt): Likewise.
9278 (__aeabi_fcmple): Likewise.
9279 (__aeabi_fcmpge): Likewise.
9280 (__aeabi_fcmpgt): Likewise.
9281 (__aeabi_fcmpun): Likewise.
9282 (__aeabi_f2iz): Likewise.
9283 (__aeabi_f2uiz): Likewise.
9284 * config/arm/lib1funcs.asm (ARM_CALL): New macro.
9285 (__aeabi_uidivmod): New function or alias.
9286 (__aeabi_idivmod): Likewise.
9287 (__aeabi_idiv0): Likewise.
9288 (__aeabi_ldiv0): Likewise.
9289 (__aeabi_llsr): Likewise.
9290 (__aeabi_lasr): Likewise.
9291 (__aeabi_llsl): Likewise.
9292 (bpabi.S): Include it.
9293 * config/arm/libgcc-bpabi.ver: New file.
9294 * config/arm/symbian.h (ARM_DEFAULT_ABI): Remove.
9295 (LINK_SPEC): Remove.
9296 * config/arm/t-arm-elf (LIB1ASMFUNCS): Add __aeabi_lcmp and
9298 * config/arm/t-bpabi: New file.
9299 * doc/tm.texi (TARGET_LIBGCC_FUNCS): New entry.
9300 (TARGET_LIB_INT_CMP_BIASED): Likewise.
9302 2004-08-10 David Edelsohn <edelsohn@gnu.org>
9304 * config/rs6000/rs6000-protos.h (expand_block_clear): Declare.
9305 * config/rs6000/rs6000.md (clrmemsi): New pattern.
9306 * config/rs6000/rs6000.c (expand_block_clear): New function.
9307 (expand_block_move): Convert alignment to bits. Use SImode and
9308 HImode for unaligned addresses if not STRICT_ALIGNMENT.
9310 2004-08-10 Caroline Tice <ctice@apple.com>
9312 * varasm.c (unlikely_section_label): New global variable.
9313 (unlikely_text_section_name): New global variable.
9314 (text_section): Remove alignment statement.
9315 (unlikely_text_section): Remove alignment statement; use
9316 unlikely_section_label rather than hard-coded string.
9317 (assemble_start_function): Initialize unlikely_section_label and
9318 unlikely_text_section_name; make sure cold section is properly
9319 aligned at start of function; output unlikely_section_label if
9322 2004-08-10 Ulrich Weigand <uweigand@de.ibm.com>
9324 * config/s390/s390-protos.h (s390_canonicalize_comparison): Declare.
9325 * config/s390/s390.c (s390_canonicalize_comparison): New function.
9326 * config/s390/s390.h (CANONICALIZE_COMPARISON): Define.
9327 * config/s390/s390.md ("*tmdi_ext", "*tmsi_ext", "*tmqisi_ext",
9328 "*tmqidi_ext", "*tmdi_mem", "*tmsi_mem", "*tmhi_mem"): Remove.
9329 ("*tmqi_mem"): Remove SUBREG from pattern.
9330 ("*anddi3_cconly"): Prevent accidentally matching TM pattern.
9331 ("*andsi3_cconly"): Likewise.
9333 2004-08-10 H.J. Lu <hongjiu.lu@intel.com>
9336 * config/i386/i386.md (*strsetdi_rex_1): Use DI instead of SI.
9338 2004-08-10 Janis Johnson <janis187@us.ibm.com>
9340 * doc/sourcebuild.texi (compat testing): Document available test
9341 framework commands. Use the preferred spelling of DejaGnu.
9343 2004-08-10 Daniel Berlin <dberlin@dberlin.org>
9345 * lambda.h: Add matrix type, and prototypes for remainder of
9346 matrix and vector functions.
9347 (lambda_vector_mult_const): New function.
9348 (lambda_vector_negate): Ditto.
9349 (lambda_vector_add): Ditto.
9350 (lambda_vector_add_mc): Ditto.
9351 (lambda_vector_copy): Ditto.
9352 (lambda_vector_zerop): Ditto.
9353 (lambda_vector_equal): Ditto.
9354 (lambda_vector_min_nz): Ditto.
9355 (lambda_vector_first_nz): Ditto.
9356 (lambda_vector_matrix_mult): Ditto.
9357 * lambda-mat.c: New file.
9358 * Makefile.in (lambda-mat.o): New.
9360 2004-08-10 Andrew MacLeod <amacleod@redhat.com>
9362 * tree-cfg.c (bsi_insert_before, bsi_insert_after): Call modify_stmt
9363 after linking stmt into the program.
9364 (bsi_remove): Don't call modify_stmt.
9365 * tree-complex.c (update_complex_assignment,
9366 expand_complex_comparison): Call modify_stmt after changing the stmt.
9367 * tree-outof-ssa.c (rewrite_trees): Call modify_stmt only if not
9369 * tree-ssa-ccp.c (substitute_and_fold): Call modify_stmt after changing
9370 the stmt, and only if needed.
9371 * tree-ssa-dom.c (thread_across_edge): Pass no annotation for a dummy
9373 (simplify_rhs_and_lookup_avail_expr): Don't take an annotation param.
9374 (simplify_cond_and_lookup_avail_expr): Use modify_stmt.
9375 (simplify_switch_and_lookup_avail_expr): Don't take an annotation param.
9376 (eliminate_redundant_computations): Don't pass an annotation. Call
9377 modify_stmt rather than setting the annotation directly.
9378 (record_equivalences_from_stmt): Remove unused local 'j'.
9379 (cprop_operand): Take a stmt rather than an annotation as a parameter.
9381 (cprop_into_stmt): Pass stmt rather than annotation.
9382 (update_rhs_and_lookup_avail_expr): Call modify_stmt.
9383 * tree-ssa-loop-im.c (schedule_sm): Call get_stmt_ann rather than
9385 * tree-ssa.c (propagate_into_addr): Dont call modify_stmt.
9387 2004-08-10 Jason Merrill <jason@redhat.com>
9390 * function.c (expand_function_start): Handle DECL_BY_REFERENCE on
9393 2004-08-10 Geoffrey Keating <geoffk@apple.com>
9395 * tree-vn.c (val_expr_pair_expr_eq): Compare vuses, to match the
9398 2004-08-10 Roger Sayle <roger@eyesopen.com>
9400 * config/mips/mips.md: New reciprocal square root patterns that
9401 match sqrt(1.0/x) in addition to the existing 1.0/sqrt(x) insns.
9403 2004-08-10 Paul Brook <paul@codesourcery.com>
9405 * config/arm/arm-protos.h (arm_set_return_address,
9406 thumb_set_return_address): Add prototypes.
9407 * config/arm/arm.h (ARM_FT_EXCEPTION_HANDLER): Remove.
9408 * config/arm/arm.c (arm_compute_func_type,
9409 use_return_insn, arm_compute_save_reg0_reg12_mask,
9410 arm_compute_save_reg_mask, arm_output_function_prologue,
9411 arm_output_epilogue): Replace ARM_FT_EXCEPTION_HANDLER with
9412 current_function_calls_eh_return.
9413 (thumb_exit, thumb_pushpop, thumb_unexpanded_epilogue): Replace
9415 (arm_set_return_address, thumb_set_return_address): New functions.
9416 * config/arm/arm.h (MUST_USE_SJLJ_EXCEPTIONS, DWARF2_UNWIND_INFO,
9417 ARM_EH_STACKADJ_REGNUM, EH_RETURN_STACKADJ_RTX): Define.
9418 * config/arm/arm.md (VUNSPEC_EH_RETURN): Add.
9419 (epilogue): Use the stackadj register.
9420 (eh_return, arm_eh_return, thumb_eh_return): New pattern.
9422 2004-08-10 Jakub Jelinek <jakub@redhat.com>
9425 * expr.c (move_by_pieces_ninsns): Add max_size argument.
9426 (MOVE_BY_PIECES_P): Pass MOVE_MAX_PIECES + 1 to it.
9427 (CLEAR_BY_PIECES_P): Pass STORE_MAX_PIECES + 1 to it.
9428 (STORE_BY_PIECES_P): Define similarly to CLEAR_BY_PIECES_P,
9429 but using MOVE_RATIO.
9430 (move_by_pieces): Pass max_size to move_by_pieces_ninsns.
9431 (can_store_by_pieces): Change max_size type to unsigned int.
9432 (store_by_pieces_1): Likewise. Pass max_size to
9433 move_by_pieces_ninsns.
9434 * config/s390/s390.h (STORE_BY_PIECES_P): Define.
9435 * config/sh/sh.c (MOVE_BY_PIECES_P): Pass MOVE_MAX_PIECES + 1
9436 to move_by_pieces_ninsns.
9437 (STORE_BY_PIECES_P): Define.
9438 * config/ns32k/ns32k.h (STORE_BY_PIECES_P): Pass STORE_MAX_PIECES + 1
9439 to move_by_pieces_ninsns.
9440 * doc/tm.texi (STORE_BY_PIECES_P): Document changed default.
9442 * config/i386/i386.h (CLEAR_RATIO): Define.
9444 2004-08-09 Paolo Bonzini <bonzini@gnu.org>
9446 * expr.c (expand_expr_real_1): Add back code that was not dead.
9448 2004-08-09 Andrew Pinski <apinski@apple.com>
9450 * c-common.c (c_common_get_alias_set): Set the aliasing set of the type
9451 which is found to be compatible before returning the aliasing set.
9453 2004-08-09 Daniel Jacobowitz <dan@debian.org>
9455 * ggc-zone.c (struct alloc_zone): Add statistics counters.
9456 (always_collect): New flag.
9457 (ggc_alloc_zone_1): Update statistics support. Don't include
9458 overhead in allocated counter.
9459 (sweep_pages): Update allocated counter for large pages. Don'y
9461 (ggc_collect_1): Always collect.
9462 (ggc_collect): Honor always_collect flag. Sum all zones to decide
9464 (SCALE, LABEL): New macros.
9465 (ggc_print_statistics): Add statistics support.
9467 2004-08-09 Roger Sayle <roger@eyesopen.com>
9469 * expmed.c (sdiv_pow2_cheap, smod_pow2_cheap): Change type to bool.
9470 (init_expmed): Fix potential overrun problem with "all.reg".
9471 (expand_sdiv2_pow2): Add an alternate implementation for signed
9472 division, if the target provides a suitable conditional move insn.
9474 2004-08-09 Paul Brook <paul@codesourcery.com>
9475 Richard Henderson <rth@redhat.com>
9477 * unwind-dw2.c (uw_install_context_1): Update target saved stack
9480 2004-08-09 Geoffrey Keating <geoffk@apple.com>
9482 * ggc-common.c (ggc_rlimit_bound): Don't check RSS limit.
9483 Check DATA limit only if there's no AS limit. Ignore insanely
9485 (ggc_min_heapsize_heuristic): Don't divide AS or RSS limits by 8,
9486 but take care that the AS limit isn't overrun.
9487 * doc/invoke.texi: Update documentation of min-heapsize parameter.
9489 2004-08-09 Jeff Law <law@redhat.com>
9491 * Makefile.in (OBJC-common): Add tree-ssa-threadupdate.c
9492 (tree-ssa-threadupdate.o): Add dependencies.
9493 * tree-ssa-threadupdate.c: New file.
9494 * tree-flow.h (incoming_edge_threaded): New flag in block annotation.
9495 (rewrite_vars_out_of_ssa): Remove prototype.
9496 (cleanup_tree_cfg): Returns a bool.
9497 * tree.h (thread_through_all_blocks): Prototype.
9498 * tree-outof-ssa.c (SSANORM_*): Move into here.
9499 (remove_ssa_form): Now static.
9500 (rewrite_vars_out_of_ssa): Kill.
9501 * tree-ssa-live.c (register_ssa_partitions_for_vars): Kill.
9502 * tree-ssa-live.h (SSANORM_*): Moved into tree-outof-ssa.c.
9503 (remove_ssa_form, register_partitions_for_vars): Kill declarations.
9504 * tree-cfg.c (cleanup_tree_cfg): Return a value indicating if
9505 anything was changed.
9506 * tree-phinodes.c (add_phi_arg): Get the block for the PHI
9507 from the PHI's annotation rather than the edge associated with
9509 * tree-ssa-dom.c (redirection_edges): Kill.
9510 (redirect_edges_and_update_ssa_graph): Kill.
9511 (tree_ssa_dominator_optimize): Do not reset forwardable flag
9512 for blocks anymore. Do not initialize redirection_edges.
9513 Call thread_through_all_blocks. Simplify code for cleanup
9514 of the CFG and iterating. No longer call cleanup_tree_cfg
9515 outside the iteration loop.
9516 (thread_across_edge): No longer mess with forwardable blocks.
9518 2004-08-09 Zack Weinberg <zack@codesourcery.com>
9520 * explow.c (memory_address): Use memory_address_p.
9521 * recog.c (general_operand): Likewise.
9522 * regrename.c: No need to define REG_OK_STRICT.
9524 2004-08-09 Steven Bosscher <stevenb@suse.de>
9526 * timevar.def (TV_CPROP1, TV_CPROP2, TV_PRE, TV_HOIST, TV_LSM):
9528 * gcse.c: Include timevar.h.
9529 (const_prop_count, copy_prop_count): Rename to global_const_prop_count
9530 and global_copy_prop_count.
9531 (local_const_prop_count, local_copy_prop_count): New static globals.
9532 (gcse_main): Set the right timevar for each pass.
9533 (cprop_jump): Increment global_const_prop_count when a constant is
9534 propagated. Add "GLOBAL" to dump output.
9535 (cprop_insn): Increment global_const_prop_count when a constant is
9536 propagated, or global_copy_prop_count when a copy is propagated.
9537 (do_local_cprop): Likewise for local_const_prop_count and
9538 local_copy_prop_count.
9539 (one_cprop_pass): Initialize const/cprop counters to zero.
9540 Print out results of local and global const/cprop separately.
9541 (bypass_block): Break over-length line.
9542 * Makefile.in (gcse.o): Add TIMEVAR_H dependency. Fix dependencies
9543 for bb-reorder.o and tracer.o.
9545 2004-08-09 Paolo Bonzini <bonzini@gnu.org>
9547 * Makefile.in (GTFILES): Remove stmt.c
9548 (stmt.o): Do not depend on gt-stmt.h.
9549 * emit-rtl.c (emit_line_note): Do not call
9550 set_file_and_line_for_stmt.
9551 * expr.c (expand_expr_real_1) <SWITCH_EXPR>: Let expand_case
9553 * function.c (free_after_parsing): Do not free STMT field.
9554 (allocate_struct_function): Do not call init_stmt_for_function.
9555 (assign_stack_temp_for_type): Do not accept values of keep
9557 (init_temp_slots): Do not initialize removed variables.
9558 * function.h (struct function): Remove STMT, X_TARGET_TEMP_SLOT_LEVEL
9559 and X_VAR_TEMP_SLOT_LEVEL fields.
9560 * rtl.h (set_file_and_line_for_stmt): Remove.
9561 * stmt.c (struct nesting, ALLOC_NESTING, POPSTACK,
9562 struct stmt_status, cond_stack, case_stack, nesting_stack,
9563 nesting_depth, emit_locus, set_file_and_line_for_stmt,
9564 same_case_target_p, init_stmt_for_function, emit_nop,
9565 expand_start_cond, expand_start_elseif, expand_start_else,
9566 expand_elseif, expand_end_cond): Remove.
9567 (preserve_subexpressions_p): Remove references to CFUN->STMT.
9568 (expand_start_case, expand_end_case_type): Remove, merge into...
9569 (expand_case): ... this one, including other bits from
9570 expand_expr_real_1. Inline same_case_target_p. Turn members
9571 of CASE_STACK into local variables.
9572 (emit_case_bit_tests): Inline same_case_target_p.
9573 (add_case_node): Add HEAD argument, return new head of the list,
9574 do not handle default label here.
9575 * tree.h (expand_start_cond, expand_end_cond, expand_start_else,
9576 expand_start_elseif, current_nesting_level, expand_start_case,
9577 expand_end_case_type, expand_end_case, add_case_node,
9578 init_stmt_for_function, expand_elseif): Remove prototypes.
9579 (expand_case): Add prototype.
9581 2004-08-09 Paolo Bonzini <bonzini@gnu.org>
9583 * expr.c (expand_expr_real_1): Use optab_for_tree_code.
9585 2004-08-09 Paolo Bonzini <bonzini@gnu.org>
9587 * expr.c (var_rtx): Remove.
9588 (expand_expr_real_1) <LOOP_EXPR, EXIT_EXPR,
9589 LABELED_BLOCK_EXPR, EXIT_BLOCK_EXPR, TRUTH_ANDIF_EXPR,
9590 TRUTH_ORIF_EXPR, COMPOUND_EXPR, CONJ_EXPR, INIT_EXPR>:
9592 (expand_expr_real_1) <COND_EXPR>: Remove most special cases.
9593 * optabs.c (emit_clr_insn, emit_0_to_1_insn): Remove.
9594 * optabs.h (emit_clr_insn, emit_0_to_1_insn): Remove.
9596 2004-08-08 Mostafa Hagog <mustafa@il.ibm.com>
9597 Ayal Zaks <zaks@il.ibm.com>
9599 * common.opt (freschedule-modulo-scheduled-loops): New flag.
9600 * final.c (final_scan_insn): Handle NOTE_DISABLE_SCHED_OF_BLOCK.
9601 * modulo-sched.c (sms_schedule): Emit a note to disable scheduling
9602 when -freschedule-modulo-scheduled-loops flag is not specified.
9603 (sms_schedule_by_order, ps_insn_advance_column, add_node_to_ps,
9604 add_node_to_ps, ps_has_conflicts, ps_add_node_check_conflicts):
9605 More accurate placing of insn in row of partial schedule.
9606 (ps_insn_find_column): New function.
9607 * rtl.h (NOTE_DISABLE_SCHED_OF_BLOCK): New note.
9608 * sched-rgn.c (sched_is_disabled_for_current_region_p): New.
9609 (schedule_region): Use sched_is_disabled_for_current_region_p.
9610 * docs/invoke.texi: Document -freschedule-modulo-scheduled-loops.
9612 2004-08-07 H.J. Lu <hongjiu.lu@intel.com>
9614 * config/i386/i386.c (ix86_expand_clrmem): Revert the last
9617 2004-08-07 H.J. Lu <hongjiu.lu@intel.com>
9619 * config/i386/i386.c (ix86_expand_clrmem): Properly call
9620 gen_strset for 64bit target.
9622 2004-08-07 Olivier Hainque <hainque@act-europe.fr>
9624 * config/vxworks.h (HANDLE_SYSV_PRAGMA): Remove definition.
9626 2004-08-07 Jason Merrill <jason@redhat.com>
9628 Make return in memory explicit.
9629 * function.c (aggregate_value_p): Check DECL_BY_REFERENCE.
9630 (assign_parm_find_data_types): Remove code for old front end
9631 invisible reference handling.
9632 (assign_parms): Handle DECL_BY_REFERENCE on the RESULT_DECL.
9633 (expand_function_end): Likewise.
9634 * gimplify.c (gimplify_return_expr): Handle a dereferenced
9636 * tree-inline.c (copy_body_r): Don't bother looking for &* anymore.
9637 (declare_return_variable): Handle DECL_BY_REFERENCE.
9638 * cp/cp-gimplify.c (is_invisiref_parm): Also handle RESULT_DECL.
9639 (cp_genericize_r): Use convert_from_reference.
9640 Don't dereference a RESULT_DECL directly inside a RETURN_EXPR.
9641 (cp_genericize): Handle the RESULT_DECL. Unset TREE_ADDRESSABLE.
9643 * c-common.c (c_warn_unused_result): Check TREE_USED before
9644 warning about a CALL_EXPR with an unused value.
9646 2004-08-06 Mark Mitchell <mark@codesourcery.com>
9648 * config/arm/symbian.h (CC1_SPEC): Avoid passing duplicate options
9649 to the compiler. Use -fshort-wchar by default.
9651 2004-08-06 Pat Haugen <pthaugen@us.ibm.com>
9653 * params.def (PARAM_MIN_CROSSJUMP_INSNS): New.
9654 * cfgcleanup.c (try_crossjump_to_edge): Add minimum insn match
9656 * doc/invoke.texi (param): Document min-crossjump-insns.
9658 2004-08-06 Richard Sandiford <rsandifo@redhat.com>
9661 * c.opt (Wmissing-field-initializers): New option.
9662 * c-opts.c (c_common_post_options): Make -Wextra turn it on by default.
9663 * c-typeck.c (pop_init_level): Guard the missing field warning with
9664 warn_missing_field_initializers rather than extra_warnings.
9665 * doc/invoke.texi (-Wmissing-field-initializers): Document, moving
9666 some of the explanation from...
9667 (-Wextra): ...here. Say that the missing field warning can be
9668 seperately controlled by -Wmissing-field-initializers.
9670 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
9672 * expr.c (expand_expr_real_1) <ENTRY_VALUE_EXPR>: Remove.
9673 * tree-inline.c (estimate_num_insns_1) <ENTRY_VALUE_EXPR>: Remove.
9674 * tree-pretty-print.c (dump_generic_node) <ENTRY_VALUE_EXPR>: Remove.
9675 * tree.def (ENTRY_VALUE_EXPR): Remove.
9677 2004-08-06 Jakub Jelinek <jakub@redhat.com>
9679 * config/i386/i386.c (ix86_expand_clrmem): Move gen_cld down to
9680 the places where it is actually needed. Don't use repz; stosb
9681 for -Os with sufficiently small constant sizes.
9682 For sufficiently small repz; stos{l,q} repeat counts use a sequence
9683 of stos{l,q} instructions instead.
9685 2004-08-06 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
9687 PR tree-optimization/16807
9688 * loop-iv.c (dump_iv_info): Dump invariants correctly.
9689 (iv_subreg, iv_extend): Express value of invariant purely in
9692 2004-08-06 Mark Mitchell <mark@codesourcery.com>
9694 * config/arm/symbian.h (CC1_SPEC): Add -fno-short-enums.
9695 (CC1PLUS_SPEC): Define it to be the same as CC1_SPEC.
9697 2004-08-06 Roman Zippel <zippel@linux-m68k.org>
9699 * config/m68k/m68k.c (post_inc_operand,pre_dec_operand): New.
9700 * config/m68k/m68k.h (PREDICATE_CODES): add post_inc_operand,
9702 * config/m68k/m68k.md (zero_extend*2): delay the splitting of the
9703 pattern until reload is finished to allow better code generation
9704 and split them completely into separate instrunctions.
9705 (*andsi3_split): New pattern.
9707 2004-08-05 Mark Mitchell <mark@codesourcery.com>
9709 * tree.c (handle_dll_attribute): Move here from i383/winnt.c.
9710 Replace use of DECL_INLINE with DECL_DECLARED_INLINE_P. Set
9711 DECL_VISIBLITY. Test TARGET_DLLIMPORT_DECL_ATTRIBUTES with #if.
9712 * tree.h (handle_dll_attribute): Declare. Test
9713 TARGET_DLLIMPORT_DECL_ATTRIBUTES with #if.
9714 * c-common.h (c_determine_visibility): Declare.
9715 * c-common.c (c_determine_visibility): New function.
9716 * c-decl.c (finish_decl): Use it.
9717 (finish_function): Likewise.
9718 * defaults.h (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Define it to
9719 zero, by default. Use #if, not #ifdef, to test it.
9720 * config/arm/arm.c (arm_attribute_table): Use
9721 handle_dll_attribute. Test TARGET_DLLIMPORT_DECL_ATTRIBUTES with
9723 * config/arm/pe.h (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Define to 1.
9724 * config/i386/cygming.h (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Define
9726 * config/i386/i386-protos.h (ix86_handle_dll_attribute): Remove.
9727 * config/i386/i386.c (ix86_attribute_table): Use
9728 handle_dll_attribute for dllimport/dllexport. Test
9729 TARGET_DLLIMPORT_DECL_ATTRIBUTES with #if.
9730 * config/i386/winnt.c (ix86_handle_dll_attribute): Remove.
9731 * config/mcore/mcore.h (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Define
9733 * config/mcore/mcore.c (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Test it
9735 * config/sh/symbian-pre.h (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Define
9737 * doc/extend.texi (dllexport): Clarify and correct documentation.
9738 (dllimport): Likewise.
9739 * doc/tm.texi (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Mention
9740 handle_dll_attribute.
9742 2004-08-05 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
9744 * tree-ssa-loop-manip.c: New file.
9745 * Makefile.in (tree-ssa-loop-manip.o): Add.
9746 * tree-flow.h (rewrite_into_loop_closed_ssa, verify_loop_closed_ssa):
9748 * tree-ssa-loop.c (tree_loop_optimizer_init): Create loop closed ssa
9750 (tree_ssa_loop_done): Verify loop closed ssa form.
9751 * tree-ssa-loop-im.c (move_computations): Update loop closed ssa form.
9753 2004-08-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
9755 * pa.c (pa_asm_output_aligned_bss, pa_asm_output_aligned_common,
9756 pa_asm_output_aligned_local): New functions.
9757 * pa-protos.h: Add prototypes for pa_asm_output_aligned_bss,
9758 pa_asm_output_aligned_common and pa_asm_output_aligned_local.
9759 * pa-pro-end.h (ASM_OUTPUT_ALIGNED_COMMON): Use
9760 pa_asm_output_aligned_common.
9761 (ASM_OUTPUT_ALIGNED_LOCAL): Use pa_asm_output_aligned_local.
9762 * pa.h (ASM_OUTPUT_ALIGNED_BSS): New macro.
9763 (ASM_OUTPUT_ALIGNED_COMMON): Use pa_asm_output_aligned_common.
9764 (ASM_OUTPUT_ALIGNED_LOCAL): Use pa_asm_output_aligned_local.
9765 * pa64-hpux.h (MAX_OFILE_ALIGNMENT): New macro.
9766 (ASM_OUTPUT_ALIGNED_COMMON): Use pa_asm_output_aligned_common.
9767 (ASM_OUTPUT_ALIGNED_LOCAL): Use pa_asm_output_aligned_local.
9768 * som.h (MAX_OFILE_ALIGNMENT): Provide maximum alignment of global
9771 2004-08-05 Andrew Pinski <apinski@apple.com>
9773 * objc/objc-act.c (build_objc_string_object): Mark the address
9774 expression as constant.
9776 2004-08-05 David Edelsohn <edelsohn@gnu.org>
9778 * config/rs6000/rs6000.c (rs6000_rtx_costs): Fix mask_operand
9779 and mask64_operand thinkos. Handle ZERO_EXTRACT. Handle
9780 SIGN_EXTEND / ZERO_EXTEND of MEM. Handle rlwinm patterns.
9782 2004-08-05 Joseph S. Myers <jsm@polyomino.org.uk>
9784 * config/linux.h, config/i386/linux.h, config/sparc/linux.h:
9785 Remove definitions conditioned on USE_GNULIBC_1 or conditioned
9786 out, and associated obsolete comments.
9788 2004-08-05 Nathan Sidwell <nathan@codesourcery.com>
9790 * tree.h (force_fit_type): Return a tree, take three flags.
9791 * fold-const.c (force_fit_type): Set TREE_OVERFLOW and
9792 TREE_CONSTANT_OVERFLOW here.
9793 (int_const_binop, const_binop): Adjust.
9794 (size_int_type): Do sign extension here.
9795 (fold_convert_const, optimize_bit_field_compare,
9796 decode_field_reference, all_ones_mask_p, fold_div_compare, fold,
9797 fold_negate_const, fold_abs_const, fold_not_const): Adjust.
9798 * tree.c (size_in_bytes, int_fits_type_p): Adjust.
9800 2004-08-05 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
9802 PR tree-optimization/16864
9803 * tree-tailcall.c (eliminate_tail_call): Do not create phi nodes
9804 for ssa names without default_def.
9806 2004-08-05 Richard Sandiford <rsandifo@redhat.com>
9808 * config/i386/i386.c (ix86_expand_prologue): If the function uses a
9809 frame pointer, restore eax with an ebp-relative address.
9811 2004-08-04 Geoffrey Keating <geoffk@apple.com>
9814 * c-common.c (c_expand_decl): Don't special-case static VAR_DECLs.
9815 * c-common.h (make_rtl_for_local_static): Delete.
9816 * c-decl.c (shadow_tag_warned): Clean up comment.
9817 (finish_decl): Clean up spacing. Use set_user_assembler_name when
9818 appropriate. Don't pass asmspec to rest_of_decl_compilation.
9819 * c-semantics.c (make_rtl_for_local_static): Delete.
9820 * expr.c (init_block_move_fn): Use set_user_assembler_name.
9821 (init_block_clear_fn): Likewise.
9822 * passes.c (rest_of_decl_compilation): Remove asmspec parameter,
9823 expect it to be in DECL_ASSEMBLER_NAME. Update callers in many files.
9824 * toplev.h (rest_of_decl_compilation): Remove asmspec parameter.
9825 * tree.h (make_decl_rtl): Remove second parameter.
9826 (set_user_assembler_name): New.
9827 * varasm.c (set_user_assembler_name): New.
9828 (make_decl_rtl): Remove second parameter. Update callers in many
9831 2004-08-05 Adam Nemet <anemet@lnxw.com>
9833 * config.gcc (case i[34567]86-*-lynxos*): Update to LynxOS 4.0.
9834 (case rs6000-*-lynxos*): Rename it to powerpc-*-lynxos*. Update
9836 * gthr-lynx.h: New file.
9837 * config/lynx-ng.h: Remove file.
9838 * config/lynx.h: Update to LynxOS 4.0.
9839 * config/t-lynx: New file.
9840 * config/i386/lynx-ng.h: Remove file.
9841 * config/i386/lynx.h: Update to LynxOS 4.0.
9842 * config/rs6000/lynxbase.h: Remove file.
9843 * config/rs6000/lynx.h: Update to LynxOS 4.0.
9844 * config/rs6000/t-lynx: New file.
9845 * doc/install.texi (Options specification): Remove reference to
9846 LynxOS from systems where --with-gnu-as makes a difference.
9848 2004-08-05 Joseph S. Myers <jsm@polyomino.org.uk>
9850 * c-common.c (c_stddef_cpp_builtins): Define __INTMAX_TYPE__ and
9852 * c-cppbuiltin.c (builtin_define_stdint_macros): New. Define
9854 (c_cpp_builtins): Call it.
9855 * doc/cpp.texi: Update.
9857 2004-08-04 David Edelsohn <edelsohn@gnu.org>
9859 * config/rs6000/rs6000.c (rs6000_rtx_costs): LABEL_REFs are zero
9862 2004-08-04 Jan Hubicka <jh@suse.cz>
9864 * basic-block.h (profile_staus): New global variable.
9865 * cfg.c (profile_status): Declare.
9866 (check_bb_profile): Break out from ....; use profile_status
9867 (dump_flow_info): ... here.
9868 * cfgbuild.c (find_basic_blocks): Set profile_status.
9869 * cfgexpand.c (tree_expand_cfg): Likewise.
9870 * predict.c (estimate_probability): Likewise.
9871 * profile.c (branch_prob): Likewise.
9872 * tree-cfg.c (build_tree_cfg): Likewise.
9873 (dump_function_to_file): Use check_bb_profile.
9874 * tree-pretty-print (dump_bb_header): Likewise.
9875 * tree-profile.c (do_tree_profiling): Cleanup.
9877 2004-08-04 Zack Weinberg <zack@codesourcery.com>
9879 * Makefile.in (RTL_BASE_H, RTL_H): Correct.
9880 (BUILD_RTL): Remove $(BUILD_PREFIX) from ggc-none.o.
9881 (genobjs): Add errors.o, ggc-none.o, and min-insn-modes.o.
9882 (read-rtl.o, gensupport.o, genconfig.o, genflags.o, gencodes.o)
9883 (genconstants.o, genemit.o, genopinit.o, genrecog.o, genextract.o)
9884 (genpeep.o, genattr.o, genattrtab.o, genautomata.o, genoutput.o)
9885 (genconditions.o): Depend on $(RTL_BASE_H) not $(RTL_H).
9886 (ggc-none.o, errors.o): Move rule to generators section;
9887 correct dependencies.
9888 (min-insn-modes.o): Move rule to generators section; remove
9889 unnecessary explicit command; correct dependencies.
9890 (print-rtl.o, print-rtl1.o): Correct dependencies.
9891 ($(BUILD_PREFIX_1)errors.o. $(BUILD_PREFIX_1)ggc-none.o): Delete rule.
9892 (mostlyclean): Update.
9894 * errors.c: Include bconfig.h not config.h. Correct comment.
9895 * gengtype.c, genpreds.c: Don't define NO_GENRTL_H.
9896 * ggc-none.c: Include bconfig.h; not config.h or tm.h.
9897 * print-rtl.c: Don't include tm_p.h.
9899 * rtl.h: Move forward-decl of struct function down where it's
9900 needed. Include genrtl.h #ifndef GENERATOR_FILE, not
9901 #ifndef NO_GENRTL_H. Remove unnecessary #ifdef BUFSIZ statements.
9903 2004-08-04 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
9904 Jeff Law <law@redhat.com>
9906 * tree-cfg.c (tree_duplicate_bb): Mark duplicated definitions.
9907 * tree-flow.h (rewrite_ssa_into_ssa): Declaration changed.
9908 * tree-into-ssa.c (rewrite_ssa_into_ssa): Use new interface to
9909 manipulate the duplicated ssa names.
9910 * tree-ssanames.c (ssa_names_to_rewrite): New variable.
9911 (marked_for_rewrite_p, any_marked_for_rewrite_p, mark_for_rewrite,
9912 unmark_all_for_rewrite, marked_ssa_names, release_ssa_name_force):
9914 (release_ssa_name): Do not release ssa names that may have multiple
9916 * tree.h (release_ssa_name_force, mark_for_rewrite,
9917 unmark_all_for_rewrite, marked_for_rewrite_p, any_marked_for_rewrite_p,
9918 marked_ssa_names): Declare.
9919 * tree-ssa-loop-ch.c (mark_defs_for_rewrite): Remove.
9920 (duplicate_blocks): Remove call to mark_defs_for_rewrite.
9921 Update call to rewrite_ssa_into_ssa.
9923 2004-08-04 Mark Mitchell <mark@codesourcery.com>
9925 * defaults.h (TARGET_DECLSPEC): New macro.
9926 * c-cppbuiltin.c (c_cpp_builtins): Handle TARGET_DECLSPEC.
9927 * config/arm/pe.h (SUBTARGET_CPP_SPEC): Remove __declspec support.
9928 * config/arm/symbian.h (TARGET_DLLIMPORT_DECL_ATTRIBUTES): Define.
9929 * config/i386/beof-elf.h (TARGET_OS_CPP_BUILTINS): Remove
9931 (TARGET_DECLSPEC): Define.
9932 * config/i386/cygming.h (TARGET_OS_CPP_BUILTINS): Remove
9934 * config/i386/i386-interix.h (TARGET_OS_CPP_BUILTINS): Remove
9936 (TARGET_DECLSPEC): Define.
9937 * config/mcore/mcore.h (TARGET_CPU_CPP_BUILTINS): Remove
9939 * config/sh/symbian-pre.h (SUBTARGET_CPP_SPEC): Remove __declspec
9941 * doc/tm.texi (TARGET_DECLSPEC): Document.
9943 * doc/extend.texi: Fix typo in comment.
9945 2004-08-04 Paul Brook <paul@codesourcery.com>
9947 * target-def.h (TARGET_CXX_CDTOR_RETURNS_THIS): Define.
9948 (TARGET_CXX): Use it.
9949 * target.h (struct gcc_target): Add cdtor_returns_this.
9950 * config/arm/arm.c (arm_cxx_cdtor_returns_this): New function.
9951 (TARGET_CXX_CDTOR_RETURNS_THIS): Define.
9952 * doc/tm.texi: Document TARGET_CXX_CDTOR_RETURNS_THIS.
9954 2004-08-03 Nathan Sidwell <nathan@codesourcery.com>
9956 * c-lex.c (narrowest_unsigned_type, narrowest_signed_type): Take
9957 low/high pair. Do range checking directly.
9958 (interpret_integer): Adjust.
9960 2004-08-04 Nick Clifton <nickc@redhat.com>
9962 * config/sh/sh.h (TARGET_SWITCHES): Add no-renesas to select the
9964 * doc/invoke.texi: Document this new switch and also the -mrenesas
9967 2004-08-04 Nathan Sidwell <nathan@codesourcery.com>
9969 * cfglayout.c (insn_locators_initialize): Update the current
9970 location before initializing a location.
9972 2004-08-03 Zack Weinberg <zack@codesourcery.com>
9974 * dbxout.c (dbxout_function_decl): Always call dbxout_function_end.
9975 (dbxout_function_end): Return after emitting the "Lscope" symbol
9976 under the same conditions that this function formerly wasn't called.
9977 Add explanatory comments.
9980 * c-decl.c (record_builtin_type): Call debug_hooks->type_decl
9984 * dbxout.c (dbx_output_lbrac, dbx_output_rbrac): New
9985 functions, broken out of dbxout_block.
9986 (dbxout_block): The block at depth 0 should get LBRAC/RBRAC
9987 stabs too, if it contains symbols. Use the begin_label and
9988 the Lscope label (emitted by dbxout_function_end) for the
9989 range of this block.
9991 2004-08-03 Nathanael Nerode <neroden@gcc.gnu.org>
9993 * doc/install.texi: Update autoconf version requirements.
9995 2004-08-03 Zack Weinberg <zack@codesourcery.com>
9997 * defaults.h (LEGITIMATE_PIC_OPERAND_P): Provide default definition.
9998 * recog.c (general_operand, immediate_operand, nonmemory_operand)
9999 (asm_operand_ok): Remove #ifdefs on LEGITIMATE_PICOPERAND_P.
10000 * regclass.c (record_reg_classes): Likewise.
10001 * reload.c (find_reloads): Likewise.
10002 * reload1.c (reload): Likewise.
10004 2004-08-03 Zack Weinberg <zack@codesourcery.com>
10006 * gensupport.c (init_md_reader_args_cb): Renamed from
10007 init_md_reader_args. Add third option, callback function for
10008 parsing program-specific options. Add diagnosis of incorrect
10009 number of input files.
10010 (init_md_reader): Fold into init_md_reader_args_cb.
10011 (init_md_reader_args): Now a thin wrapper around
10012 init_md_reader_args_cb.
10013 * gensupport.h: Update prototypes.
10015 * genattr.c, genattrtab.c, gencodes.c, genconfig.c, genemit.c
10016 * genextract.c, genflags.c, genopinit.c, genoutput.c, genpeep.c
10017 * genrecog.c: No need to diagnose lack of an input file;
10018 init_md_reader_args will handle it.
10019 * genconditions.c: Likewise, and use init_md_reader_args.
10020 * genconstants.c: Likewise, and no need to call read_md_rtx.
10022 2004-08-03 Joseph S. Myers <jsm@polyomino.org.uk>
10024 * c-decl.c (implicitly_declare): Diagnose incompatible implicit
10027 2004-08-03 Mike Stump <mrs@apple.com>
10029 * config/darwin-c.c: Don't search in "/Local/Library/Frameworks"
10031 * doc/invoke.texi (Darwin Options): Update to reflect above.
10033 2004-08-03 Roger Sayle <roger@eyesopen.com>
10035 PR middle-end/16790
10036 * fold-const.c (extract_muldiv_1) <NOP_EXPR>: Disallow local
10037 truncations, not just global truncations.
10039 2004-08-03 Andrew Pinski <apinski@apple.com>
10042 * loop-iv.c (simplify_using_assignment): Initialize lhs.
10044 2004-08-03 Paul Brook <paul@codesourcery.com>
10046 * gcc/doc/install.texi: Document MPFR requirement.
10048 2004-08-03 Maciej W. Rozycki <macro@linux-mips.org>
10050 * aclocal.m4 (gcc_AC_FUNC_MMAP_BLACKLIST): Check for <sys/mman.h>
10051 and mmap() explicitly instead of relying on preset autoconf cache
10053 * configure: Regenerate.
10055 2004-08-03 H.J. Lu <hongjiu.lu@intel.com>
10058 * config.gcc (i[34567]86-*-* | x86_64-*-*): Add i386/t-gmm_malloc
10060 (i[34567]86-*-linux*aout* | i[34567]86-*-linux*libc1): Likewise.
10061 (i[34567]86-*-linux* | x86_64-*-linux*): Add i386/t-pmm_malloc
10064 * config/i386/t-gmm_malloc: New file.
10065 * config/i386/t-pmm_malloc: Likewise.
10067 * config/i386/xmmintrin.h: Include <mm_malloc.h>.
10069 2004-08-03 H.J. Lu <hongjiu.lu@intel.com>
10070 Tanguy Fautrà <tfautre@pandora.be>
10072 * config/i386/pmm_malloc.h: New file.
10074 2004-08-03 Danny Smith <dannysmith@users.sourceforge.net>
10076 * config/i386/gmm_malloc.h: New file.
10078 2004-08-03 Dale Johannesen <dalej@apple.com>
10080 * config/rs6000/rs6000.c (machopic_output_stub): Align Darwin stubs.
10081 * c-common.c: Include opts.h.
10082 (c_common_get_alias_set): Fix check for a single input file.
10083 * toplev.c: Remove current_file_decl.
10086 2004-08-03 Mark Mitchell <mark@codesourcery.com>
10088 * config.gcc (arm*-*-symbianelf*): New target.
10089 * config/arm/symbian.h: New file.
10091 * gthr-gnat.c: Add visibility #pragmas.
10092 * gthr-gnat.h : Likewise.
10093 * gthr.h: Likewise.
10094 * libgcc2.c (__ffsSI2): Move prototype to libgcc2.h.
10095 (__ffsDI2): Likewise.
10096 (__clzSI2): Likewise.
10097 (__ctzSI2): Likewise.
10098 (__ctzDI2): Likewise.
10099 (__popcountSI2): Likewise.
10100 (__popcountDI2): Likewise.
10101 (__paritySI2): Likewise.
10102 (__parityDI2): Likewise.
10103 * libgcc2.h: Add visibility #pragmas.
10104 (__clzDI2): Add prototype.
10105 (__clzSI2): Likewise.
10106 (__ctzSI2): Likewise.
10107 (__ffsDI2): Likewise.
10108 (__ffsSI2): Likewise.
10109 (__ctzDI2): Likewise.
10110 (__popcountSI2): Likewise.
10111 (__popcountDI2): Likewise.
10112 (__paritySI2): Likewise.
10113 (__parityDI2): Likewise.
10114 * unwind-dw2-fde.h: Add visibility #pragmas.
10115 * unwind.h: Likewise.
10117 2004-08-03 David Edelsohn <edelsohn@gnu.org>
10118 Dale Johannesen <dalej@apple.com>
10119 Roger Sayle <roger@eyesopen.com>
10121 * config/rs6000/rs6000.c (rs6000_rtx_costs): Calculate cost of
10122 constants more accurately. Adjust costs for FMA instructions.
10123 Add cases for most logical and float operations. Recurse into
10126 2004-08-03 Richard Earnshaw <rearnsha@arm.com>
10128 * config.gcc (strongarm-*, xscale-*): Add t-arm to tmake_files.
10130 2004-08-03 Pat Haugen <pthaugen@us.ibm.com>
10132 * ra-build.c (conflicts_between_webs): For webs that cross a call add
10133 conflicts to regs_invalidated_by_call.
10135 2004-08-03 Paul Brook <paul@codesourcery.com>
10137 * config/arm/arm.c (emit_sfm): Only emit a single frame adjustment.
10139 2004-08-03 Jan Hubicka <jh@suse.cz>
10141 * coverage.c (tree_coverage_counter_ref): Fix computation of the new
10142 ARRAY_REF argument.
10144 2004-08-03 Richard Earnshaw <rearnsha@arm.com>
10146 * arm-cores.def: Sort by architecture. Add arm946es, arm966es,
10147 arm968es, arm10e, arm1020e, arm1022e.
10148 * invoke.texi: Update list of ARM cores.
10149 * arm-tune.md: Regenerate.
10151 2004-08-03 Richard Earnshaw <rearnsha@arm.com>
10153 * arm/gentune.sh: New file.
10154 * arm/t-arm: New file.
10155 * arm/arm-tune.md: New file (autogenerated).
10156 * config.gcc (arm*-*-*): Add t-arm to tmake_file for all variants.
10157 * arm.md (attribute tune): Delete. Include arm-tune.md.
10159 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
10161 * gcc.c (add_prefix, add_sysrooted_prefix): Remove
10162 penultimate parameter. All callers adjusted.
10163 (struct prefix_list): Remove used_flag_ptr.
10164 (find_a_file): Do not set *pl->used_flag_ptr.
10165 (warn_B, warn_std_ptr): Remove.
10167 2004-08-03 Yossi Markovich <yossim@il.ibm.com>
10168 Mostafa Hagog <mustafa@il.ibm.com>
10170 * config/rs6000/altivec.md (altivec_vnmsubfp): Fix wrong pattern.
10172 2004-08-02 Geoffrey Keating <geoffk@apple.com>
10174 * dwarf2out.c (output_call_frame_info): Don't change data format
10175 due to TARGET_USES_WEAK_UNWIND_INFO. Always refer to the local
10176 label. Use 'true' not '1'.
10177 * doc/install.texi (powerpc-*-darwin*): Mention cctools version
10180 2004-08-02 Gabriel Dos Reis <gdr@integrable-solutions.net>
10182 * gdbinit.in: Reflect previous changes to rtunion_def.
10184 2004-08-02 Roger Sayle <roger@eyesopen.com>
10186 * fold-const.c (fold) <TRUNC_MOD_EXPR>: The transformation "X % -Y"
10187 -> "X % Y" is only valid for TRUNC_MOD_EXPR.
10189 2004-08-02 Gabriel Dos Reis <gdr@integrable-solutions.net>
10191 * vec.h (DEF_VEC_P): Add proper cast to uses of vec_o_reserve and
10193 * langhooks.h (lang_hooks::builtin_function): Rename parameter
10194 from "class" to "bt_class".
10196 2004-08-02 Paul Brook <paul@codesourcery.com>
10198 PR rtl-optimization/15068
10199 * flow.c (init_propagate_block_info): Check condition is reversible.
10201 2004-08-02 Gabriel Dos Reis <gdr@integrable-solutions.net>
10203 * gengtype.h (options::info): Change type to const char *.
10204 (enum gc_used_enum): Move out of struct type scope.
10205 * gengtype.c (create_option): Convert initializer for option::info to
10207 (adjust_field_type, walk_type, write_func_for_structure,
10208 write_root, write_roots): Remove pointless cast.
10210 2004-08-02 J"orn Rennecke <joern.rennecke@superh.com>
10212 * genopinit.c (gen_insn): Check for MODE_COMPLEX_FLOAT patterns for $F.
10214 2004-08-02 Gabriel Dos Reis <gdr@integrable-solutions.net>
10216 * rtl.h (union rtunion_def): Have all members start with the
10218 (XINT, XSTR, XEXP, XVEC, XMODE, XBITMAP, XTREE, XBBDEF, XTMPL,
10219 X0INT, X0UINT, X0STR, X0EXP, X0VEC, X0MODE, X0BITMAP, X0TREE,
10220 X0MEMATTR, X0BBDEF, X0REGATTR, XCINT, XCUINT, XCSTR, XCEXP,
10221 XCVEC, XCMODE, XCBITMAP, XCTREE, XCBBDEF, XC2EXP): Adjust members
10223 * gengtype.c (adjust_field_rtx_def): Likewise.
10224 * rtlanal.c (loc_mentioned_in_p): Likewise.
10226 2004-08-02 Richard Sandiford <rsandifo@redhat.com>
10228 * config.gcc (mips*-*-elf*, mips*-*-rtems*): Add elfos.h to tm_file.
10229 Replace uses of mips/elf64.h with mips/elf.h
10230 * config/mips/elf.h (MAX_OFILE_ALIGNMENT, TARGET_ASM_NAMED_SECTION)
10231 (TYPE_OPERAND_FMT, TYPE_ASM_OP, SIZE_ASM_OP, BSS_SECTION_ASM_OP)
10232 (ASM_OUTPUT_ALIGNED_BSS, ASM_WEAKEN_LABEL, ASM_OUTPUT_WEAK_ALIAS)
10233 (MAKE_DECL_ONE_ONLY, INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP)
10234 (HANDLE_SYSV_PRAGMA): Delete.
10235 (ASM_OUTPUT_DEF): Fix formatting.
10236 * config/mips/elf64.h: Delete.
10238 2004-08-01 Zack Weinberg <zack@codesourcery.com>
10240 * config/ia64/ia64.c (got_symbolic_operand): Do require a
10241 symbol+offset operand to have its offset be zero mod 0x3fff
10242 when GOT entries are in use. Clarify logic in SYMBOL_REF
10243 case. Clarify comments.
10244 (ia64_expand_load_address): Split a symbol+offset load when
10245 the offset is nonzero mod 0x3fff, not 0x1fff.
10247 2004-08-01 Geoffrey Keating <geoffk@apple.com>
10249 * config/rs6000/rs6000.c (rs6000_split_multireg_move): Just abort
10250 if trying to *store* to a non-offsettable address.
10251 * config/rs6000/rs6000.md (movtf_internal): Don't move GPRs to
10252 a nonoffsettable address.
10253 (movdi_internal32): Don't move GPRs to a nonoffsettable address.
10255 (movti_string): Don't move GPRs to a nonoffsettable address.
10256 (movti_ppc64): Don't move GPRs to a nonoffsettable address. Clean up.
10258 2004-08-02 Ben Elliston <bje@au.ibm.com>
10261 * config/rs6000/altivec.h: Replace typeof with __typeof__.
10263 2004-08-01 Richard Henderson <rth@redhat.com>
10265 * expr.c (expand_expr_real_1) <normal_inner_ref>: Fix crash with
10266 variable sized types.
10268 2004-08-01 Richard Sandiford <rsandifo@redhat.com>
10270 * doc/invoke.texi: In the MIPS options section, remove the passage
10271 saying that -mexplicit-relocs is usually disabled for -mabicalls
10272 -fno-unit-at-a-time.
10273 * config/mips/mips.c (override_options): Remove the code that enforced
10276 2004-08-01 Richard Sandiford <rsandifo@redhat.com>
10278 * config/mips/mips.md (cprestore): Provide two alternatives, one for
10279 an in-range offset and one for an out-of-range offset. Wrap the latter
10280 in .set macro/.set nomacro if it's inside a .set nomacro block.
10282 2004-08-01 Richard Sandiford <rsandifo@redhat.com>
10284 * config/mips/mips-protos.h (mips_gp_save_slot): Remove.
10285 (mips_restore_gp): Declare.
10286 * config/mips/mips.c (mips_add_offset): Add a scratch register
10287 argument. Reimplement in rtl only, reusing MIPS16 logic from
10288 mips_output_mi_thunk.
10289 (mips_legitimize_address, mips_legitimize_const_move): Adjust calls
10290 to mips_add_offset.
10291 (mips_gp_save_slot): Delete.
10292 (mips_restore_gp): New function.
10293 (mips_set_return_address, mips_output_mi_thunk): Use mips_add_offset.
10294 * config/mips/mips.md (exception_receiver): Turn into a
10295 define_insn_and_split. Use mips_restore_gp to do the split.
10296 (call_internal, call_value_internal, call_value_multiple_internal): Use
10297 mips_restore_gp to restore $gp.
10299 2004-07-31 Andrew Pinski <apinski@apple.com>
10302 * mkheaders.in (libsubdir): s/gcc-lib/gcc/.
10304 2004-07-31 Joseph S. Myers <jsm@polyomino.org.uk>
10306 * c-decl.c (diagnose_mismatched_decls): Give error for external
10307 redeclaration of identifier declared with no linkage, not just
10308 warning with -Wtraditional. Do not check DECL_CONTEXT to give
10309 error for redeclaration with no linkage.
10311 2004-07-30 Geoffrey Keating <geoffk@apple.com>
10312 Fariborz Jahanian <fjahanian@apple.com>
10314 * config/rs6000/rs6000.c (legitimate_lo_sum_address_p): Permit
10315 non-offsettable addresses even for DImode.
10316 (rs6000_split_multireg_move): Cope with non-offsettable addresses
10317 being moved into multiple GPRs.
10319 * config/rs6000/rs6000.c (RS6000_DEFAULT_LONG_DOUBLE_SIZE): Default
10321 (rs6000_override_options): Use RS6000_DEFAULT_LONG_DOUBLE_SIZE.
10322 * config/rs6000/darwin.h (RS6000_DEFAULT_LONG_DOUBLE_SIZE): Define
10324 * config/rs6000/darwin-ldouble.c (isless): New macro.
10326 (nonfinite): New macro.
10328 (_xlqadd): Completely rewrite.
10329 (_xlqmul): Correct overflow handling.
10330 (_xlqdiv): Correct overflow handling.
10331 * config/rs6000/darwin-ldouble-format: New file.
10333 2004-07-30 Roger Sayle <roger@eyesopen.com>
10334 Richard Henderson <rth@redhat.com>
10336 * config/i386/i386.md: New peephole2's to convert imul by 3, 5 or
10337 9 into the equivalent lea instruction.
10339 2004-07-30 Richard Henderson <rth@redhat.com>
10341 * gimplify.c (gimplify_expr) <case CONST_DECL>: Don't replace
10342 with DECL_INITIAL if fb_lvalue.
10343 * tree-gimple.c (is_gimple_id): Add CONST_DECL.
10344 * tree-pretty-print.c (dump_decl_name): Dump unnamed CONST_DECL
10346 * tree-ssa-ccp.c (maybe_fold_stmt_indirect): Fold CONST_DECL.
10348 2004-07-30 Diego Novillo <dnovillo@redhat.com>
10350 * tree-ssa-alias.c (compute_points_to_and_addr_escape): If a
10351 pointer escapes through a function call, assume that the
10352 callee will dereference it.
10353 (add_pointed_to_var): Assume that VALUE is always an
10355 (collect_points_to_info_r): Only call add_pointed_to_var if
10356 the value is an ADDR_EXPR.
10358 2004-07-30 Diego Novillo <dnovillo@redhat.com>
10360 * tree-ssa-alias.c (create_alias_map_for): Do not get the
10361 alias set of the inner type of ARRAY_TYPEs.
10363 2004-07-29 Diego Novillo <dnovillo@redhat.com>
10365 * tree-ssa-ccp.c (visit_assignment): Move code to prevent
10366 setting a non-register to UNDEFINED right before the call to
10369 2004-07-29 Kaz Kojima <kkojima@gcc.gnu.org>
10371 * config/sh/lib1funcs.asm: Make aliases movstr* for movmem*.
10373 2004-07-29 Diego Novillo <dnovillo@redhat.com>
10375 * tree-ssa.c (verify_flow_sensitive_alias_info): When
10376 comparing points-to sets of different pointers, make sure the
10377 second pointer is actually referenced in the code.
10379 2004-07-29 Zack Weinberg <zack@codesourcery.com>
10381 * config/ia64/ia64.c (setjmp_operand): Delete, unused.
10382 (got_symbolic_operand): Remove unreachable code.
10383 * config/ia64/ia64.h (PREDICATE_CODES): Remove entry for
10384 setjmp_operand; add entry for tls_symbolic_operand.
10385 * config/ia64/ia64-protos.h: Remove all prototypes of
10386 predicate functions.
10388 2004-07-29 Mark Mitchell <mark@codesourcery.com>
10390 * c-common.h (lang_post_pch_load): New variable.
10391 * c-pch.c (lang_post_pch_load): Define it.
10392 (c_common_read_pch): Use it.
10393 * cgraphunit.c (record_call_1): Give the front end a chance to
10394 record additional needed entities when a variable is marked as
10396 * tlink.c (recompile_files): Robustify.
10397 (scan_linker_output): If a symbol is assigned to a file,
10398 but after recompilation is not present there, issue an error
10401 2004-07-29 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
10403 * tree-ssa-loop-im.c (force_move_till_expr, force_move_till):
10404 Take orig_loop argument and pass it to set_level.
10405 (schedule_sm): Pass the correct orig_loop to force_move_till.
10407 2004-07-29 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
10409 * cfgloop.c (update_latch_info): Update dominator of the new block.
10410 (canonicalize_loop_headers, flow_loops_find): Do not free dominance
10412 * dominance.c (verify_dominators): Check that the dominance tree is
10414 (recount_dominator): Ignore unreachable blocks.
10415 (iterate_fix_dominators): Cleanup old dominance information before
10418 2004-07-29 Diego Novillo <dnovillo@redhat.com>
10420 * tree-ssa-operands.c (get_expr_operands): Revert changes
10421 to ADDR_EXPR processing introduced by:
10422 2004-06-21 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10423 * tree-ssa-operands.c (get_expr_operands): Minor rearrangements.
10425 2004-07-29 Joseph S. Myers <jsm@polyomino.org.uk>
10427 * doc/implement-c.texi: Add C90 subclause references. Point to
10428 preprocessor documentation instead of duplicating it. Add points
10429 only present in C90. Fill in documentation for all points.
10431 2004-07-29 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
10433 * pa.c (output_movb): Correct typo.
10435 2004-07-29 Pat Haugen <pthaugen@us.ibm.com>
10437 * ra.h (single_reg_in_regclass): Declare.
10438 * ra.c (single_reg_in_regclass): Define.
10439 (first_hard_reg): New.
10440 (init_ra): Initialize single_reg_in_regclass.
10441 * ra-colorize.c (ok_class): New.
10442 (coalesce, aggressive_coalesce, extended_coalesce_2): Use it.
10444 2004-07-29 Nathan Sidwell <nathan@codesourcery.com>
10446 * gcov-io.h: Allow zero tag as EOF indicator.
10447 (gcov_is_eof): Remove.
10448 (gcov_truncate): Remove.
10449 * gcov-io.c (gcov_seek): Always SEEK_SET.
10450 * libgcov.c (gcov_exit): Don't use gcov_truncate. Write explicit
10452 * coverage.c (read_counts_file): Don't use gcov_is_eof.
10453 * gcov-dump.c (dump_file): Likewise.
10454 * gcov.c (read_graph_file, read_count_file): Likewise.
10456 * c-decl.c (complete_array_type): Don't gratuitously copy
10457 maxindex. Check it always has a type.
10459 2004-07-29 Steven Bosscher <stevenb@suse.de>
10461 * rtl.c (currently_expanding_to_rtl): New.
10462 * rtl.h (currently_expanding_to_rtl): Export it.
10463 * cfgexpand.c (tree_cfg_expand): Set/clear it at entry/exit.
10465 * config/alpha/alpha.c (alpha_expand_mov): Remove old RTL
10467 * config/sh/sh.c: Replace rtx_equal_function_value_matters
10468 with currently_expanding_to_rtl.
10469 * config/sh/sh.md: Likewise.
10470 * config/ia64/ia64.c (got_symbolic_operand): Likewise.
10472 2004-07-29 Alexandre Oliva <aoliva@redhat.com>
10474 Introduce sh2a support.
10475 2004-07-29 Alexandre Oliva <aoliva@redhat.com>
10476 * config.gcc: Build multilibs for sh2a and sh2a-single by
10478 * config/sh/sh.h (SUPPORT_SH2A, SUPPORT_SH2A_SINGLE): Define by
10479 default. Split their tests out of the corresponding SH4
10481 * config/sh/t-sh (MULTILIB_MATCHES): Don't ever use SH4 or SH4a
10482 multilibs for SH2a.
10483 2004-07-28 Alexandre Oliva <aoliva@redhat.com>
10484 * config.gcc: Handle sh2a multilibs and cpu selection.
10485 * config/sh/sh.h: Likewise. Handle sh2a command line flags.
10486 * config/sh/t-mlib-sh2a: New.
10487 * config/sh/t-mlib-sh2a-nofpu: New.
10488 * config/sh/t-mlib-sh2a-single: New.
10489 * config/sh/t-mlib-sh2a-single-only: New.
10490 2004-07-09 Nick Clifton <nickc@redhat.com>
10492 * config/sh/sh.h (DRIVER_SELF_SPECS): Issue an error message if
10493 -ml and -m2a are used together.
10494 2004-03-23 DJ Delorie <dj@redhat.com>
10495 * config/sh/sh.c (sh_builtin_saveregs): Use the double code only
10496 when we have a double-sized FPU.
10497 2004-02-24 Corinna Vinschen <vinschen@redhat.com>
10498 * config/sh/lib1funcs.asm (set_fpscr): Don't build if __SH2A_NOFPU__
10500 * config/sh/elf.h (SUBTARGET_ASM_ISA_SPEC): Add cases for -msh2a-nofpu,
10501 -msh2a-single and -msh2a-single-only
10502 2004-02-24 Corinna Vinschen <vinschen@redhat.com>
10503 * config/sh/crt1.asm: Don't generate FPU instructions if __SH2A_NOFPU__
10505 2004-02-20 DJ Delorie <dj@delorie.com>
10506 * config/sh/sh.md (movsf_i, movsf_ie, movsf, ble, bge): Disable for sh2a-nofpu.
10507 2004-02-20 Fred Fish <fnf@redhat.com>,
10508 Corinna Vinschen <vinschen@redhat.com>
10509 * config/sh/t-sh (MULTILIB_OPTIONS): Add 2a-nofpu.
10510 (MULTILIB_EXCEPTIONS): Don't build littel-endian on sh2a.
10511 2004-02-18 DJ Delorie <dj@redhat.com>
10512 * config/sh/sh.c (broken_move): Add support for movi20.
10513 * config/sh/sh.h: Likewise.
10514 (SHIFT_COUNT_TRUNCATED): Set for sh2a.
10515 * config/sh/sh.md (udivsi3_sh2a): New.
10516 (udivsi3): Call it.
10517 (divsi3_sh2a): New.
10520 (ashlsi3_sh2a): New.
10521 (ashrsi3_sh2a): New.
10522 (lshrsi3_sh2a): New.
10523 (movsi_i): Disable for sh2a.
10524 (movsi_ie): Add movi20.
10525 (movsf_i, movsf_ie, movsf, ble, untyped_call): Explicitly enable
10526 sh2a, for -m2a-nofpu mode.
10527 2004-02-13 DJ Delorie <dj@redhat.com>
10528 * config/sh/lib1funcs.asm: Handle double vs single better.
10529 * config/sh/sh.h: Likewise.
10530 2004-02-09 DJ Delorie <dj@redhat.com>
10531 * config/sh/crt1.asm: Add support for sh2a.
10532 * config/sh/elf.h: Likewise.
10533 * config/sh/lib1funcs.asm: Likewise.
10534 * config/sh/sh.c: Likewise.
10535 * config/sh/sh.md: Likewise.
10536 * config/sh/sh.h: Likewise.
10537 * config/sh/t-sh: Likewise.
10539 2004-07-28 Alexandre Oliva <aoliva@redhat.com>
10541 * config/frv/frv.md (movqi_internal, movhi_internal,
10542 movsi_internal): Add backup alternatives for memory inputs.
10544 2004-07-28 Matt Austern <austern@apple.com>
10546 * config/darwin.c (darwin_one_byte_bool): New global variable.
10547 * config/darwin.h (darwin_one_byte_bool): Declare.
10548 (SUBTARGET_OPTIONS): Define macro. (for -mone-byte-bool flag.)
10549 * config/rs6000/darwin.h (BOOL_TYPE_SIZE): Conditionalize on
10550 value of darwin_one_byte_bool.
10551 * doc/invoke.texi: Document -mone-byte-bool flag.
10553 2004-07-28 Eric Christopher <echristo@redhat.com>
10555 * c-common.c (c_common_unsafe_for_reeval): Delete.
10556 * c-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Delete use.
10557 * c-pretty-print.c (pp_c_expression): Delete UNSAVE_EXPR case.
10558 * calls.c (fix_unsafe_tree): Delete.
10559 (expand_call): Delete code which used above.
10560 * dojump.c (do_jump): Delete UNSAVE_EXPR case.
10561 * expr.c (expand_expr_real_1): Ditto.
10562 * fold-const.c (non_lvalue): Ditto.
10563 * langhooks-def.h (LANG_HOOKS_UNSAFE_FOR_REEVAL): Delete.
10564 (lhd_unsafe_for_reeval): Ditto.
10565 * langhooks.c (lhd_unsafe_for_reeval): Ditto.
10566 * langhooks.h (unsafe_for_reeval): Ditto.
10567 (unsave_expr_now): Adjust comment.
10568 * tree-inline.c (copy_body_r): Delete UNSAVE_EXPR bits.
10569 (estimate_num_insns_1): Ditto.
10570 * tree-pretty-print.c (dump_generic_node): Ditto.
10571 * tree.c (expr_align): Ditto.
10572 (unsave_expr): Delete.
10573 (unsafe_for_reeval): Ditto.
10574 * tree.h (unsafe_for_reeval, unsave_expr): Ditto.
10575 * tree.def (UNSAVE_EXPR): Delete.
10576 * objc/objc-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Delete.
10578 2004-07-28 Zack Weinberg <zack@codesourcery.com>
10580 * tree.h (enum tls_model): Move ...
10581 * coretypes.h: ... here.
10583 2004-07-28 Richard Sandiford <rsandifo@redhat.com>
10585 * config/frv/frv.h (EPILOGUE_USES): New. Use LR.
10587 2004-07-28 Richard Sandiford <rsandifo@redhat.com>
10589 * cse.c (validate_canon_reg): New function, split out from...
10590 (canon_reg): ...here. Use validate_canon_reg for both 'e' and 'E'.
10592 2004-07-28 Diego Novillo <dnovillo@redhat.com>
10594 * tree-ssa-alias.c (maybe_create_global_var): Don't just
10595 return if .GLOBAL_VAR has been created.
10597 2004-07-28 Diego Novillo <dnovillo@redhat.com>
10599 * tree-ssa.c (verify_flow_insensitive_alias_info): Process
10600 every variable that may have aliases, not just tags.
10602 2004-07-28 Aldy Hernandez <aldyh@redhat.com>
10604 * config/rs6000/rs6000.md ("move_from_CR_gt_bit"): Rename to
10605 move_from_CR_eq_bit.
10606 Rename UNSPEC_MV_CR_GT to UNSPEC_MV_CR_EQ.
10609 * config/rs6000/spe.md ("e500_flip_gt_bit"): Rename to
10612 * config/rs6000/rs6000-protos.h: Rename output_e500_flip_gt_bit to
10613 output_e500_flip_eq_bit.
10615 * config/rs6000/rs6000.c (output_e500_flip_gt_bit): Rename to
10616 output_e500_flip_eq_bit.
10617 (rs6000_emit_sCOND): Rename call to output_e500_flip_gt_bit to
10618 output_e500_flip_eq_bit.
10619 Rename gen_move_from_CR_gt_bit to gen_move_from_CR_eq_bit.
10620 (print_operand): case D. Get to EQ bit.
10622 2004-07-28 Richard Sandiford <rsandifo@redhat.com>
10624 * gcov.c (function_summary): Add missing \n.
10626 2004-07-28 Alexandre Oliva <aoliva@redhat.com>
10628 Introduce sh4a support.
10629 * config.gcc: Handle sh4a multilibs and cpu selection.
10630 * config/sh/sh.h: Likewise. Handle sh4a command line flags.
10631 * config/sh/t-mlib-sh4a: New.
10632 * config/sh/t-mlib-sh4al: New.
10633 * config/sh/t-mlib-sh4a-nofpu: New.
10634 * config/sh/t-mlib-sh4a-single: New.
10635 * config/sh/t-mlib-sh4a-single-only: New.
10636 2004-02-20 DJ Delorie <dj@redhat.com>
10637 * config/sh/sh.md ("movua"): Change constraint from "m" to "Sua".
10638 * config/sh/sh.h (EXTRA_CONSTRAINT_S): Add "Sua" support.
10639 2003-08-22 Eric Christopher <echristo@redhat.com>
10640 * config/sh/sh4a.md: Update for chip errata.
10641 2003-08-07 Eric Christopher <echristo@redhat.com>
10642 * config/sh/sh4a.md: New file. sh4a processor description.
10643 2003-07-08 Alexandre Oliva <aoliva@redhat.com>
10644 * config/sh/sh.h (TARGET_SWITCHES): Added 4al. Adjust description
10646 (SH_ASM_SPEC): Pass -dsp for -m4al, not -m4a-nofpu.
10647 * config/sh/t-sh (MULTILIB_MATCHES): Map -m4al to -m4a-nofpu.
10648 * doc/invoke.texi (SH Options): Document -m4al.
10649 2003-07-03 Alexandre Oliva <aoliva@redhat.com>
10650 * config/sh/sh.c (expand_block_move): Remove commented-out code
10651 checked in by mistake.
10652 (sh_cannot_change_mode_class): Enable SUBREGs to be used to select
10653 single elements from SFmode vectors.
10654 * config/sh/sh.md (fsca): Use VEC_CONCAT to initialize the output
10656 (sinsf2, cossf2, sindf2, cosdf2): Don't emit CLOBBER.
10657 2003-07-01 Alexandre Oliva <aoliva@redhat.com>
10658 * config/sh/sh.h (sh_fsca_sf2int, sh_fsca_df2int,
10659 sh_fsca_int2sf): Remove variable declarations.
10660 * config/sh/sh.c (sh_fsca_sf2int, sh_fsca_df2int,
10661 sh_fsca_int2sf): New functions.
10662 (sh_fsca_sf2int_rtx, sh_fsca_df2int_rtx,
10663 sh_fsca_int2sf_rtx): New static variables.
10664 * config/sh/sh-protos.h (sh_fsca_sf2int, sh_fsca_df2int,
10665 sh_fsca_int2sf): Declare.
10666 * config/sh/sh.md: Adjust.
10667 * doc/invoke.texi (SH Options): Document new options.
10668 * config/sh/lib1funcs.asm (ic_invalidate): Remove SH4a forward
10669 compatibility from SH4 code.
10670 2003-06-27 Alexandre Oliva <aoliva@redhat.com>
10671 * config/sh/sh.c (expand_block_move): Don't emit POST_INC too
10673 (memory_movsrc_operand): Renamed to...
10674 (unaligned_load_operand): ... this. Simplified.
10675 * config/sh/sh.h (PREDICATE_CODES): Adjust.
10676 * config/sh/sh.md (movua, extv, extzv): Likewise. Change movua's
10677 input operand to SImode, and adjust the others. Introduce
10678 post-increment by peephole.
10679 * config/sh/sh.c (expand_block_move): Give the target address the
10680 same mode as the temp reg.
10681 * config/sh/sh.c (expand_block_move): Use a temp reg for unaligned
10683 2003-06-26 Alexandre Oliva <aoliva@redhat.com>
10684 Introduce support for SH4a.
10685 * config/sh/lib1funcs.asm (ic_invalidate): Use icbi if
10686 __SH4A__. Emit 4 4kb blocks and touch all of them otherwise.
10687 * config/sh/sh.c (sh_fsca_sf2int, sh_fsca_df2int,
10688 sh_fsca_int2sf): New.
10689 (sh_init_builtins): Initialize them.
10690 (print_operand): Support `d'.
10691 (expand_block_move): Use movua if src is misaligned.
10692 (memory_movsrc_operand): New.
10693 * config/sh/sh.h (TARGET_CPU_CPP_BUILTINS): Define __SH4A__
10694 and one of the SH4 macros.
10695 (SH4A_BIT, TARGET_SH4A_ARCH, TARGET_SH4A_FP,
10696 SELECT_SH4A_NOFPU, SELECT_SH4A_SINGLE_ONLY, SELECT_SH4A,
10697 SELECT_SH4A_SINGLE): New.
10698 (TARGET_NONE): Add SH4A_BIT.
10699 (TARGET_SWITCHES): Add 4a-single-only, 4a-single, 4a-nofpu and 4a.
10700 (SH_ASM_SPEC): Pass -dsp if -m4a-nofpu.
10701 (sh_fsca_sf2int, sh_fsca_df2int, sh_fsca_int2sf): Declare.
10702 (OVERRIDE_OPTIONS): Set cpu to CPU_SH4A when appropriate.
10703 (enum processor_type): Added PROCESSOR_SH4A.
10704 (PREDICATE_CODES): Add memory_movsrc_operand.
10705 * config/sh/sh.md: Removed unused variables.
10706 (attr cpu): Add sh4a.
10707 (attr type): Add movua, fsrra and fsca.
10708 (prefetch): New, for SH4.
10709 (ic_invalidate_line, ic_invalidate_line_sh4a): Use icbi.
10710 (toggle_sz): Set type to fp.
10711 (toggle_pr, rsqrtsf2, fsca, sinsf2, cossf2, sindf2, cosdf2): New.
10712 (movua, extv, extzv): New.
10713 * config/sh/t-sh: Add multilibs for 4a, 4a-nofpu, 4a-single
10714 and 4a-single-only.
10716 2004-07-28 Diego Novillo <dnovillo@redhat.com>
10718 * tree-optimize.c (init_tree_optimization_passes): Schedule
10719 pass_may_alias right after the program is renamed into SSA.
10720 * tree-pass.h (PROP_alias): Define.
10721 * tree-outof-ssa.c (pass_del_ssa): Require PROP_alias.
10722 * tree-sra.c (pass_sra): Likewise.
10723 * tree-ssa-ccp.c (pass_ccp): Likewise.
10724 * tree-ssa-copyrename.c (pass_rename_ssa_ccp): Likewise.
10725 * tree-ssa-dce.c (pass_dce): Likewise.
10726 * tree-ssa-dom.c (pass_dominator): Likewise.
10727 * tree-ssa-dse.c (pass_dse): Likewise.
10728 * tree-ssa-forwprop.c (pass_forwprop): Likewise.
10729 * tree-ssa-loop-ch.c (pass_ch): Likewise.
10730 * tree-ssa-phiopt.c (pass_phiopt): Likewise.
10731 * tree-ssa-pre.c (pass_pre): Likewise.
10732 * tree-tailcall.c (pass_tail_recursion): Likewise.
10733 * tree-ssa.c (pass_redundant_phi): Likewise.
10734 * tree-ssa-alias.c (aliases_computed_p): Remove.
10736 (init_alias_info): Do not mark all type tags for renaming
10738 Clear may_aliases from every symbol.
10739 (setup_pointers_and_addressables): If a pointer has not been
10740 dereferenced and it had a type tag, clear it and mark the old
10743 2004-07-28 Diego Novillo <dnovillo@redhat.com>
10745 PR tree-optimization/16705
10746 * tree-ssa-alias.c (create_global_var): Set DECL_EXTERNAL on
10749 2004-07-27 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10751 * expr.c (expand_expr_real_1, case PARM_DECL): Remove obsolete error
10754 * gimplify.c (maybe_with_size_expr): If already have WITH_SIZE_EXPR,
10755 don't make another one.
10757 PR optimization/15077
10758 * function.h (struct function): Add field saved_static_chain_decl.
10759 Fix comment for static_chain_decl.
10760 * tree-inline.c (save_body): Add new arg and handle static_chain_decl.
10761 * tree-inline.h (save_body): Add new arg.
10762 * tree-optimize.c (tree_rest_of_compilation): Handle saving
10765 2004-07-27 Richard Henderson <rth@redhat.com>
10767 * gimplify.c (is_gimple_addr_expr_arg_or_indirect): Remove.
10768 (gimplify_modify_expr, gimplify_addr_expr, gimplify_expr): Use
10769 is_gimple_addressable.
10770 * tree-gimple.c (is_gimple_addressable): Rename from
10771 is_gimple_addr_expr_arg; accept INDIRECT_REF.
10772 (is_gimple_lvalue): Don't test INDIRECT_REF directly.
10773 * tree-gimple.h, tree-sra.c, tree-ssa-loop-im.c: Update for
10774 rename to is_gimple_addressable.
10776 2004-07-28 Alan Modra <amodra@bigpond.net.au>
10778 * config/rs6000/rs6000.c (function_arg_padding): Pad SFmode upwards.
10780 2004-07-27 Richard Henderson <rth@redhat.com>
10782 * function.c (assign_stack_local_1): Widen alignment to HOST_WIDE_INT
10785 2004-07-27 Zack Weinberg <zack@codesourcery.com>
10787 * libgcc2.c: Change all conditionals testing
10788 LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 96 to == 80.
10789 * libgcc2.h: Likewise.
10790 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Set
10791 TYPE_PRECISION of float80_type to 80.
10792 * config/ia64/ia64.c (ia64_init_builtins): Set TYPE_PRECISION
10793 of fpreg_type and float80_type to 80.
10794 * config/i386/i386.h, config/ia64/ia64.h, config/m68k/m68k.h
10795 * config/m68k/netbsd-elf.h:
10796 Change LONG_DOUBLE_TYPE_SIZE and possibly LIBGCC2_LONG_DOUBLE_TYPE_SIZE
10797 to evaluate to 80 whenever they would formerly have evaluated to 96.
10798 * config/i386/sco5.h: Remove unnecessary redefinition of
10799 LONG_DOUBLE_TYPE_SIZE.
10800 * doc/rtl.texi: Clarify uses of XFmode and TFmode.
10801 * config/i386/i386-modes.def: Use FRACTIONAL_FLOAT_MODE for
10802 XFmode, with a bitsize of 80. Update commentary.
10803 * config/ia64/ia64-modes.def: Likewise.
10804 * config/m68k/m68k-modes.def: Likewise.
10806 2004-07-27 Steven Bosscher <stevenb@suse.de>
10808 * cfgexpand.c (tree_expand_cfg): Fix comment.
10810 * calls.c (expand_call): Ignore rtx_equal_function_value_matters.
10811 * function.c (purge_single_hard_subreg_set, purge_hard_subreg_sets):
10813 (prepare_function_start): Don't set rtx_equal_function_value_matters.
10814 * integrate.c (copy_rtx_and_substitute): Don't test for it.
10815 * passes.c (rest_of_compilation): Don't call purge_hard_subreg_sets.
10816 Don't set rtx_equal_function_value_matters. Don't register RTL hooks
10817 here again. Update leading comment.
10818 * rtl.c (rtx_equal_function_value_matters): Remove.
10819 (rtx_equal_p): Don't test for it.
10820 * simplify-rtx.c (simplify_binary_operation, simplify_subreg):
10823 * rtl.h (enum insn_note): Remove NOTE_INSN_LOOP_END_TOP_COND.
10824 * rtl.c (note_insn_name): Likewise.
10825 * emit-rtl.c (remove_unnecessary_notes): Don't handle it.
10826 * final.c (final_scan_insn): Likewise.
10828 * except.c (finish_eh_generation): Don't call cfg_cleanup from here.
10829 * passes.c (rest_of_handle_eh): Do it here.
10831 * stmt.c (struct nesting): Remove struct nesting block member.
10832 (struct stmt_status): Remove x_block_start_count field.
10833 (current_block_start_count): Remove.
10835 2004-07-27 Brian Booth <bbooth@redhat.com>
10837 * tree-optimize.c (register_one_dump_file): Update condition that uses
10838 static_pass_number.
10839 (dup_pass_1): Replace with...
10840 (next_pass_1): This.
10841 (NEXT_PASS): Call next_pass_1.
10842 (DUP_PASS): Remove.
10843 (init_tree_optimization_passes): Remove uses of DUP_PASS.
10844 (execute_one_pass): Update condition that uses
10845 static_pass_number.
10846 * tree-pass.h (tree_opt_pass): Declare static_pass_number as a signed
10849 2004-07-27 Nick Clifton <nickc@redhat.com>
10851 * config/m32r/m32r.c: Include integrate.h in order to get the
10852 prototype for get_hard_reg_initial_val().
10854 * config/m32r/m32r.md (m32rpipeline): Remove unused value "m32r"
10855 and tidy up indentation.
10856 (final_presence_set): Use absence_set instead, so that if there is
10857 nothing in the "o" pipe the "s" pipe can be scheduled.
10859 2004-07-27 Diego Novillo <dnovillo@redhat.com>
10861 * tree-ssa-alias.c (create_name_tags): Ignore pointers that
10862 don't have PT_VARS nor PT_MALLOC set.
10863 Clear name tag from pointers that have not been dereferenced.
10864 (set_pt_anything, set_pt_malloc): Forward declare.
10865 * tree-ssa-copy.c (may_propagate_copy): Compare alias sets,
10866 not type compatibility when determining if a pointer can be
10869 2004-07-27 Richard Sandiford <rsandifo@redhat.com>
10871 * expr.h (canonicalize_condition, get_condition): Add an int argument.
10872 * gcse.c (fis_get_condition): Reimplement using get_condition, leaving
10873 it to check whether the condition is still valid at the jump insn.
10874 * ifcvt.c (noce_get_condition): Likewise.
10875 (noce_get_alt_condition): Update call to canonicalize_condition.
10876 * loop-iv.c (simplify_using_initial_values): Update call to
10877 get_condition. Remove FIXME.
10878 (check_simple_exit): Update call to get_condition.
10879 * loop-unswitch.c (may_unswitch_on): Likewise.
10880 * loop.c (check_dbra_loop): Likewise.
10881 (canonicalize_condition, get_condition): Add an argument to say whether
10882 the condition must still be valid at INSN.
10883 (get_condition_for_loop): Update call to get_condition. Require that
10884 the condition be valid at INSN.
10885 * predict.c (estimate_probability): Update call to get_condition.
10886 Remove unused earliest parameter.
10887 (expected_value_to_br_prob): Update call to canonicalize_condition.
10889 2004-07-26 Eric Christopher <echristo@redhat.com>
10891 * tree-dfa.c (add_referenced_var): Register initializers of global
10894 2004-07-26 Paolo Bonzini <bonzini@gnu.org>
10896 * config/i386/i386.c (function_arg): Always treat 8-
10897 and 16-byte wide vectors the same, even if MMX/SSE
10899 (contains_128bit_aligned_vector_p): Add comment.
10901 2004-07-26 J"orn Rennecke <joern.rennecke@superh.com>
10903 * ra.h (enum node_type): Rename to:
10904 (enum ra_node_type).
10905 * ra-colorize.c: Likewise.
10907 2004-07-26 Richard Sandiford <rsandifo@redhat.com>
10909 * cfgcleanup.c (try_simplify_condjump): Call update_forwarder_flag
10910 after simplifying the jump.
10912 2004-06-26 Richard Henderson <rth@redhat.com>
10914 * calls.c (combine_pending_stack_adjustment_and_call): Make
10915 preferred_unit_stack_boundary argument unsigned. Make
10916 unadjusted_alignment unsigned.
10917 (expand_call): Make preferred_stack_boundary and
10918 preferred_unit_stack_boundary variables unsigned.
10919 * function.c (assign_stack_local_1): Make alignment unsigned.
10920 * function.h (struct function): Make stack_alignment_needed,
10921 preferred_stack_boundary unsigned.
10922 * config/i386/i386.c (ix86_preferred_stack_boundary): Make unsigned.
10923 (ix86_compute_frame_layout): Make stack_alignment_needed,
10924 preferred_alignment variables unsigned.
10925 * config/i386/i386.h (ix86_preferred_stack_boundary): Make unsigned.
10927 2004-07-26 Tom Tromey <tromey@redhat.com>
10929 * tree.h: Fix typo in comment.
10931 2004-07-26 Daniel Jacobowitz <dan@debian.org>
10934 * ggc-zone.c (struct alloc_chunk): Remove attribute packed.
10935 (MAX_FREE_BIN_SIZE): Increase on 64-bit targets.
10936 (ggc_free): Remove incorrect freeing.
10937 (sweep_pages): Advance PP for large pages. Fix indentation.
10939 2004-07-26 Richard Sandiford <rsandifo@redhat.com>
10941 PR rtl-optimization/16643
10942 * cfglayout.h (cfg_layout_initialize): Add a flags parameter.
10943 * cfglayout.c (cfg_layout_initialize): Pass it to cleanup_cfg.
10944 * basic-block.h (reorder_basic_blocks): Add a flags parameter.
10945 * cfglayout.c (reorder_basic_blocks): Pass it to cfg_layout_initialize.
10946 (partition_hot_cold_basic_blocks): Pass 0 to cfg_layout_initialize.
10947 * function.c (thread_prologue_and_epilogue_insns): Likewise.
10948 * rtl.h (tracer): Add a flags parameter.
10949 * tracer.c (tracer): Pass it to cfg_layout_initialise.
10950 * passes.c (rest_of_handle_stack_regs): Pass 0 to reorder_basic_blocks.
10951 (rest_of_handle_reorder_blocks): Update calls to tracer and
10952 reorder_basic_blocks, passing CLEANUP_UPDATE_LIFE if appropriate.
10953 (rest_of_handle_tracer): Pass 0 to tracer.
10954 (rest_of_handle_loop2): Pass 0 to cfg_layout_initialize.
10956 2004-07-25 David Edelsohn <edelsohn@gnu.org>
10959 * config/rs6000/rs6000.md (movdi_internal64): Further disparage
10962 2004-07-24 Nathan Sidwell <nathan@codesourcery.com>
10964 * tree.h (BINFO_BASE_ACCESSES): Accesses are a VEC(tree).
10965 (BINFO_BASE_ACCESS): Adjust.
10966 (BINFO_BASE_ACCESS_APPEND): New.
10967 (struct tree_binfo): Make base_accesses a VEC(tree) pointer.
10968 * dbxout.c (dbxout_type): Adjust binfo access accessing.
10969 * dwarf2out.c (gen_member_die): Likewise.
10970 * tree-dump.c (deque_and_dump): Likewise.
10972 2004-07-26 Falk Hueffner <falk@debian.org>
10974 * config/alpha/alpha.c (alpha_rtx_cost_data): Tweak int_div
10977 2004-07-25 Roger Sayle <roger@eyesopen.com>
10979 * config/i386/i386.c (output_fp_compare): Use ffreep to pop top
10980 value off of the stack if TARGET_USE_FFREEP.
10982 2004-07-26 Bernardo Innocenti <bernie@develer.com>
10984 * gengtype.c (oprintf): Replace xrealloc () with XRESIZEVEC ().
10985 * gengtype-yacc.y: Likewise. Replace free() with XDELETE ().
10986 * c-typeck.c (PUSH_SPELLING): Remove redundant NULL-pointer
10987 check on invocation of XRESIZEVEC ().
10989 2004-07-26 Bernardo Innocenti <bernie@develer.com>
10991 * c-common.c (disable_builtin_function): Rename variable n to
10992 new_disabled_builtin.
10993 * c-decl.c (duplicate_decls): Rename parameter decl to new_decl.
10994 Rename local variable old to old_decl.
10995 * gensupport.c (shift_output_template): Rename parameter old to src.
10996 * simplify-rtx.c (simplify_replace_rtx): Rename parameter oldx to
10997 old_rtx and newx to new_rtx.
10999 2004-07-26 Bernardo Innocenti <bernie@develer.com>
11001 * Makefile.in (C_PRAGMA_H): New variable to track dependencies
11003 * c-pragma.h (c_lex, c_lex_with_flags): Change returntype to
11005 * c-lex.c: Likewise.
11007 2004-07-25 Roger Sayle <roger@eyesopen.com>
11009 * fold-const.c (constant_boolean_node): Make extern.
11010 (make_range): Wrap long lines.
11011 (fold_cond_expr_with_comparison): Remove unnecessary call to
11012 pedantic_non_lvalue. Add missing calls to fold_convert.
11013 (fold_truthop): Add missing calls to fold_convert.
11015 * tree.h (constant_boolean_node): Add prototype here.
11016 * builtins.c (expand_builtin_strncmp): Add missing calls to
11018 * tree-ssa-dom.c (record_equivalences_from_incoming_edge):
11019 Call fold_convert and constant_boolean_node to correct types.
11020 * tree-ssa-forwprop.c (substitute_single_use_vars): Add
11021 missing call to fold_convert to correct types.
11023 2004-07-26 Niall Douglas <s_fsfeurope2@nedprod.com>
11024 Brian Ryner <bryner@brianryner.com>
11028 * c-common.c (c_common_attribute_table): Allow
11029 handle_visibility_attribute to be called for types.
11030 (handle_visibility_attribute) When given a type, set the visibility
11031 bits on the TYPE_NAME. When given a decl, don't set no_add_attrs
11032 so that we can check later whether the attribute was present. Added
11033 warning if attribute applied to non class type.
11034 * c-decl.c (diagnose_mismatched_decls): Updated rules for merging
11035 decls and checking that they are consistent.
11036 * common.opt: Added -fvisibility.
11037 * c.opt, c-opts.c: Added -fvisibility-inlines-hidden.
11038 * c-pragma.h, c-pragma.c: Added handle_pragma_visibility().
11039 * flags.h, tree.h: Added assorted support defines for overall patch
11040 * opts.c: Added parsing support for -fvisibility.
11041 * tree.c (build_decl): Set visibility for all decls to be whatever
11042 is in force at that time.
11043 * varasm.c (default_binds_local_p_1): Reworked logic determining
11044 when to make a symbol locally bound.
11045 * doc/invoke.texi: Added documentation for -fvisibility and
11046 -fvisibility-inlines-hidden.
11048 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11050 * basic-block.h (reorder_block_def): Rename to reorder_block_def_p.
11051 * c-common.c: Add missing casts from void * to other types.
11052 * c-decl.c: Likewise.
11053 * c-format.c: Likewise.
11054 * c-lex.c: Likewise.
11055 * c-pragma.c: Likewise.
11056 * c-typeck.c: Likewise.
11057 * defaults.h: Likewise.
11058 * genconstants.c: Likewise.
11059 * gengtype-lex.l: Likewise.
11060 * genmodes.c: Likewise.
11061 * read-rtl.c: Likewise.
11064 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11066 * bitmap.c: Use type-safe memory allocation macros from libiberty.
11067 * c-common.c: Likewise.
11068 * c-decl.c: Likewise.
11069 * c-lang.c: Likewise.
11070 * c-lex.c: Likewise.
11071 * c-opts.c: Likewise.
11072 * c-parse.in: Likewise.
11073 * c-typeck.c: Likewise.
11074 * genconditions.c: Likewise.
11075 * gengtype-lex.l: Likewise.
11076 * gengtype-yacc.y: Likewise.
11077 * gengtype.c: Likewise.
11078 * genmodes.c: Likewise.
11079 * gensupport.c: Likewise.
11080 * read-rtl.c: Likewise.
11081 * read-rtl.c (read_constants): Use INSERT instead of TRUE in call to
11084 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11086 * c-decl.c (groktypename, groktypename_in_param_context): Rename
11087 variable typename to type_name.
11088 * c-lex.c (interpret_float): Likewise.
11090 2004-07-25 Roger Sayle <roger@eyesopen.com>
11092 * convert.c (convert_to_real, convert_to_integer,
11093 convert_to_complex): Replace calls to build with calls to buildN.
11094 * coverage.c (tree_coverage_counter_ref): Likewise.
11095 * dojump.c (do_jump): Likewise.
11096 * dwarf2out.c (loc_descriptor_from_tree): Likewise.
11097 * emit-rtl.c (component_ref_for_mem_expr,
11098 set_mem_attributes_minus_bitpos): Likewise.
11099 * explow.c (update_nonlocal_goto_save_area): Likewise.
11100 * expmed.c (expand_shift, make_tree, const_mult_add_overflow_p,
11101 expand_mult_add): Likewise.
11102 * expr.c (emit_block_move_via_libcall, clear_storage_via_libcall,
11103 store_constructor, get_inner_reference, expand_expr_real_1,
11104 try_casesi, try_tablejump): Likewise.
11105 * function.c (expand_function_start): Likewise.
11106 * stmt.c (emit_case_bit_tests, expand_end_case_type,
11107 node_has_low_bound, node_has_high_bound, emit_case_nodes): Likewise.
11108 * stor-layout.c (place_union_field, layout_type): Likewise.
11109 * tree.c (substitute_in_expr, tree_fold_gcd): Likewise.
11110 * varasm.c (copy_constant): Likewise.
11112 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11114 * c-common.c: Rename all identifiers named `new'.
11115 * c-decl.c: Likewise.
11116 * gensupport.c: Likewise.
11117 * simplify-rtx.c: Likewise.
11118 * c-common.c (disable_builtin_function): Replace a call to xmalloc()
11120 * gensupport.c (alter_output_for_insn): Replace two calls to xmalloc()
11123 2004-07-25 Joseph S. Myers <jsm@polyomino.org.uk>
11126 * c-decl.c (start_decl): Do not set DECL_EXTERNAL for initialized
11127 declarations until after calling pushdecl.
11128 (grokdeclarator): Set DECL_EXTERNAL for variables based on use of
11129 "extern" and not on whether the declaration is initialized.
11131 2004-07-25 Daniel Jacobowitz <dan@debian.org>
11133 * config.gcc (i[34567]86-*-solaris2*, sparc64-*-solaris2*)
11134 (sparc-*-solaris2*): Include sol2.o and sol2-protos.h.
11135 * config/sol2-c.c: Include "tm.h", "tm_p.h", "toplev.h",
11136 "cpplib.h", "c-pragma.h", "c-common.h".
11137 (solaris_pragma_align, solaris_pragma_init, solaris_pragma_fini)
11138 (solaris_register_pragmas): New functions.
11139 * config/sol2-protos.h: New file.
11140 * config/sol2.c: New file.
11141 * config/sol2.h (SOLARIS_ATTRIBUTE_TABLE, ASM_DECLARE_FUNCTION_SIZE)
11142 (REGISTER_TARGET_PRAGMAS): New macros.
11143 (solaris_pending_aligns, solaris_pending_inits)
11144 (solaris_pending_finis): New variables.
11145 * config/t-sol2 (sol2-c.o): Update dependencies.
11146 (sol2.o): New rule.
11147 * config/i386/i386.c (TARGET_INSERT_ATTRIBUTES): Define in terms of
11148 SUBTARGET_INSERT_ATTRIBUTES.
11149 (ix86_attribute_table): Include SUBTARGET_ATTRIBUTE_TABLE.
11150 * config/i386/sol2.h (SUBTARGET_INSERT_ATTRIBUTES)
11151 (SUBTARGET_ATTRIBUTE_TABLE, ASM_OUTPUT_CALL): Define.
11152 * config/sparc/elf.h (ASM_DECLARE_FUNCTION_SIZE): Redefine.
11153 * config/sparc/sp64-elf.h (ASM_DECLARE_FUNCTION_SIZE): Redefine.
11154 * config/sparc/sol2.h (SUBTARGET_INSERT_ATTRIBUTES)
11155 (SUBTARGET_ATTRIBUTE_TABLE, ASM_OUTPUT_CALL): Define.
11156 * config/sparc/sparc.c (sparc_attribute_table): New.
11157 (TARGET_INSERT_ATTRIBUTES): Define in terms of
11158 SUBTARGET_INSERT_ATTRIBUTES.
11159 (TARGET_ATTRIBUTE_TABLE): Define if SUBTARGET_ATTRIBUTE_TABLE
11161 * doc/extend.texi (Solaris Pragmas): New section.
11163 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11165 * c-common.c: Rename all identifiers named `class' to `cl'.
11166 * c-common.h: Likewise.
11167 * c-parse.in: Likewise.
11168 * c-typeck.c: Likewise.
11169 * genmodes.c: Likewise.
11170 * real.c: Likewise.
11171 * real.h: Likewise.
11172 * recog.c: Likewise.
11173 * recog.h: Likewise.
11174 * regrename.c: Likewise.
11175 * tree.h: Likewise.
11176 * c-common.c (builtin_function_2): Change type of 5th parameter from
11177 int to enum built_in_function. Change type of 8th parameter from int
11179 * c-decl (builtin_function): Replace call to ggc_alloc_cleared ()
11181 * c-typeck.c (convert_arguments): Change type of formal_prec from
11182 int to unsigned int.
11183 * genmodes.c (blank_mode): Make a few negative constants unsigned.
11184 (complete_all_modes, calc_wider_mode, emit_insn_modes_h,
11185 emit_mode_name, emit_mode_class, emit_mode_precision, emit_mode_size,
11186 emit_mode_nunits, emit_mode_wider, emit_mode_mask, emit_mode_inner,
11187 emit_mode_base_align, emit_class_narrowest_mode): Pass an integer
11188 iterator to for_all_modes () instead of an enum because enums can't
11189 be incremented in C++.
11192 2004-07-25 Daniel Jacobowitz <dan@debian.org>
11194 * regmove.c (optimize_reg_copy_1): Don't try to replace call-used
11197 2004-07-25 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11199 * tree-ssa-operands.c (get_stmt_operands, get_expr_operands):
11200 Handle ARRAY_RANGE_REF like ARRAY_REF.
11202 2004-07-25 Joseph S. Myers <jsm@polyomino.org.uk>
11204 * c-typeck.c (digest_init): Don't allow arrays of signed or
11205 unsigned variants of wchar_t to be initialized by wide string
11206 constants. Do allow arrays of enumerated types compatible with
11207 wchar_t to be initialized by wide string constants. Refine tests
11208 distinguishing wide and narrow strings and arrays. Give specific
11209 error for arrays of other integer types initialized by string
11211 (output_init_element, process_init_element): Check for
11212 INTEGRAL_TYPE_P rather than just for INTEGER_TYPE when
11213 initializing with string constants.
11215 2004-07-25 Richard Henderson <rth@redhat.com>
11217 * c-decl.c (start_function): Set DECL_ARTIFICIAL and DECL_IGNORED_P
11218 on the RESULT_DECL.
11219 * cgraphunit.c (cgraph_build_static_cdtor): Likewise.
11220 * integrate.c (copy_decl_for_inlining): Copy DECL_ARTIFICIAL and
11221 DECL_IGNORED_P to new decl.
11223 2004-07-24 Zack Weinberg <zack@codesourcery.com>
11225 * config/ia64/ia64.c (general_xfmode_operand)
11226 (destination_xfmode_operand): Delete.
11227 * config/ia64/ia64.h (PREDICATE_CODES): Remove them.
11228 * config/ia64/ia64.md (*movxf_internal): Use general_operand
11229 and destination_operand.
11231 2004-07-24 Alexander Kabaev <kan@freebsd.org>
11233 * config/ia64/ia64.h (SUBTARGET_EXTRA_SPECS): Default to nothing.
11234 (EXTRA_SPECS): Use SUBTARGET_EXTRA_SPECS.
11236 2004-07-24 Alexander Kabaev <kan@freebsd.org>
11237 Zack Weinberg <zack@codesourcery.com
11240 * c-decl.c (diagnose_mismatched_decls): Don't issue a
11241 redundant-declaration warning the first time a builtin is
11242 declared explicitly.
11244 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11246 * tree.h (staticp): Change return type to bool.
11248 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11250 * c-common.c (c_staticp): Last episode of the staticp saga.
11252 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11254 * c-common.h (c_staticp): Change return type from int to bool.
11255 * tree.c (staticp): Likewise.
11256 * langhooks.h (staticp): Likewise.
11258 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11260 * langhooks-def.h (lhd_staticp): Change return type from int to
11261 bool in prototype to match definition.
11263 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11265 * system.h (bool, true, false): Don't redefine as preprocessor macros
11268 2004-07-24 Roger Sayle <roger@eyesopen.com>
11270 * expmed.c (init_expmed): A signed modulus by a power of two is
11271 considered cheap if its less than or equal to four instructions.
11273 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11275 * ggc.h (GGC_NEW, GGC_CNEW, GGC_NEWVEC, GGC_CNEWVEC, GGC_NEWVAR,
11276 GGC_CNEWVAR): New macros.
11278 2004-07-25 Bernardo Innocenti <bernie@develer.com>
11280 * c-common.c: Convert ATTRIBUTE_UNUSED to ARG_UNUSED in parameter
11282 * c-decl.c: Likewise.
11283 * c-format.c: Likewise.
11284 * c-lex.c: Likewise.
11285 * c-opts.c: Likewise.
11286 * c-pragma.c: Likewise.
11287 * c-typeck.c: Likewise.
11288 * gencheck.c: Likewise.
11289 * genconditions.c: Likewise.
11290 * genconfig.c: Likewise.
11291 * genflags.c: Likewise.
11292 * gengtype.c: Likewise.
11293 * gensupport.c: Likewise.
11294 * ggc-none.c: Likewise.
11295 * langhooks.c: Likewise.
11296 * statistics.h: Likewise.
11297 * stub-objc.c: Likewise.
11298 * java/decl.c: Likewise.
11300 2004-07-24 Roman Zippel <zippel@linux-m68k.org>
11302 * config/m68k/m68k.c (output_scc_di): Fix coding style.
11303 (symbolic_operand): Fix prototype.
11304 * config/m68k/m68k.h (PREDICATE_CODES): Add symbolic_operand.
11305 * config/m68k/m68k.md: Add constants for registers a0 and sp and
11306 use them, change from the "{...}" syntax to the simpler {...}
11308 (*cfv4_extendqisi2): Fix destination predicate.
11309 * config/m68k/m68k-protos.h: Remove various declarations also
11310 generated via PREDICATE_CODES.
11312 2004-07-23 Mike Stump <mrs@apple.com>
11314 * c-typeck.c (convert_for_assignment): Tightened up pointer
11315 converstions that differ in signedness.
11317 2004-07-23 Zack Weinberg <zack@codesourcery.com>
11319 * genmodes.c (make_vector_modes): Mark with ATTRIBUTE_UNUSED.
11321 2004-07-23 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11323 * tree.def (VIEW_CONVERT_EXPR): Change to class 'r'.
11324 * tree-ssa-operands.c (get_expr_operands, case VIEW_CONVERT_EXPR): New.
11326 * gimplify.c (gimplify_compound_lval): Check for no handled
11327 operations, rather than checking for explicit list of nodes.
11328 (is_gimple_addr_expr_arg_or_indirect): New function.
11329 (gimplify_addr_expr): Call it and handle INDIRECT_REF; remove
11330 redundant setting of TREE_INVARIANT.
11331 (gimplify_expr, case VIEW_CONVERT_EXPR): Call gimplify_compound_lval.
11332 * tree-gimple.c (is_gimple_addr_expr_arg): Call handled_component_p.
11334 2004-07-23 Diego Novillo <dnovillo@redhat.com>
11336 PR tree-optimization/16688
11337 PR tree-optimization/16689
11338 * tree-ssa-alias.c (setup_pointers_and_addressables): Remove
11339 unnecessary initialization of 'tag'.
11340 (get_tmt_for): Check that the new type tag has the same alias
11341 set as the pointed-to type.
11342 (group_aliases): Only regular variables need to be removed
11343 from the alias set of a name tag.
11344 * tree-ssa-copy.c (may_propagate_copy): Do not allow copy
11345 propagation if the two types are not compatible.
11346 (merge_alias_info): Rename from replace_ssa_names_ann.
11348 (replace_exp_1): If both arguments are SSA_NAMEs, check that
11349 the propagation can be done.
11350 Only call merge_alias_info on pointers.
11351 (propagate_value): Likewise.
11352 * tree-ssa-copyrename.c: Include langhooks.h.
11353 (copy_rename_partition_coalesce): Call replace_ssa_name_symbol
11355 Do not coalesce variables with incompatible types.
11356 (rename_ssa_copies): Call replace_ssa_name_symbol.
11357 * tree-ssa.c (verify_ssa_name): Verify that the SSA_NAME has
11358 the same type as the underlying _DECL.
11359 * tree-ssanames.c (replace_ssa_name_symbol): New function.
11360 * tree.h (replace_ssa_name_symbol): Declare.
11362 2004-07-23 Richard Henderson <rth@redhat.com>
11365 * gimplify.c (gimplify_cond_expr): Gimplify TARGET to a min_lval;
11366 unshare it properly.
11367 (gimplify_modify_expr_rhs): Push assignment from a conditional into
11368 the conditional for all non-register types.
11370 2004-07-23 Richard Henderson <rth@redhat.com>
11372 * expr.c (expand_expr_real_1): Don't handle non-local variables.
11373 * expr.h (fix_lexical_addr): Remove.
11374 * function.c (NEED_SEPARATE_AP): Remove.
11375 (fix_lexical_addr): Remove.
11376 * tree-alias-common.c (get_alias_var_decl): Check TREE_STATIC,
11377 not null decl_function_context.
11378 (create_alias_vars): Likewise.
11379 * tree-cfg.c (make_ctrl_stmt_edges): Don't check for non-local labels.
11380 (simple_goto_p): Likewise.
11381 * tree-dfa.c (add_referenced_var): Don't check for non-local variables.
11382 * tree-ssa-ccp.c (get_default_value): Likewise.
11383 * tree-tailcall.c (suitable_for_tail_opt_p): Likewise.
11384 * tree.c (needs_to_live_in_memory): Likewise.
11385 * tree-flow-inline.h (may_be_aliased): Move...
11386 * tree-ssa-alias.c (may_be_aliased): ... here. Enhance check for
11387 when TREE_STATIC variables may be addressable.
11389 2004-07-24 Jakub Jelinek <jakub@redhat.com>
11391 * Makefile.in (site.exp): Add HOSTCC and HOSTCFLAGS to site.exp.
11393 2004-07-23 Zack Weinberg <zack@codesourcery.com>
11395 * print-rtl.c (print_rtx <case 'b'>): Don't attempt to print
11396 bitmap contents if GENERATOR_FILE is defined.
11397 * Makefile.in (BUILD_RTL): Remove $(BUILD_PREFIX)bitmap.o.
11398 ($(BUILD_PREFIX_1)bitmap.o): Delete rule.
11400 2004-07-23 Joseph S. Myers <jsm@polyomino.org.uk>
11402 * c-decl.c (start_function): Form composite type of function types
11403 rather than copying type from previous prototype declaration.
11405 2004-07-23 Janis Johnson <janis187@us.ibm.com>
11407 * config/rs6000/altivec.h (vec_lvewx, vec_lvehx, vec_lvwbx): Remove
11408 the const qualifier for the second argument in the C++ functions.
11410 * config/rs6000/altivec.h (vec_stvewx, vec_stvehx, vec_stvebx): Use
11411 specific pointer types.
11413 * config/rs6000/altivec.h (vec_vadduwm): (vec_vadduwm, vec_vadduhm,
11414 vec_vaddubm, vec_vsubuwm, vec_vsubuhm, vec_vsububm): Fix types used
11415 for vector bool and/or vector pixel, add C++ and C missing support.
11416 (vec_vaddsws, vec_vaddshs, vec_vaddsbs, vec_vmaxsw, vec_vmaxsh,
11417 vec_vmaxsb, vec_vmrghw, vec_vmrghh, vec_vmrghb, vec_vmrglw, vec_vmrglh,
11418 vec_vmrglb, vec_vminsw, vec_vminsh, vec_vminsb, vec_vpkuwum,
11419 vec_vpkuhum, vec_vspltw, vec_vsplth, vec_vspltb, vec_vsubsws,
11420 vec_vsubshs, vec_vsubsbs, vec_vupklsh, vec_vupkhsh, vec_vupklsb): Add
11421 missing C++ and C support for vector bool and/or vector pixel.
11422 (vec_vadduws, vec_vadduhs, vec_vaddubs, vec_vcmpeqfp, vec_vcmpequw,
11423 vec_vcmpequh, vec_vcmpequb, vec_vcmpgtfp, vec_vcmpgtsw, vec_vcmpgtuw,
11424 vec_vcmpgtsh, vec_vcmpgtuh, vec_vcmpgtsb, vec_vcmpgtub, vec_vmaxuw,
11425 vec_vmaxuh, vec_vmaxub, vec_vminuw, vec_vminuh, vec_vminub,
11426 vec_vsubuws, vec_vsubuhs, vec_vsububs, vec_vupkhpx, vec_vupklpx): Fix
11427 C++ and C types used for vector bool and/or vector pixel.
11428 (vec_st, vec_stl): Add C++ support for vector pixel.
11429 (vec_unpackh, vec_unpackl, vec_any_ge): Fix C++ support for vector bool.
11430 (vec_all_ne): Add C++ support for vector pixel.
11432 * config/rs6000/altivec.h (vec_vcmpgtsh): Fix C++ function name.
11433 (vec_vmulesb): Add missing C++ function.
11434 (vec_perm): Fix type of third argument in C++ function.
11435 (vec_vsum4shs): Fix C++ function name.
11436 (vec_any_ge): Remove C++ functions for unsupported arg combinations.
11437 (vec_vcmpgtsw, vec_vcmpgtuw, vec_minsb, vec_vmsummbm): Fix the
11438 argument passed to the error handler in C macro.
11439 (vec_nmsub): Remove extra parens around argument names in C macro.
11440 (vec_packpx): Add missing parens in C macro.
11442 2004-07-22 Paolo Bonzini <bonzini@gnu.org>
11444 * machmode.def: Remove vector modes.
11445 * config/alpha/alpha-modes.def: Add supported vector modes.
11446 * config/arm/arm-modes.def: Likewise.
11447 * config/frv/frv-modes.def: Likewise.
11448 * config/i386/i386-modes.def: Likewise.
11449 * config/rs6000/rs6000-modes.def: Likewise.
11450 * config/sh/sh-modes.def: Likewise.
11452 2004-07-23 Matthias Klose <doko@debian.org>
11454 * intl.c (gcc_init_libintl): Use PACKAGE for the text domain.
11455 * configure.ac: Add AC_DEFINE_UNQUOTED for PACKAGE.
11456 * config.h: Regenerate.
11457 * configure: Likewise.
11459 2004-07-22 Mark Mitchell <mark@codesourcery.com>
11461 * dwarf2out.c (output_call_frame_info): Set SYMBOL_FLAG_LOCAL on
11462 generated SYMBOL_REFs for labels.
11463 * config/darwin-protos.h (machopic_validate_stub_or_non_lazy_ptr):
11465 (machopic_stub_name): Remove.
11466 (machopic_indirection_name): New function.
11467 (machopic_mcount_stub_name): Likewise.
11468 (machopic_classify_name): Remove.
11469 (machopic_function_base_sym): New function.
11470 (machpoic_classify_symbol): Likewise.
11471 (machopic_classify_ident): Remove.
11472 (machopic_define_ident): Likewise.
11473 (machopic_define_name): Likewise.
11474 (machopic_name_defined_p): Likewise.
11475 (machopic_ident_defined_p): Likewise.
11476 (darwin_strip_name_encoding): Likewise.
11477 (machopic_define_symbol): New function.
11478 * config/darwin.c (hashtab.h): Include.
11479 (machopic_defined_list): Remove.
11480 (machopic_classify_ident): Likewise.
11481 (machopic_classify_name): Likewise.
11482 (machopic_ident_defined_p): Likewise.
11483 (machopic_define_ident): Likewise.
11484 (machopic_define_name): Likewise.
11485 (machopic_symbol_defined_p): New function.
11486 (machopic_classify_symbol): Likewise.
11487 (machopic_data_defined_p): Use machopic_classify_symbol.
11488 (machopic_define_symbol): New function.
11489 (machopic_function_base_sym): New function.
11490 (machopic_non_lazy_pointers): Remove.
11491 (machopic_non_lazy_ptr_name): Likewise.
11492 (machopic_stubs): Likewise.
11493 (machopic_stub_name): Likewise.
11494 (NON_LAZY_POINTER_SUFFIX): New macro.
11495 (STUB_SUFFIX): Likewise.
11496 (machopic_indirection): New structure.
11497 (machopic_indirections): New variable.
11498 (machopic_indirection_hash): New function.
11499 (machopic_indirection_eq): Likewise.
11500 (machopic_indirection_name): Likewise.
11501 (machopic_mcount_stub_name): New function.
11502 (machopic_validate_stub_or_non_lazy_pointer): Reimplement to use
11504 (machopic_indirect_data_reference): Rework to use new functions.
11505 (machopic_indirect_call_target): Likewise.
11506 (machopic_legitimize_pic_address): Likewise.
11507 (machopic_output_indirection): New function.
11508 (machopic_finish): Use it.
11509 (machopic_operand_p): Rework to use new functions.
11510 (darwin_encode_seciton_info): Use SYMBOL_REF_FLAGS.
11511 (darwin_strip_name_encoding): Remove.
11512 (update_non_lazy_ptrs): Remove.
11513 (update_stubs): Likewise.
11514 (darwin_non_lazy_pcrel): Use new functions.
11515 * config/darwin.h (ASM_DECLARE_OBJECT_NAME): Likewise.
11516 (ASM_OUTPUT_LABELREF): Likewise.
11517 (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Likewise.
11518 (MACHO_SYMBOL_FLAG_VARIABLE): New macro.
11519 (MACHO_SYMBOL_FLAG_DEFINED): Likewise.
11520 (TARGET_STRIP_NAME_ENCODING): Do not use
11521 darwin_strip_name_encoding.
11522 (GEN_LAZY_PTR_NAME_FOR_SYMBOL): Do not use
11523 darwin_strip_name_encoding.
11524 * config/i386/darwin.h (FUNCTION_PROFILER): Use
11525 machopic_mcount_stub_name.
11526 * config/i386/i386.c (x86_output_mi_thunk): Use
11527 machopic_indirection_name, not machopic_stub_name.
11528 * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Use
11529 machopic_function_base_sym.
11530 (print_operand): Use machopic_classify_symbol.
11531 (rs6000_emit_prologue): Use machopic_function_base_sym.
11532 (output_profile_hook): Do not use machopic_stub_name.
11533 (macho_branch_isalnds): Do not use darwin_strip_name_encoding.
11535 2004-07-22 Joseph S. Myers <jsm@polyomino.org.uk>
11538 * fold-const.c (extract_muldiv_1): Do not treat signed left shift
11541 2004-07-22 Joseph S. Myers <jsm@polyomino.org.uk>
11543 * doc/implement-c.texi: New file.
11544 * doc/extend.texi (C Implementation): Move to there.
11545 * doc/gcc.texi: Include implement-c.texi.
11546 * Makefile.in (TEXI_GCC_FILES): Add implement-c.texi.
11548 2004-07-22 Jason Merrill <jason@redhat.com>
11550 * integrate.c (copy_decl_for_inlining): Remove invisible reference
11552 * tree-inline.c (setup_one_parameter): Likewise.
11554 2004-07-22 Brian Booth <bbooth@redhat.com>
11556 * tree-ssa-ccp.c (latticevalue): Add UNKNOWN_VAL.
11557 (substitute_and_fold): Propigate into VUSE operands when possible.
11558 (visit_phi_node): Handle UNKNOWN_VAL latticevalue.
11559 (cp_lattice_meet): Handle merging of latticevalues when
11560 UNKNOWN_VAL is present.
11561 (visit_stmt): Visit assignments with V_MUST_DEFs.
11562 (visit_assignment): Gather ccp information for V_MUST_DEF operands.
11563 (ccp_fold): Deal with RHS' that are constant and virtual.
11564 (evaluate_stmt): Handle UNKNOWN_VAL likely values.
11565 (dump_lattice_value): Dump UNKNOWN_VAL latticevalues.
11566 (initialize): Mark statements with V_MUST_DEFs as VARYING only if the
11567 V_MUST_DEF operand is VARYING. Fix comment and include VOPS when
11568 computing immediate uses.
11569 (set_lattice_value): Disallow a UNKNOWN_VAL->UNDEFINED state
11571 (replace_vuse_in): New function.
11572 (likely_value): Add check of vuse operands.
11573 (get_default_value): Set the default value of virtually defined
11574 variables to UKNOWN_VAL instead of VARYING.
11576 2004-07-22 Richard Henderson <rth@redhat.com>
11578 * expr.c (emit_push_insn): Don't use set_mem_attributes.
11580 2004-07-22 Richard Henderson <rth@redhat.com>
11582 * tree-ssa-live.c (create_ssa_var_map): Avoid defined-but-not-used
11583 variables due to conditional compilation.
11585 2004-07-22 Diego Novillo <dnovillo@redhat.com>
11587 * tree-into-ssa.c (set_livein_block): Fix typo in comment.
11588 (rewrite_ssa_into_ssa): Start iterating over SSA names at 1.
11589 Release SSA names that have been re-renamed.
11590 * tree-phinodes.c (make_phi_node): Set same TREE_TYPE as the
11592 * tree-ssa-alias.c (init_alias_info): If aliases have been
11593 computed before, clear existing alias information.
11594 (create_name_tags): Do no fixup PT_ANYTHING pointers.
11595 If the new name tag for a pointer is different than the one it
11596 had before, mark the old tag for renaming.
11597 (replace_may_alias): New function.
11598 (group_aliases): Call it.
11599 (setup_pointers_and_addressables): Always call get_tmt_for.
11600 (maybe_create_global_var): Don't create .GLOBAL_VAR more than
11602 (set_pt_anything): New local function.
11603 (set_pt_malloc): New local function.
11604 (merge_pointed_to_info): Don't merge pointed-to variables from
11605 the original pointer if the destination is pointing to an
11607 (add_pointed_to_expr): Call set_pt_anything and set_pt_malloc.
11608 (add_pointed_to_var): Do not add a variable to the points-to
11609 set if the pointer is already pointing to anywhere.
11610 (collect_points_to_info_r): If the defining statement is a PHI
11611 node, only merge pointed-to information if the argument has
11612 already been visited.
11613 (get_tmt_for): Only create a new tag if the pointer didn't
11615 (dump_alias_info): Emit more information.
11616 (dump_points_to_info_for): Likewise.
11617 * tree-ssa-dom.c (redirect_edges_and_update_ssa_graph): Don't
11618 try to get the annotation of an SSA_NAME.
11619 * tree-ssa-operands.c (add_stmt_operand): Only check for empty
11620 alias sets when checking is enabled.
11621 * tree-ssa-pre.c (need_eh_cleanup): New local variable.
11622 (eliminate): Mark basic blocks that will need
11623 EH information cleaned up.
11624 (init_pre): Split ENTRY_BLOCK->0 if block 0 has more than one
11626 Initialize need_eh_cleanup.
11627 (fini_pre): Call tree_purge_all_dead_eh_edges and
11628 cleanup_tree_cfg if needed.
11629 Free need_eh_cleanup.
11630 * tree-ssa.c (verify_ssa_name): New function.
11631 (verify_def): Call it.
11632 Re-arrange to avoid printing too many error messages.
11633 (verify_use): Likewise.
11634 (verify_phi_args): Likewise.
11635 (verify_flow_insensitive_alias_info): New function.
11636 (verify_flow_sensitive_alias_info): New function.
11637 (verify_alias_info): New function.
11638 (verify_ssa): Call verify_alias_info.
11639 Clear TREE_VISITED on all the SSA_NAMEs before scanning the
11641 Re-arrange to avoid printing too many error messages.
11642 * tree-ssanames.c (make_ssa_name): Clear
11643 SSA_NAME_IN_FREE_LIST.
11644 (release_ssa_name): Never release a default definition.
11645 (release_defs): New function.
11646 * tree.h: Declare it.
11647 * tree-ssa-dce.c (remove_dead_stmt): Call it.
11649 2004-07-22 Diego Novillo <dnovillo@redhat.com>
11651 * tree-ssa.c (walk_use_def_chains_1): Add new argument IS_DFS.
11652 If true, do a depth-first search. Do a breadht-first search,
11654 (walk_use_def_chains): Add new argument IS_DFS.
11656 * tree-flow.h (walk_use_def_chains): Update prototype.
11658 2004-07-22 Hans-Peter Nilsson <hp@axis.com>
11660 * config/cris/cris.md: Tweak formatting.
11661 (asrandb, asrandw, lsrandb, lsrandw, moversideqi, movemsideqi)
11662 (mover2side, moverside, movemside, movei, op3, andu): Replace
11663 live define_peephole:s with define_peephole2 near-equivalents.
11665 ("*mov_sidesisf_biap"): Rename from "*mov_sidesi_biap". Match all
11667 ("*mov_sidesisf", "*mov_sidesisf_biap_mem", "*mov_sidesisf_mem"):
11668 Similar for "*mov_sidesi", "*mov_sidesi_biap_mem" and
11669 "*mov_sidesi_mem" respectively.
11671 2004-07-22 Paolo Bonzini <bonzini@gnu.org>
11673 * tree-cfg.c (gimplify_val): Move from tree-complex.c.
11674 (gimplify_build1): Move from tree-complex.c do_unop.
11675 (gimplify_build2): Move from tree-complex.c do_binop.
11676 (gimplify_build3): New.
11677 * tree-complex.c (gimplify_val, do_unop, do_binop): Remove.
11678 Adjust throughout to call the functions above.
11679 * tree-flow.h: Declare the functions above.
11680 * tree-nested.c (gimplify_val): Rename to...
11681 (tsi_gimplify_val): ... this.
11683 * Makefile.in (tree_complex.o): Update dependencies.
11684 (stor-layout.o): Depend on regs.h.
11685 * c-common.c (handle_vector_size_attribute): Update for
11686 vector types without corresponding vector modes.
11687 * expr.c (expand_expr): Treat VECTOR_CST's like CONSTRUCTORS if
11688 a corresponding vector mode is not available.
11689 * print-tree.c (print_node): Print nunits for vector types
11690 * regclass.c (have_regs_of_mode): New.
11691 (init_reg_sets_1): Initialize it and use it instead
11692 of allocatable_regs_of_mode.
11693 * regs.h (have_regs_of_mode): Declare it.
11694 * stor-layout.c (layout_type): Pick a mode for vector types.
11695 * tree-complex.c (build_word_mode_vector_type, tree_vec_extract,
11696 build_replicated_const, do_unop, do_binop, do_plus_minus,
11697 do_negate, expand_vector_piecewise, expand_vector_parallel,
11698 expand_vector_addition, expand_vector_operations_1,
11699 expand_vector_operations, tree_lower_operations,
11700 pass_lower_vector_ssa, pass_pre_expand): New.
11701 (expand_complex_operations, pass_lower_complex): Remove.
11702 * tree-optimize.c (init_tree_optimization_passes): Adjust
11703 pass ordering for changes in tree-complex.c.
11704 * tree-pass.h: Declare new passes.
11705 * tree.c (finish_vector_type): Remove.
11706 (make_vector_type): New.
11707 (build_vector_type_for_mode, build_vector_type): Rewritten.
11708 * tree.def (VECTOR_TYPE): Document where the number of
11709 subparts is stored.
11710 * tree.h (TYPE_VECTOR_SUBPARTS): Use TYPE_PRECISION field.
11711 (make_vector): Remove declaration.
11713 2004-07-21 Richard Henderson <rth@redhat.com>
11715 * gimple-low.c (expand_var_p): Don't look at TREE_ADDRESSABLE,
11716 TREE_THIS_VOLATILE, may_aliases, or optimization level.
11717 (remove_useless_vars): Dump debugging info.
11718 (expand_used_vars): Move ...
11719 * cfgexpand.c (expand_used_vars): ... here. Make static.
11720 * tree-flow-inline.h (set_is_used): New.
11721 (set_default_def): Use get_var_ann.
11722 * tree-flow.h: Update decls.
11723 * tree-ssa-live.c (mark_all_vars_used_1, mark_all_vars_used): New.
11724 (create_ssa_var_map): Use it.
11725 * tree-ssa.c (set_is_used): Remove.
11727 2004-07-22 Ben Elliston <bje@au.ibm.com>
11729 * gdbinit.in: Set a breakpoint on internal_error.
11731 2004-07-21 Richard Henderson <rth@redhat.com>
11733 * cfgexpand.c (expand_gimple_tailcall): Fix case where we need
11734 to create a new basic block.
11736 2004-07-22 Joseph S. Myers <jsm@polyomino.org.uk>
11739 * c-decl.c (grokdeclarator): Only pedwarn for qualified void
11740 return type on function definitions. Move other warnings for
11741 qualified return type to -Wreturn-type. Do not condition any such
11742 warnings on -pedantic. Update comments.
11743 (start_function): Only copy function type from previous prototype
11744 declaration if return types are compatible.
11745 * c-typeck.c (function_types_compatible_p): Don't condition
11746 warning for incompatibility of volatile qualifiers on the return
11747 type on -pedantic. Update comment.
11748 * doc/invoke.texi (-Wreturn-type, -Wextra): Update.
11750 2004-07-22 Joseph S. Myers <jsm@polyomino.org.uk>
11752 * c-typeck.c (set_init_index): Require designator to be of integer
11755 2004-07-22 Joseph S. Myers <jsm@polyomino.org.uk>
11758 * c-parse.in (init): Change to exprtype.
11759 (primary): Set original_code for STRING to STRING_CST.
11760 Call maybe_warn_string_init for compound literals.
11761 (initdcl, notype_initdcl): Call maybe_warn_string_init.
11763 * c-tree.h (maybe_warn_string_init): New.
11764 (pop_init_level, process_init_element): Use struct c_expr.
11765 (struct c_expr): Update comment.
11766 * c-typeck.c (maybe_warn_string_init): New function.
11767 (digest_init): Call it. Additional parameter strict_string. All
11769 (output_init_element): Likewise.
11770 (struct constructor_stack): Use struct c_expr for
11772 (really_start_incremental_init, push_init_level): Update.
11773 (pop_init_level): Update. Return struct c_expr.
11774 (process_init_level): Update. Take struct c_expr argument.
11776 2004-07-21 David S. Miller <davem@nuts.davemloft.net>
11778 * config/sparc/sparc.c (sparc_rtx_costs): Fix typo in previous
11781 2004-07-21 Eric Christopher <echristo@redhat.com>
11783 * builtins.c (expand_builtin_setjmp_receiver): Fix comment for code
11785 * c-decl.c (pop_scope): Ditto.
11786 * calls.c (expand_call): Remove call to current_nesting_level,
11787 update comment accordingly. Remove calls to expand_start_target_temps
11788 and expand_end_target_temps.
11789 * cfgexpand.c (construct_init_block): Remove call to
11790 expand_start_bindings_and_block.
11791 (construct_exit_block): Remove call to expand_end_bindings.
11792 * expr.c (safe_from_p): Remove BIND_EXPR handling.
11793 (expand_expr_real_1): Ditto. Fix formatting.
11794 (expand_vars): Delete.
11795 * stmt.c (POPSTACK): Remove block_stack.
11796 (stmt_status): Remove x_block_stack.
11797 (block_stack): Delete.
11798 (expand_start_bindings_and_block): Ditto.
11799 (expand_start_target_temps): Ditto.
11800 (expand_end_target_temps): Ditto.
11801 (current_nesting_level): Ditto.
11802 (warn_about_unused_variables): Ditto.
11803 (expand_end_bindings): Ditto.
11804 * tree.h: Remove declarations for above.
11806 2004-07-21 Steven Bosscher <stevenb@suse.de>
11808 * rtl.h (insn_note): Remove NOTE_INSN_PREDICTION.
11809 * rtl.c (note_insn_name): Likewise.
11810 * print-rtl.c (print_rtx): Don't print it.
11811 * cfgrtl.h (can_delete_note_p): Don't handle it.
11812 (rtl_delete_block): Likewise.
11813 * passes.c (rest_of_handle_guess_branch_prob): Remove.
11814 (rest_of_compilation): Don't call it.
11815 * predict.c (process_note_predictions, process_note_prediction,
11816 note_prediction_to_br_prob): Remove.
11817 * basic-block.c (note_prediction_to_br_prob): Remove prototype.
11818 * stmt.c (return_prediction): Remove.
11819 (expand_value_return): Don't call it. Don't add prediction
11820 notes for return statements.
11822 2004-07-21 Josef Zlomek <zlomekj@suse.cz>
11824 * var-tracking.c (vt_find_locations): Set the in_pending bitmap at
11827 2004-07-21 Paolo Bonzini <bonzini@gnu.org>
11829 * c-common.c (vector_types_convertible_p): Use vector types'
11830 TYPE_SIZE and TREE_TYPE instead of their mode.
11831 * convert.c (convert_to_integer): Likewise.
11832 (convert_to_vector): Likewise.
11833 * fold-const.c (fold_convert): Likewise.
11834 * varasm.c (output_constant): Likewise.
11835 * expr.c (store_constructor): Split ARRAY_TYPE and VECTOR_TYPE.
11836 Allow a VECTOR_TYPE initializer to be made of several vectors.
11837 For ARRAY_TYPEs and VECTOR_TYPES, simplify a bit the handling
11838 of cleared and need_to_clear, and use fold_convert.
11839 * c-typeck.c (build_binary_op): Do not use RDIV_EXPR for
11842 2004-07-20 Richard Henderson <rth@redhat.com>
11844 * cfgexpand.c (expand_gimple_cond_expr, expand_gimple_tailcall): Split,
11845 (expand_gimple_basic_block): out from here. Renamed from expand_block.
11847 2004-07-20 David S. Miller <davem@nuts.davemloft.net>
11849 * config/sparc/sparc.c (sparc_rtx_costs case MULT): Emit
11850 enormous cost if not TARGET_HARD_MUL.
11852 2004-07-20 Andrew Pinski <apinski@apple.com>
11855 * config/i386/darwin.h (CC1_SPEC): Move the -g SPECs from ...
11858 2004-07-21 Paul brook <paul@codesourcery.com>
11860 * config/arm/arm.c (thumb_expand_prologue): Remove bogus GEN_INT.
11862 2004-07-20 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11864 * fold-const.c (operand_equal_p): Temporarily support NULL args.
11865 (operand_equal_p, case ARRAY_REF): Compare args 2 and 3.
11866 (operand_equal_p, case COMPONENT_REF): Likewise, for arg 2.
11868 2004-07-20 Zack Weinberg <zack@codesourcery.com>
11870 * rtl.h (plus_constant): Delete.
11871 (plus_constant_wide): Rename to plus_constant.
11872 (plus_constant_for_output_wide): Delete vestigial prototype.
11873 (GEN_INT): Remove unnecessary cast.
11874 * tree.h (build_int_2, size_int_type): Delete.
11875 (build_int_2_wide): Rename to build_int_2.
11876 (size_int_wide): Rename to size_int_kind.
11877 (size_int_type_wide): Rename to size_int_type.
11878 (size_int, ssize_int, bitsize_int, sbitsize_int): Use size_int_kind.
11879 Remove unnecessary cast.
11880 * tree.c (build_int_2_wide): Rename build_int_2; update comment.
11881 * explow.c (plus_constant_wide): Rename plus_constant; update comment.
11882 * fold-const.c (size_int_wide): Rename size_int_kind. Use size_int_type.
11883 (size_int_type_wide): Rename size_int_type.
11884 (int_const_binop): Use size_int_type.
11885 * c-lex.c (interpret_integer): Use build_int_2.
11886 * final.c (split_double): Remove unnecessary casts.
11887 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Use build_int_2.
11889 2004-07-20 Richard Henderson <rth@redhat.com>
11891 * gimplify.c (is_gimple_tmp_var): Move to tree-gimple.c.
11892 (gimplify_compound_lval): Use is_gimple_tmp_reg.
11893 * tree-gimple.c (is_gimple_tmp_var): Move from gimplify.c.
11894 (is_gimple_tmp_reg): New.
11895 * tree-gimple.h (is_gimple_tmp_reg): Declare.
11897 2004-07-20 Richard Henderson <rth@redhat.com>
11899 * tree-pretty-print.c (dump_generic_node): Dump
11900 CALL_EXPR_HAS_RETURN_SLOT_ADDR.
11902 2004-07-20 Frank Ch. Eigler <fche@redhat.com>
11904 * tree-mudflap.c (mf_set_options_fndecl): New tree.
11905 (mudflap_init): Set it.
11906 (mudflap_register_call): Remove __mf_init call.
11907 (mudflap_finish_file): Emit call to __mf_init here. Emit a call to
11908 to pass "-ignore-reads" option to libmudflap if needed.
11910 2004-07-20 John David Anglin <dava.anglin@nrc-cnrc.gc.ca>
11913 * config/pa/pa-hpux10.h (SUPPORTS_ONE_ONLY): Define.
11914 (MAKE_DECL_ONE_ONLY): Undefine.
11915 * pa-protos.h (som_text_section_asm_op, one_only_readonly_data_section,
11916 readonly_data, one_only_data_section, forget_section): New prototypes.
11917 * pa.c (pa_init_machine_status, som_text_section_asm_op): New
11919 (pa_select_section): Add one-only (COMDAT) support.
11920 * pa.h (struct machine_function): Define.
11921 * som.h (ASM_OUTPUT_FUNCTION_PREFIX): Delete.
11922 (TEXT_SECTION_ASM_OP): Call som_text_section_asm_op.
11923 (DEFAULT_TEXT_SECTION_ASM_OP, NEW_TEXT_SECTION_ASM_OP,
11924 ONE_ONLY_TEXT_SECTION_ASM_OP, ONE_ONLY_READONLY_DATA_SECTION_ASM_OP,
11925 ONE_ONLY_DATA_SECTION_ASM_OP): New defines.
11926 (EXTRA_SECTIONS): Add in_one_only_readonly_data and in_one_only_data.
11927 (EXTRA_SECTION_FUNCTIONS): Rework to use individual function macros.
11928 (READONLY_DATA_FUNCTION, ONE_ONLY_READONLY_DATA_SECTION_FUNCTION,
11929 ONE_ONLY_DATA_SECTION_FUNCTION, FORGET_SECTION_FUNCTION): New defines
11930 for EXTRA_SECTION_FUNCTIONS.
11931 * doc/install.texi: Update binutils requirements.
11933 2004-07-20 Nathan Sidwell <nathan@codesourcery.com>
11935 * vec.h (VEC_T_length, VEC_T_index, VEC_T_iterate, VEC_T_truncate,
11936 VEC_T_replace, VEC_T_quick_insert, VEC_T_safe_insert,
11937 VEC_T_ordered_remove, VEC_T_unordered_remove): Use unsigned, not
11939 (struct VEC): Use unsigned for num and alloc.
11940 * vec.c (struct vec_prefix): Likewise.
11941 (vec_o_reserve): Adjust.
11943 * dbxout.c (dbxout_type): Fix printf format.
11945 * tree.h (binfo_member): Remove.
11946 * tree.c (binfo_member): Remove.
11948 2004-07-20 Nathan Sidwell <nathan@codesourcery.com>
11950 * tree.h: Include vec.h
11951 (DEF_VEC_P(tree)): New type.
11952 (BINFO_BASE_BINFOS, BINFO_N_BASE_BINFOS, BINFO_BASE_BINFO): Adjust.
11953 (BINFO_BASE_APPEND, BINFO_BASE_ITERATE): New.
11954 (BINFO_LANG_SLOT): Remove.
11955 (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX, BINFO_PRIMARY_BASE_OF): New.
11956 (struct tree_binfo): Turn base_binfos into a trailing
11957 VEC(tree). Add vtt_subvtt, vtt_vptr, primary fields.
11958 (binfo_lang_slots): Remove.
11959 * tree.c (binfo_lang_slots): Remove.
11960 (make_tree_binfo_stat): Take a base binfo count, not a
11961 lang slot count. Adjust.
11962 * Makefile.in (TREE_H): Add vec.h
11963 * alias.c (record_component_aliases): Adjust BINFO access.
11964 * dbxout.c (dbxout_type): Likewise.
11965 * dwarf2out.c (gen_member_die): Likewise.
11966 * sdbout.c (sdbout_one_type): Likewise.
11967 * tree-dump.c (deque_and_dump): Likewise.
11968 * config/i386/i386.c (classify_argument,
11969 contains_128bit_aligned_vector_p): Likewise.
11970 * config/sh/symbian.c (symbian_export_vtable_and_rtti_p): Likewise.
11971 * doc/c-tree.texi (Classes): Update BINFO documentation.
11973 2004-07-20 Steven Bosscher <stevenb@suse.de>
11975 * c-common.h (check_case_value): Remove prototype.
11976 (c_add_case_label): Adjust prototype.
11977 * c-common.c (check_case_value): Make static.
11978 (check_case_bounds): New function.
11979 (c_add_case_label): Use it. Take new argument orig_type.
11980 * c-typeck.c (struct c_switch): New orig_type field.
11981 (c_start_case): Set it.
11982 (do_case): Pass it to c_add_case_label.
11983 * expr.c (expand_expr_real_1): Don't warn for out-of-bounds
11984 cases from here. Add the labels in reverse order.
11985 * stmt.c (struct case_node): Adjust comment. Remove balance field.
11986 (add_case_node): Return nothing, don't check for duplicate cases.
11987 Insert new case nodes in a list, not in an AVL tree.
11988 (expand_end_case_type): Don't turn a case tree into a case list.
11989 (case_tree2list): Remove.
11990 * tree.h (add_case_node): Adjust prototype.
11992 2004-07-19 Paolo Bonzini <bonzini@gnu.org>
11994 * genattr.c (struct range, struct function_unit,
11995 write_units, extend_range, init_range): Remove them.
11996 (main): Remove code dealing with DEFINE_FUNCTION_UNIT.
11997 Output "#define INSN_SCHEDULING" here.
11998 * genattrtab.c (struct range, struct function_unit_op,
11999 struct function_unit, struct dimension, enum operator,
12000 operate_exp, expand_units, simplify_knowing,
12001 encode_units_mask, simplify_by_exploding,
12002 find_and_mark_used_attributes, unmark_used_attributes,
12003 add_values_to_cover, increment_current_value,
12004 test_for_current_value, simplify_with_current_value,
12005 simplify_with_current_value_aux, gen_unit,
12006 write_unit_name, write_function_unit_info,
12007 write_complex_function, write_toplevel_expr,
12008 find_single_value, extend_range): Remove.
12009 (write_attr_get): Do not handle common_av->value
12011 (struct attr_desc): Remove func_units_p and blockage_p.
12012 (write_attr_valueq): Do not handle them.
12013 (find_attr): Do not clear them.
12014 (make_internal_attr): Do not initialize them.
12015 (main): Remove code dealing with DEFINE_FUNCTION_UNIT.
12016 * sched-vis.c (init_target_units, insn_print_units,
12017 init_block_visualization, print_block_visualization,
12018 visualize_scheduled_insns, visualize_no_unit,
12019 visualize_stall_cycles, visualize_alloc,
12020 visualize_free, target_units, get_visual_tbl_length,
12021 MAX_VISUAL_LINES, INSN_LEN, n_visual_lines,
12022 visual_tbl_line_length, visual_tbl, n_vis_no_unit,
12023 MAX_VISUAL_NO_UNIT, vis_no_unit): Remove.
12024 * haifa-sched.c (blockage_range, clear_units,
12025 schedule_unit, actual_hazard, potential_hazard,
12026 insn_unit, unit_last_insn, unit_tick,
12027 actual_hazard_this_instance, potential_hazard,
12028 schedule_unit, max_insn_queue_index_value): Remove.
12029 (MAX_INSN_QUEUE_INDEX): Removed, renamed throughout to
12030 max_insn_queue_index.
12031 * rtl.def (DEFINE_FUNCTION_UNIT): Remove.
12032 * doc/md.texi (Processor pipeline description): Remove
12033 references to old pipeline descriptions.
12034 (Automaton pipeline description): Merge with the above.
12035 (Old pipeline description, Comparison of the two descriptions):
12038 * bt-load.c (migrate_btr_def): Remove references to
12039 use_pipeline_interface.
12040 * haifa-sched.c (insn_cost, schedule_insn,
12041 schedule_block, advance_one_cycle, sched_init,
12042 queue_to_ready, sched_finish): Likewise.
12043 * modulo-sched.c (sms_schedule, advance_one_cycle,
12044 ps_has_conflicts): Likewise.
12045 * sched-rgn.c (init_ready): Likewise.
12046 (debug_dependencies): Likewise, and remove an "if (1)".
12047 * target.h (use_dfa_pipeline_interface): Remove.
12048 * config/alpha/alpha.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12049 * config/arc/arc.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12050 * config/arm/arm.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12051 * config/c4x/c4x.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12052 * config/frv/frv.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12053 * config/i386/i386.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12054 * config/ia64/ia64.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12055 * config/iq2000/iq2000.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12056 * config/m32r/m32r.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12057 * config/mcore/mcore.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12058 * config/mips/mips.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12059 * config/pa/pa.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12060 * config/rs6000/rs6000.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12061 * config/s390/s390.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12062 * config/sh/sh.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12063 * config/sparc/sparc.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12064 * config/v850/v850.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12065 * config/xtensa/xtensa.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12066 * doc/tm.texi (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
12068 2004-07-19 Roger Sayle <roger@eyesopen.com>
12070 * rtlanal.c (reg_set_p): Add check for regs_invalidated_by_call.
12072 2004-07-19 Jeff Law <law@redhat.com>
12074 * tree-ssa-dom.c (single_incoming_edge_ignoring_loop_edges): New.
12075 (get_eq_expr_value): Use it. Simplify slightly.
12077 2004-07-19 Maciej W. Rozycki <macro@linux-mips.org>
12079 * config/mips/mips.md (mulsidi3_32bit_r4000): Fix the clobber list.
12080 (umulsidi3_32bit_r4000): Likewise.
12082 2004-07-19 Nathan Sidwell <nathan@codesourcery.com>
12084 * vec.h: Propagate location information properly.
12085 (VEC_T_iterate): Add result pointer parameter.
12086 (VEC_T_space): New.
12087 (VEC_T_reserve): Use it.
12089 2004-07-19 Daniel Jacobowitz <dan@debian.org>
12091 * Makefile.in (c-format.o): Depend on c-format.h.
12092 * c-format.h: New file.
12093 (struct format_char_info): Add CHAIN member.
12094 * c-format.c: Move some types and constants to c-format.h.
12095 (format_type_error): Set to -1.
12096 (struct function_format_info): Use an int for format_type.
12097 (decode_format_type): Return an int. Return format_type_error
12099 (print_char_table, asm_fprintf_char_table, gcc_diag_char_table)
12100 (gcc_diag_char_table, gcc_cdiag_char_table, gcc_cxxdiag_char_table)
12101 (scan_char_table, time_char_table, monetary_char_table): Initialize
12103 (n_format_types): New variable.
12104 (check_format_info_main): Handle CHAIN in format_char_info.
12105 (handle_format_attribute): Handle TARGET_FORMAT_TYPES and
12106 TARGET_N_FORMAT_TYPES.
12107 * config.gcc (i[34567]86-*-solaris2*, sparc64-*-solaris2*)
12108 (sparc-*-solaris2*): Include config/t-sol2 and config/sol2-c.c.
12109 * config/sol2-c.c: New file.
12110 * config/t-sol2: New file.
12111 * config/sol2.h (TARGET_N_FORMAT_TYPES, TARGET_FORMAT_TYPES): Define.
12112 * config/sparc/elf.h, config/sparc/sp64-elf.h: Undefine
12113 TARGET_N_FORMAT_TYPES and TARGET_FORMAT_TYPES.
12115 * doc/extend.texi (Target Format Checks): New section.
12116 (Function Attributes): Mention it.
12117 * doc/invoke.texi: Mention target format checks.
12118 * doc/sourcebuild.texi: Mention target format checks.
12119 * dc/tm.texi (Misc): Document TARGET_N_FORMAT_TYPES and
12120 TARGET_FORMAT_TYPES.
12122 2004-07-19 Andreas Krebbel <krebbel1@de.ibm.com>
12124 * config/s390/s390-protos.h (s390_return_address_offset): Prototype
12126 * config/s390/s390.c (regclass_map initializer): Register 35 added to
12128 (load_multiple_operation, store_multiple_operation): Removed
12129 pointless sanity check.
12130 (s390_decompose_address): Added check for return_address_pointer_rtx.
12131 (s390_return_addr_rtx): Use return_address_pointer_rtx for count == 0.
12132 (s390_return_address_offset): New function.
12133 * config/s390/s390.h (FIRST_PSEUDO_REGISTER): Increased to 36.
12134 (FRAME_REGNO_P): Added check for register 35.
12135 (FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS,
12136 REG_ALLOC_ORDER): Appended entry for register 35.
12137 (REG_CLASS_CONTENTS): Adjusted class masks for register 35.
12138 (EH_RETURN_HANDLER_RTX): Use return_address_pointer_rtx.
12139 (RETURN_ADDRESS_POINTER_REGNUM): New macro.
12140 (ELIMINABLE_REGS, INITIAL_ELIMINATION_OFFSET): Return address pointer
12141 is eliminable using stack pointer or hard frame pointer.
12142 (REGISTER_NAMES): Added name for register 35.
12143 * config/s390/s390.md ("load_multiple", "store_multiple"): Removed
12144 pointless sanity check.
12146 2004-07-19 Roger Sayle <roger@eyesopen.com>
12148 * fold-const.c (tree_expr_nonzero_p): Add function prototype.
12149 (fold) <EQ_EXPR>: Move tree_expr_nonzero_p optimization from
12150 fold_relational_const to here, i.e. "(x | 5) == 0" -> false.
12151 (fold) (UNEQ_EXPR>: Add optimizations for unordered comparisons
12152 of the form "x op x" where op is UNLE, UNGE, UNEQ or LTGT.
12153 (fold_relational_const): Tidy up handling of floating point
12154 comparisons by calling real_compare. Remove tree_expr_nonzero_p
12155 transformation; fold_relational_const assumes constant operands.
12157 2004-07-19 Gabriel Dos Reis <gdr@integrable-solution.net>
12159 * doc/sourcebuild.texi: Add libcpp, now that CPP has its own
12162 2004-07-19 Joseph S. Myers <jsm@polyomino.org.uk>
12164 * c-tree.h (struct c_expr): Define.
12165 (C_SET_EXP_ORIGINAL_CODE): Remove.
12166 (parser_build_binary_op, build_compound_expr): Update prototypes.
12167 * c-parse.in (%union): Add exprtype.
12168 (FUNC_NAME): Mark as ttype.
12169 (expr, expr_no_commas, cast_expr, unary_expr, primary): Change to
12171 (expr): Update. Define directly in terms of expr_no_commas
12172 instead of using nonnull_exprlist.
12173 (nonnull_exprlist, unary_expr, cast_expr, expr_no_commas, primary,
12174 offsetof_member_designator, typespec_nonreserved_nonattr, init,
12175 initval, designator, component_declarator,
12176 component_notype_declarator, enumerator, array_declarator,
12177 condition, exexpr, switch_statement, stmt_nocomp, stmt,
12178 nonnull_asm_operands, ivar_declarator, receiver): Update. Don't
12179 set C_EXP_ORIGINAL_CODE. Use TREE_NO_WARNING for assignments
12181 * c-common.h (C_EXP_ORIGINAL_CODE): Remove.
12182 * c-common.c (c_common_truthvalue_conversion): Don't check
12183 C_EXP_ORIGINAL_CODE.
12184 * c-typeck.c (parser_build_binary_op): Use c_expr structures.
12185 Don't use C_EXP_ORIGINAL_CODE.
12186 (default_conversion, default_function_array_conversion): Don't use
12187 C_EXP_ORIGINAL_CODE. Preserve TREE_NO_WARNING.
12188 (internal_build_compound_expr): Merge into build_compound_expr.
12189 (build_compound_expr): Take two operands instead of a TREE_LIST.
12190 * objc/objc-act.c (get_super_receiver): Update calls to
12191 build_compound_expr.
12193 2004-07-18 Paolo Bonzini <bonzini@gnu.org>
12195 * config/sh/sh.c (sh_use_dfa_interface): Remove.
12196 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Set to
12198 * config/sh/sh.md: Extract pipeline descriptions
12199 into separate files.
12200 * config/sh/sh1.md: New file, extracted from sh.md.
12201 * config/sh/sh4.md: New file, extracted from sh.md.
12202 * config/sh/shmedia.md: New file, extracted from sh.md
12203 and rewritten using new-style pipeline description.
12205 2004-07-18 Zack Weinberg <zack@codesourcery.com>
12207 * config/pa/pa.md: Delete the two remaining define_peephole
12210 2004-07-18 Steven Bosscher <stevenb@suse.de>
12211 Joseph S. Myers <jsm@polyomino.org.uk>
12213 * c-common.c (c_common_truthvalue_conversion): Don't warn if
12214 TREE_NO_WARNING is set.
12216 2004-07-18 Roger Sayle <roger@eyesopen.com>
12218 * builtins.c (simplify_builtin_memcmp, simplify_builtin_strcmp,
12219 simplify_builtin_strncmp): Delete.
12220 (fold_builtin_memcmp, fold_builtin_strcmp, fold_builtin_strncmp):
12221 Change argument to accept an arglist instead of an "exp". Assume
12222 that the return type is always integer_type_node. Copy missing
12223 transformations from their now obsolete simplify_builtin_*
12225 (fold_builtin_1): Pass arglist instead of exp to fold_builtin_memcmp,
12226 fold_builtin_strcmp and fold_builtin_strncmp.
12227 (simplify_builtin): Call fold_builtin_memcmp, fold_builtin_strcmp
12228 and fold_builtin_strncmp instead of simplify_builtin_memcmp,
12229 simplify_builtin_strcmp and simplify_builtin_strncmp respectively.
12231 2004-07-18 Daniel Jacobowitz <dan@debian.org>
12233 * Makefile.in (tree-alias-common.o): Update dependencies.
12235 2004-07-17 Sebastian Pop <pop@cri.ensmp.fr>
12237 * cfgloop.c (flow_loop_nested_p): Fix comment.
12239 2004-07-17 Jason Merrill <jason@redhat.com>
12242 * stor-layout.c (relayout_decl): New fn.
12243 * tree.h: Declare it.
12244 (DECL_BY_REFERENCE): New macro.
12246 2004-07-17 Eric Botcazou <ebotcazou@act-europe.fr>
12248 * libgcc2.c (__enable_execute_stack): New symbol.
12249 * libgcc-std.ver (GCC_3.4.2): New version. Inherit from GCC_3.4
12250 and declare __enable_execute_stack.
12251 * mklibgcc.in (lib2funcs): Add _enable_execute_stack.
12252 * config/netbsd.h (NETBSD_ENABLE_EXECUTE_STACK): ANSIfy.
12253 * config/sol2.h (TRANSFER_FROM_TRAMPOLINE): Rename into
12254 ENABLE_EXECUTE_STACK.
12255 * config/alpha/alpha.c (alpha_initialize_trampoline): Conditionalize
12256 on ENABLE_EXECUTE_STACK instead of TRANSFER_FROM_TRAMPOLINE.
12257 * config/alpha/netbsd.h (TRANSFER_FROM_TRAMPOLINE): Rename into
12258 ENABLE_EXECUTE_STACK.
12259 * config/alpha/osf.h (TRANSFER_FROM_TRAMPOLINE): Likewise.
12260 * config/i386/i386.c (x86_initialize_trampoline): Conditionalize
12261 on ENABLE_EXECUTE_STACK instead of TRANSFER_FROM_TRAMPOLINE.
12262 * config/i386/netbsd-elf.h (TRANSFER_FROM_TRAMPOLINE): Rename into
12263 ENABLE_EXECUTE_STACK.
12264 * config/i386/netbsd.h (TRANSFER_FROM_TRAMPOLINE): Likewise.
12265 * config/i386/netbsd64.h (TRANSFER_FROM_TRAMPOLINE): Likewise.
12266 * config/sparc/freebsd.h (TRANSFER_FROM_TRAMPOLINE): Likewise.
12267 * config/sparc/netbsd-elf.h (TRANSFER_FROM_TRAMPOLINE): Likewise.
12268 * config/sparc/sparc.c (sparc_initialize_trampoline): Conditionalize
12269 on ENABLE_EXECUTE_STACK instead of TRANSFER_FROM_TRAMPOLINE.
12270 (sparc64_initialize_trampoline): Likewise.
12271 * doc/tm.texi (trampolines): Add ENABLE_EXECUTE_STACK macro.
12273 2004-07-17 Joseph S. Myers <jsm@polyomino.org.uk>
12275 * langhooks.h (builtin_function): New langhook.
12276 * langhooks-def.h (LANG_HOOKS_BUILTIN_FUNCTION): New.
12277 (LANG_HOOKS_INITIALIZER): Update.
12278 * tree.h (builtin_function): Remove.
12279 * doc/tm.texi: Update.
12280 * c-tree.h (builtin_function): Declare.
12281 * c-common.c, config/alpha/alpha.c, config/arm/arm.c,
12282 config/c4x/c4x.c, config/frv/frv.c, config/i386/i386.c,
12283 config/ia64/ia64.c, config/iq2000/iq2000.c,
12284 config/rs6000/rs6000.c, config/s390/s390.c, config/sh/sh.c,
12285 config/stormy16/stormy16.c: All callers of builtin_function
12288 2004-07-17 Andrew Pinski <pinskia@physics.uc.edu>
12291 * config/i386/darwin.h (UNLIKELY_EXECUTED_TEXT_SECTION_NAME):
12292 Remove white space after the backslash.
12294 2004-07-17 Eric Botcazou <ebotcazou@libertysurf.fr>
12296 PR rtl-optimization/16294
12297 * resource.c (return_insn_p): New predicate.
12298 (mark_target_live_regs): Use it. Special-case return insns.
12299 (init_resource_info): Use it. Don't scan the epilogue past
12302 2004-07-17 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
12304 * loop-init.c (loop_optimizer_init, loop_optimizer_finalize): Do not
12305 destroy dominance information.
12306 * passes.c (rest_of_handle_loop2): Free dominance information.
12307 * tree-cfg.c (cleanup_tree_cfg): Remove unreachable blocks before
12309 (thread_jumps): Update dominance information and remove unreachable
12311 * tree-ssa-phiopt.c (replace_phi_with_stmt): Update dominance
12312 information and remove the unreachable block.
12314 2004-07-17 Graham Stott <graham.stott@btinternet.com>
12316 * emit-rtl.c (reorder_insns): Don't set BB for a BARRIER insn.
12318 2004-07-17 Toon Moene <toon@moene.indiv.nluug.nl>
12320 * doc/sourcebuild.texi: Remove libf2c entry.
12322 2004-07-17 Paolo Bonzini <bonzini@gnu.org>
12324 * config/i386/i386.md (movv16qi_internal): Fix typo.
12326 2004-07-17 Steven Bosscher <stevenb@suse.de>
12328 * final.c (final_scan_insn): Fix broken commit from previous
12331 2004-07-17 Joseph S. Myers <jsm@polyomino.org.uk>
12333 * c-typeck.c (parser_build_binary_op): Condition warnings for
12334 X<=Y<=Z on -Wparentheses instead of -Wextra.
12335 * doc/invoke.texi: Update. Document that most of -Wparentheses is
12336 supported for C only.
12338 2004-07-17 Steven Bosscher <stevenb@suse.de>
12340 * cfgcleanup.c (try_simplify_condjump): Don't remove line
12341 notes to avoid unreachable code warnings.
12342 * toplev.c (backend_init): Don't emit line notes for
12343 unreachable code warnings.
12345 * combine.c (distribute_notes): Don't distribute a
12346 REG_VTABLE_REF note.
12347 * final.c (final_scan_insn): Don't handle it.
12348 * rtl.c (reg_note_name): Remove it.
12349 * rtl.h (enum reg_node): Dito.
12351 * emit-rtl.c (force_line_numbers, restore_line_number_status):
12353 * rtl.h (force_line_numbers, restore_line_number_status):
12356 * stmt.c (using_eh_for_cleanups_p, using_eh_for_cleanups): Move...
12357 * tree-eh.c (using_eh_for_cleanups_p): ...here. Make static.
12358 (using_eh_for_cleanups): Also moved here.
12360 * expr.c (expand_expr_real_1) <CASE_LABEL_EXPR>: Die if we see one.
12361 <SWITCH_EXPR>: Die if we have a non-NULL SWITCH_BODY. Update calls
12362 to expand_start_case and add_case_node.
12363 * stmt.c (struct nesting): Cleanup unused fields condition_code,
12364 last_unconditional_cleanup, nominal_type, printname, and
12365 line_number_status.
12366 (struct fixup_goto): Remove.
12367 (struct stmt_status): Remove x_goto_fixup_chain field.
12368 (goto_fixup_chain): Remove.
12369 (strip_default_case_nodes, group_case_nodes, emit_jump_if_reachable,
12370 pushcase, pushcase_range): Remove.
12371 (expand_start_bindings_and_block): Don't set unused fields in
12373 (expand_start_case, add_case_node): Cleanup unused formal arguments.
12374 (expand_end_case_type): Don't simplify the case-list. Use emit_jump
12375 instead of emit_jump_if_reachable.
12376 (emit_case_nodes): Likewise.
12377 * tree-cfg.c (group_case_labels, cleanup_dead_labels): No longer
12379 (update_eh_label): Work around left-over exception handing regions.
12380 * tree-flow.h (group_case_labels, cleanup_dead_labels): Add protos.
12381 * tree-optimize.c (execute_cleanup_cfg_post_optimizing): New function.
12382 (pass_cleanup_cfg_post_optimizing): New pass.
12383 (init_tree_optimization_passes): Run the new pass after all
12385 * tree.h (pushcase, pushcase_range): Remove prototypes.
12386 (expand_start_case, add_case_node): Update prototypes.
12388 2004-07-16 Krister Walfridsson <cato@df.lth.se>
12390 * tree-inline.c (estimate_num_insns_1): Correct increase of count.
12392 2004-07-16 Richard Henderson <rth@redhat.com>
12394 * builtins.c (std_expand_builtin_va_arg): Remove.
12395 (expand_builtin_va_arg): Remove.
12396 * expr.h: Don't declare them.
12397 * gimplify.c (mark_decls_volatile_r): Remove.
12398 (copy_if_shared_r): Don't call it.
12399 * target-def.h: Don't test EXPAND_BUILTIN_VA_ARG.
12400 * expr.c (expand_expr_real_1): Don't handle VA_ARG_EXPR.
12401 * gimple-low.c (lower_stmt): Likewise.
12402 * tree-cfg.c (cfg_remove_useless_stmts_bb): Likewise.
12403 * tree-gimple.c (is_gimple_tmp_rhs, is_gimple_stmt): Likewise.
12404 * tree-ssa-operands.c (get_expr_operands): Likewise.
12405 * doc/tm.texi (TARGET_GIMPLIFY_VA_ARG_EXPR): Don't mention
12406 EXPAND_BUILTIN_VA_ARG.
12407 * system.h (EXPAND_BUILTIN_VA_ARG): Poison.
12408 * config/alpha/alpha.h, config/alpha/unicosmk.h, config/i386/i386.h,
12409 config/ia64/ia64.h, config/rs6000/rs6000.h, config/s390/s390.h,
12410 config/sparc/sparc.h (EXPAND_BUILTIN_VA_ARG): Remove.
12412 2004-07-16 Daniel Berlin <dberlin@dberlin.org>
12414 * tree-ssa-pre.c (insert_aux): Break out if we hit
12417 2004-07-16 Richard Henderson <rth@redhat.com>
12419 * basic-block.h (remove_fake_exit_edges): Declare.
12420 * cfganal.c (remove_fake_predecessors): Rename from
12421 remove_fake_successors; iterate over predecessors.
12422 (remove_fake_exit_edges): New.
12423 * cfgcleanup.c (try_optimize_cfg): Use it.
12424 * gcse.c (one_pre_gcse_pass, store_motion): Likewise.
12425 * predict.c (estimate_probability): Likewise.
12426 (tree_estimate_probability, note_prediction_to_br_prob): Likewise.
12427 * tree-cfg.c (make_edges): Likewise.
12428 * tree-ssa-pre.c (fini_pre): Likewise.
12429 * profile.c (instrument_edges): Don't remove_fake_edges.
12430 (branch_prob): Do it earlier here.
12432 2004-07-16 Richard Henderson <rth@redhat.com>
12434 * tree-ssa-operands.c (get_expr_operands): Fix 2004-07-15
12435 switchification wrt CONSTRUCTOR. Document the reason.
12437 2004-07-16 Frank Ch. Eigler <fche@redhat.com>
12439 * tree-mudflap.c (mf_file_function_line_tree): Correct typo
12440 that prevented descriptive __mf_check source location strings.
12442 2004-07-16 Richard Henderson <rth@redhat.com>
12444 * tree-def (WITH_SIZE_EXPR): New.
12445 * explow.c (expr_size, int_expr_size): Handle WITH_SIZE_EXPR.
12446 * expr.c (expand_expr_real_1): Likewise.
12447 * gimplify.c (maybe_with_size_expr): New.
12448 (gimplify_arg, gimplify_modify_expr): Use it.
12449 (gimplify_modify_expr_to_memcpy): Take size parameter.
12450 (gimplify_modify_expr_to_memset): Likewise.
12451 (gimplify_expr): Handle WITH_SIZE_EXPR.
12452 * tree-alias-common.c (find_func_aliases): Likewise.
12453 * tree-eh.c (tree_could_trap_p): Likewise.
12454 (tree_could_throw_p): Likewise.
12455 * tree-gimple.c (is_gimple_lvalue): Likewise.
12456 (get_call_expr_in): Likewise.
12457 * tree-inline.c (estimate_num_insns_1): Likewise.
12458 (expand_calls_inline): Likewise.
12459 * tree-nested.c (convert_call_expr): Likewise.
12460 * tree-pretty-print.c (dump_generic_node): Likewise.
12461 * tree-sra.c (sra_walk_expr): Likewise.
12462 * tree-ssa-alias.c (add_pointed_to_expr): Likewise.
12463 * tree-ssa-ccp.c (get_rhs, set_rhs): Likewise.
12464 * tree-ssa-operands.c (get_expr_operands): Likewise.
12465 * tree-tailcall.c (find_tail_calls): Likewise.
12467 * calls.c (expand_call): Reset old_stack_allocated after
12468 calling emit_stack_restore.
12470 2004-07-16 Richard Henderson <rth@redhat.com>
12472 * langhooks-def.h (LANG_HOOKS_TREE_INLINING_COPY_RES_DECL_FOR_INLINING,
12473 lhd_tree_inlining_copy_res_decl_for_inlining): Remove.
12474 * langhooks.c (lhd_tree_inlining_copy_res_decl_for_inlining): Remove.
12475 * langhooks.h (struct lang_hooks_for_tree_inlining): Remove
12476 copy_res_decl_for_inlining.
12478 * tree-inline.c (declare_return_variable): New modify_dest argument.
12479 Use it as the return value, when possible or manditory. Handle
12480 TREE_ADDRESSABLE types.
12481 (expand_call_inline): Extract MODIFY_EXPR lhs for call. Simplify
12482 replacement of CALL_EXPR.
12484 2004-07-16 Richard Henderson <rth@redhat.com>
12486 * tree-flow.h (struct var_ann_d): Remove has_hidden_use.
12487 * gimple-low.c (expand_var_p): Don't check it.
12488 * tree-ssa-alias.c (setup_pointers_and_addressables): Likewise.
12489 * tree-ssa-copyrename.c (rename_ssa_copies): Likewise.
12490 * tree-ssa-operands.c (add_stmt_operand): Likewise.
12491 * tree-dfa.c (find_hidden_use_vars, find_hidden_use_vars_r): Kill.
12492 (find_referenced_vars): Don't call them.
12493 * tree-flow-inline.h (has_hidden_use, set_has_hidden_use): Kill.
12495 2004-07-16 Richard Henderson <rth@redhat.com>
12497 * function.c (pass_by_reference): True for all variable sized types.
12499 2004-07-16 Sebastian Pop <pop@cri.ensmp.fr>
12501 * Makefile.in (tree-pretty-print.o): Depend on tree-chrec.h.
12502 * tree-pretty-print.c: Include tree-chrec.h.
12503 (dump_generic_node): Pretty print SCEV_KNOWN, SCEV_NOT_KNOWN
12504 and POLYNOMIAL_CHREC nodes.
12506 2004-07-16 Steve Ellcey <sje@cup.hp.com>
12508 * builtins.c (expand_builtin_stpcpy): Do not create temporary
12511 2004-07-16 Segher Boessenkool <segher@kernel.crashing.org>
12513 * config/rs6000/eabi.asm (__eabi_convert): Fix typo (cmpi vs. cmpwi).
12515 2004-07-16 Andreas Krebbel <krebbel1@de.ibm.com>
12517 * config/s390/s390.md: Changed every occurence of BASE_REGISTER
12519 * config/s390/s390.c: Likewise.
12520 * config/s390/s390.h: Likewise.
12522 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12524 * config/mips/mips.md (addsi3, adddi3): Remove special handling
12525 of $sp adds. Remove REGNO checks from mips16 patterns.
12527 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12529 * config/mips/mips.md: Delete outdated comment.
12531 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12533 * config/mips/mips.c (get_float_compare_codes): Delete.
12534 (mips_emit_compare): New function, mostly extracted from
12535 get_float_compare_codes and gen_conditional_branch.
12536 (gen_conditional_branch, gen_conditional_move): Use it.
12538 2004-07-16 Segher Boessenkool <segher@kernel.crashing.org>
12540 * genautomata.c (add_vect): Speedup by using integers as
12541 bit-vectors for walking through the comb_vect and finding
12544 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12546 * config/mips/mips.c (mips_zero_if_equal): Only use XORs if the second
12547 operand is an uns_arith_operand; use subtraction otherwise.
12548 * config/mips/mips.md (cmpsi, cmpdi): Allow any nonmemory_operand,
12549 not just arith_operands.
12551 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12553 * config/mips/mips-protos.h (gen_int_relational): Delete.
12554 (mips_emit_scc): Declare.
12555 * config/mips/mips.c (internal_test): Delete.
12556 (sle_operand, sleu_operand): New functions.
12557 (map_test_to_internal_test, gen_int_relational): Delete.
12558 (mips_emit_binary, mips_relational_operand_ok_p)
12559 (mips_emit_int_relational, mips_zero_if_equal)
12560 (mips_emit_scc): New functions.
12561 (gen_conditional_branch): Rework to use mips_emit_int_relational.
12562 * config/mips/mips.h (PREDICATE_CODES): Add sle_operand and
12564 * config/mips/mips.md (seq, sne, sgt, sge, slt, sle, sgtu, sgeu)
12565 (sltu, sleu): Use mips_emit_scc.
12566 (*sge_[sd]i, *sgeu_[sd]i): New patterns.
12567 (*sle_[sd]i, *sle_[sd]i_mips16): Use sle_operand.
12568 (*sleu_[sd]i, *sleu_[sd]i_mips16): Use sleu_operand.
12570 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12572 * config/mips/mips.md (*sgt_di_mips16): Fix destination constraint.
12574 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12576 * config/mips/mips.md (*seq_[sd]i): Renamed from seq_[sd]i_zero.
12577 (*sne_[sd]i): Likewise sne_[sd]i_zero.
12578 (*sgt_[sd]i): ...and sgt_[sd]i.
12579 (*slt_[sd]i): ...and slt_[sd]i.
12580 (*sgtu_[sd]i): ...and sgtu_[sd]i.
12581 (*sltu_[sd]i): ...and sltu_[sd]i.
12582 (*sleu_[sd]i): ...and sleu_[sd]i_const.
12583 Name previously unnamed mips16 patterns. Formatting fixes.
12585 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12587 * config/mips/mips.c (cmp_operands): Renamed from branch_cmp.
12588 (branch_type): Delete.
12589 (gen_conditional_branch, gen_conditional_move)
12590 (mips_gen_conditional_trap): Update after name change. Get the
12591 comparison mode from cmp_operands[0].
12592 * config/mips/mips.h (cmp_type, branch_type): Delete.
12593 (cmp_operands): Renamed from branch_cmp.
12594 * config/mips/mips.md (cmpsi, cmpdi, cmpsf, cmpdf): Update after
12595 name change. Don't set branch_type.
12596 (seq, sne, sgt, sge, slt, sle, sgtu, sgeu, sltu, sleu): Check the
12597 mode class of cmp_operands[0] rather than branch_type. Update after
12600 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12602 * config/mips/mips.c (mips_rtx_costs): In mips16 code, set the cost
12603 of 0...255 to 0 when inside a SET.
12605 2004-07-16 Richard Sandiford <rsandifo@redhat.com>
12607 * config/mips/mips.md: Remove mips16 define_peepholes.
12609 2004-07-16 Daniel Berlin <dberlin@dberlin.org>
12611 * tree-ssa-pre.c (init_pre): Connect infinite loops to exit.
12612 (fini_pre): Remove fake edges.
12614 2004-07-15 Richard Henderson <rth@redhat.com>
12616 * tree-ssa-operands.c (get_expr_operands): Use a switch. Split out...
12617 (get_indirect_ref_operands, get_call_expr_operands): ... these.
12619 2004-07-15 Nathan Sidwell <nathan@codesourcery.com>
12621 * vec.h (VEC_address): New function.
12623 2004-07-14 Jason Merrill <jason@redhat.com>
12625 PR middle-end/15885
12626 * gimplify.c (gimplify_arg): New fn, split out from...
12627 (gimplify_call_expr): Here. Special-case BUILT_IN_VA_START.
12629 2004-07-15 Roman Zippel <zippel@linux-m68k.org>
12631 * config/m68k/m68k.c (output_move_qimode): Abort on an attempt to
12632 generate code which is generated by pushqi1 now
12633 * config/m68k/m68k.h (MOVE_BY_PIECES_P): Remove.
12635 2004-07-15 Roman Zippel <zippel@linux-m68k.org>
12637 * combine.c (simplify_set): match the mode of the constant 0 with
12638 the tested operand to match the compare behaviour and the
12639 simplify_relational_operation() expectation.
12641 2004-07-15 Aldy Hernandez <aldyh@redhat.com>
12643 * config/rs6000/rs6000.md ("bunordered"): Disable for e500.
12644 ("bordered"): Same.
12646 2004-07-15 Aldy Hernandez <aldyh@redhat.com>
12648 * config/rs6000/rs6000.md ("*cceq_ior_compare"): Allow
12650 * config/rs6000/spe.md ("e500_cceq_ior_compare"): Remove.
12652 2004-07-15 Richard Sandiford <rsandifo@redhat.com>
12654 * config/mips/mips.c (mips_adjust_insn_length): Fix handling of
12655 calls in mips16 code.
12657 2004-07-15 Richard Sandiford <rsandifo@redhat.com>
12659 * config/mips/mips.md: In the mips16 li/neg splitter, use SImode for
12660 the destination of the li as well as for the neg.
12662 2004-07-15 Frank Ch. Eigler <fche@redhat.com>
12665 * cgraphunit.c (cgraph_build_static_cdtor): Add priority argument.
12666 * cgraph.h: Update declaration.
12667 * c-decl.c (build_cdtor): Update call with default priority.
12668 * coverage.c (create_coverage): Ditto.
12669 * tree-mudflap.c (mf_init_fndecl): New tree.
12670 (mudflap_init): Set it.
12671 (mudflap_register_call): Arrange to call __mf_init before the first
12672 __mf_register call.
12673 (mudflap_finish_file): Mark the mudflap static initializer as extra
12674 high priority, to beat all C++ static constructors.
12676 2004-07-15 Jeff Law <law@redhat.com>
12678 * loop.c (check_insn_for_givs): Restore check for code labels that was
12679 accidentally deleted by a recent checkin.
12681 2004-07-15 Nathan Sidwell <nathan@codesourcery.com>
12683 * vec.h (VEC_T_truncate): Allow truncation of an empty vector.
12684 (VEC_T_quick_insert, VEC_T_ordered_remove): Fix sizeof(T) thinko.
12686 2004-07-14 Richard Henderson <rth@redhat.com>
12688 * print-tree.c (print_node): Fix casts last change.
12690 2004-07-15 Paul Brook <paul@codesourcery.com>
12692 * dwarf2out.c (dwarf2out_begin_prologue): Rename IA64_UNWIND_INFO
12693 to TARGET_UNWIND_INFO.
12694 * except.c (output_function_exception_table): Ditto.
12696 * opts.c (decode_options): Ditto.
12697 * passes.c (rest_of_handle_final): Ditto.
12698 * final.c (final_start_function): Ditto.
12699 (final_scan_insn, final_scan_insn): Replace IA64_UNWIND_EMIT with
12701 * targhooks.h (default_unwind_emit): Declare.
12702 * targhooks.c (default_unwind_emit): New function.
12703 * target-def.h: Define and use TARGET_UNWIND_EMIT.
12704 * target.h (struct gcc_target): Add unwind_emit.
12705 * config/ia64/ia64.c (TARGET_UNWIND_EMIT): Define.
12706 * config/ia64/ia64.h: Rename IA64_UNWIND_INFO to TARGET_UNWIND_INFO.
12707 Remove IA64_UNWIND_EMIT.
12708 * doc/tm.texi: Document TARGET_UNWIND_EMIT and TARGET_UNWIND_INFO.
12710 2004-07-14 Richard Henderson <rth@redhat.com>
12712 * print-tree.c (print_node): Handle SSA_NAME.
12714 2004-07-14 James E Wilson <wilson@specifixinc.com>
12717 * config/mips/mips.h (STARTING_FRAME_OFFSET): When flag_profile_value
12718 and ! TARGET_64BIT, include REG_PARM_STACK_SPACE.
12720 2004-07-15 Jakub Jelinek <jakub@redhat.com>
12722 * expr.c (expand_assignment): Reenable bitfield += optimizations.
12723 Use alias set 0 for memory, do proper mode calculations and adjust
12724 address for memories.
12726 2004-07-14 Per Bothner <per@bothner.com>
12728 * input.h: If USE_MAPPED_LOCATION, define separate expanded_location
12729 structure with extra column field.
12730 * tree.c (expand_location): Also fill in column field.
12731 * gengtype-lex.l: Ignore expanded_location typedef, sinze gengtype
12732 gets confused by the two conditionally-compiled definitions.
12734 2004-07-14 Eric Christopher <echristo@redhat.com>
12736 * calls.c (expand_call): Fix typo in comment.
12738 2004-07-14 Steve Ellcey <sje@cup.hp.com>
12740 * config/ia64/ia64.c (ia64_expand_compare): Allow ORDERED
12741 comparision of TFmode.
12743 2004-07-14 Richard Henderson <rth@redhat.com>
12745 * config/alpha/alpha.c (alpha_gimplify_va_arg_1): Move indirect ...
12746 (alpha_gimplify_va_arg): ... handling here. Use pass_by_reference.
12747 * config/c4x/c4x.c (c4x_gimplify_va_arg_expr): Use pass_by_reference.
12748 * config/i386/i386.c (ix86_gimplify_va_arg): Likewise.
12749 * config/i860/i860.c (i860_gimplify_va_arg_expr): Likewise.
12750 * config/ia64/ia64.c (ia64_gimplify_va_arg): Likewise.
12751 * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Likewise.
12752 * config/sh/sh.c (sh_gimplify_va_arg_expr): Likewise.
12753 * config/xtensa/xtensa.c (xtensa_gimplify_va_arg_expr): Likewise.
12755 2004-07-14 Mike Stump <mrs@apple.com>
12757 * config/darwin.h (WINT_TYPE): Define to be int to match
12758 system header files.
12760 2004-07-14 Bob Wilson <bob.wilson@acm.org>
12762 * config/xtensa/xtensa.c (function_arg_advance): Check for args
12763 that must be passed in the stack.
12764 (xtensa_gimplify_va_arg_expr): Skip special-case padding for small
12765 arguments if the size is not a constant.
12767 2004-07-14 Per Bothner <per@bothner.com>
12769 * c-typeck.c (emit_side_effect_warnings): Use EXPR_HAS_LOCATION
12770 instead of EXPR_LOCUS in a boolean context, which is always true
12771 if --enable-mapped-location.
12772 * stmt.c (warn_if_unused_value): Likewise. Also use EXPR_LOCATION.
12774 2004-07-14 Richard Henderson <rth@redhat.com>
12776 * dominance.c (struct dom_info): Add fake_exit_edge.
12777 (init_dom_info): Allocate it.
12778 (free_dom_info): Free it.
12779 (calc_dfs_tree): Set it. Handle noreturn and infinite loops
12781 (calc_idoms): Honor fake_exit_edge.
12783 2004-07-13 Jason Merrill <jason@redhat.com>
12785 * tree-gimple.c (is_gimple_reg_rhs, is_gimple_mem_rhs): New fns.
12786 (rhs_test_for): New fn.
12787 (is_gimple_tmp_rhs): Rename from is_gimple_rhs.
12788 * tree-gimple.h: Declare them.
12789 * gimplify.c (gimplify_modify_expr): Use the new fns.
12791 2004-07-14 Richard Henderson <rth@redhat.com>
12793 * config/arm/arm-protos.h (arm_va_arg): Remove.
12794 * config/arm/arm.c (arm_va_arg): Remove.
12795 (arm_init_expanders): Fix alignment of arg_pointer_rtx.
12796 * config/arm/arm.h (EXPAND_BUILTIN_VA_ARG): Remove.
12798 2004-07-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
12800 * pa.c (fix_range): New function to mark a range(s) of registers as
12802 (override_options): Call fix_range if the -mfixed-range option string
12804 * pa.h (TARGET_OPTIONS): Add -mfixed-range option.
12805 * doc/invoke.texi (-mfixed-range): Document new option.
12807 2004-07-14 David Edelsohn <edelsohn@gnu.org>
12809 * config/rs6000/rs6000.c (function_arg_padding): Do not pad SFmode
12811 (rs6000_gimplify_va_arg): Use size_int instead of build_int_2.
12813 2004-07-14 Roger Sayle <roger@eyesopen.com>
12815 * expmed.c (expand_sdiv_pow2): New function to expand signed division
12816 by a positive power of two, split out from expand_divmod. Provide
12817 an alternate implementation when shifts are expensive. Lower the
12818 threshold for using a branchless implementation to BRANCH_COST >= 2.
12819 (expand_divmod): Call expand_sdiv_pow2 for suitable divisions.
12821 2004-07-14 Paolo Bonzini <bonzini@gnu.org>
12823 * tree-dfa.c (make_rename_temp): *Really* work just
12824 like create_tmp_var if called while outside SSA form.
12826 2004-07-14 Ulrich Weigand <uweigand@de.ibm.com>
12828 * config/s390/s390.md ("udivsi3"): Ensure trap is generated
12829 for division by zero.
12830 ("umodsi3"): Likewise.
12832 2004-07-14 Richard Sandiford <rsandifo@redhat.com>
12834 * config/mips/mips.c (mips_output_move): When generating mips16 code,
12835 force loads of negative constants to be split.
12836 * config/mips/mips.md (*movhi_mips16, *movqi_mips16): Likewise.
12837 Generalize SImode li/neg splitter to cope with other modes.
12839 2004-07-14 Paolo Bonzini <bonzini@gnu.org>
12841 * expmed.c: Remove more references to QUEUED in the comments.
12842 * expr.c: Likewise.
12844 2004-07-14 Richard Sandiford <rsandifo@redhat.com>
12847 2004-07-13 Richard Henderson <rth@redhat.com>
12848 * config/mips/mips.c (mips_pass_by_reference): Handle mode sizes
12851 2004-07-14 Paolo Bonzini <bonzini@gnu.org>
12853 * tree-dfa.c (make_rename_temp): Work just like
12854 create_tmp_var if called while outside SSA form.
12856 2004-07-14 Paolo Bonzini <bonzini@gnu.org>
12858 * expr.c (enqueue_insn, finish_expr_for_function,
12859 protect_from_queue, queued_subexp_p, mark_queue,
12860 emit_insns_enqueued_after_mark, emit_queue,
12861 expand_increment): Remove.
12862 (store_constructor): Expand increment as an assignment.
12863 (expand_expr_real_1 <case PREINCREMENT_EXPR,
12864 case PREDECREMENT_EXPR, case POSTINCREMENT_EXPR,
12865 case POSTDECREMENT_EXPR>): Abort.
12866 * expr.h (QUEUED_VAR, QUEUED_INSN, QUEUED_COPY,
12867 QUEUED_BODY, QUEUED_NEXT, finish_expr_for_function,
12868 protect_from_queue, emit_queue, queued_subexp_p): Remove.
12869 * function.h (pending_chain, x_pending_chain): Remove.
12870 * rtl.def (QUEUED): Remove.
12872 * emit-rtl.c (copy_insn_1, copy_most_rtx,
12873 set_used_flags, verify_rtx_sharing): Remove references to QUEUED.
12874 * genattrtab.c (attr_copy_rtx, clear_struct_flag,
12875 encode_units_mask): Likewise.
12876 * local-alloc.c (equiv_init_varies_p): Likewise.
12877 * rtl.c (copy_rtx): Likewise.
12878 * rtlanal.c (rtx_unstable_p, rtx_varies_p): Likewise.
12879 * simplify-rtx.c (simplify_gen_subreg): Likewise.
12880 * config/mn10300/mn10300.c (legitimate_pic_operand_p): Likewise.
12882 * builtins.c (expand_builtin, expand_builtin_apply,
12883 expand_builtin_mathfn, expand_builtin_mathfn_2,
12884 expand_builtin_mathfn_3, expand_builtin_setjmp_setup):
12885 Remove calls to emit_queue and protect_from_queue.
12886 * calls.c (expand_call, precompute_arguments,
12887 precompute_register_parameters, rtx_for_function_call,
12888 store_one_arg): Likewise.
12889 * dojump.c (do_compare_and_jump, do_jump): Likewise.
12890 * explow.c (memory_address): Likewise.
12891 * expmed.c (clear_by_pieces_1, clear_storage,
12892 clear_storage_via_libcall, emit_group_load,
12893 emit_group_store, emit_store_flag,
12894 expand_expr_real_1, store_by_pieces,
12895 store_constructor, store_expr, try_casesi,
12896 try_tablejump): Likewise.
12897 * function.c (expand_pending_sizes): Likewise.
12898 * optabs.c (emit_cmp_and_jump_insns,
12899 emit_conditional_add, emit_conditional_move,
12900 expand_fix, expand_float, prepare_cmp_insn): Likewise.
12901 * stmt.c (emit_case_bit_tests,
12902 expand_asm_expr, expand_computed_goto,
12903 expand_decl_init, expand_end_case_type,
12904 expand_end_stmt_expr, expand_expr_stmt_value,
12905 expand_return, expand_start_case,
12906 optimize_tail_recursion): Likewise.
12907 * config/c4x/c4x.c (c4x_expand_builtin): Likewise.
12908 * config/s390/s390.c (s390_expand_cmpmem): Likewise.
12910 2004-07-14 Ben Elliston <bje@au.ibm.com>
12912 * vec.h: Comment fix.
12914 2004-07-13 Richard Henderson <rth@redhat.com>
12916 * target.h (struct gcc_target): Add calls.pass_by_reference.
12917 * target-def.h (TARGET_PASS_BY_REFERENCE): New.
12918 * function.c (pass_by_reference): Use the hook.
12919 * system.h (FUNCTION_ARG_PASS_BY_REFERENCE): Poison.
12920 * targhooks.c, targhooks.h (hook_pass_by_reference_false): New.
12921 (hook_pass_by_reference_must_pass_in_stack): New.
12922 * config/alpha/alpha.c (function_arg): Don't query pass-by-ref.
12923 (alpha_pass_by_reference): New.
12924 (TARGET_PASS_BY_REFERENCE): New.
12925 * config/alpha/alpha.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12926 * config/arc/arc.c (arc_pass_by_reference): New.
12927 (TARGET_PASS_BY_REFERENCE): New.
12928 * config/arc/arc.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12929 (FUNCTION_ARG_CALLEE_COPIES): True.
12930 * config/arm/arm-protos.h (arm_function_arg_pass_by_reference): Remove.
12931 * config/arm/arm.c (TARGET_PASS_BY_REFERENCE): New.
12932 (arm_pass_by_reference): Rename from arm_function_arg_pass_by_reference.
12933 * config/arm/arm.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12934 * config/c4x/c4x.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12935 * config/cris/cris.c (cris_pass_by_reference): New.
12936 (TARGET_PASS_BY_REFERENCE): New.
12937 * config/cris/cris.h (FUNCTION_ARG): Don't query pass-by-ref.
12938 (FUNCTION_INCOMING_ARG, FUNCTION_ARG_ADVANCE): Likewise.
12939 (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12940 * config/fr30/fr30.c (TARGET_PASS_BY_REFERENCE): New.
12941 * config/fr30/fr30.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12942 * config/frv/frv-protos.h (frv_function_arg_pass_by_reference): Kill.
12943 * config/frv/frv.c (TARGET_PASS_BY_REFERENCE): New.
12944 (frv_function_arg_pass_by_reference): Remove.
12945 * config/frv/frv.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12946 * config/i386/i386-protos.h (function_arg_pass_by_reference): Remove.
12947 * config/i386/i386.c (TARGET_PASS_BY_REFERENCE): New.
12948 (ix86_pass_by_reference): Rename from function_arg_pass_by_reference.
12949 * config/i386/i386.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12950 * config/ia64/ia64-protos.h (ia64_function_arg_pass_by_reference): Kill.
12951 * config/ia64/ia64.c (TARGET_PASS_BY_REFERENCE): New.
12952 (ia64_pass_by_reference): Rename from
12953 ia64_function_arg_pass_by_reference.
12954 * config/ia64/ia64.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12955 * config/ip2k/ip2k.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12956 * config/iq2000/iq2000-protos.h (function_arg_pass_by_reference): Kill.
12957 * config/iq2000/iq2000.c (TARGET_PASS_BY_REFERENCE): New.
12958 (iq2000_pass_by_reference): Rename from function_arg_pass_by_reference.
12959 * config/iq2000/iq2000.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12960 (FUNCTION_ARG_CALLEE_COPIES): Don't reference pass-by-ref.
12961 * config/m32r/m32r-protos.h (m32r_pass_by_reference): Remove.
12962 * config/m32r/m32r.c (TARGET_PASS_BY_REFERENCE): New.
12963 (m32r_pass_by_reference): Adjust prototype. Make static.
12964 Handle mode sizes correctly.
12965 * config/m32r/m32r.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12966 * config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c
12967 (m68hc11_function_arg_pass_by_reference): Remove.
12968 * config/m68hc11/m68hc11.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12969 (FUNCTION_ARG_CALLEE_COPIES): Don't reference pass-by-ref.
12970 * config/mcore/mcore.c (TARGET_PASS_BY_REFERENCE): New.
12971 * config/mcore/mcore.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12972 * config/mips/mips-protos.h (function_arg_pass_by_reference): Remove.
12973 * config/mips/mips.c (TARGET_PASS_BY_REFERENCE): New.
12974 (mips_va_arg): Use pass_by_reference.
12975 (mips_pass_by_reference): Rename from function_arg_pass_by_reference.
12976 Handle mode sizes correctly.
12977 * config/mips/mips.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12978 (FUNCTION_ARG_CALLEE_COPIES): Don't reference pass-by-ref.
12979 * config/mmix/mmix-protos.h (mmix_function_arg_pass_by_reference): Kill.
12980 * config/mmix/mmix.c (TARGET_PASS_BY_REFERENCE): New.
12981 (mmix_pass_by_reference): Rename from
12982 mmix_function_arg_pass_by_reference.
12983 * config/mmix/mmix.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12984 (FUNCTION_ARG_CALLEE_COPIES): True.
12985 * config/mn10300/mn10300.c (TARGET_PASS_BY_REFERENCE): New.
12986 (mn10300_pass_by_reference): New.
12987 * config/mn10300/mn10300.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12988 (FUNCTION_ARG_CALLEE_COPIES): True.
12989 * config/pa/pa.c (pa_pass_by_reference): New.
12990 (TARGET_PASS_BY_REFERENCE): New.
12991 * config/pa/pa.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12992 (FUNCTION_ARG_CALLEE_COPIES): True.
12993 * config/rs6000/rs6000-protos.h (function_arg_pass_by_reference): Kill.
12994 * config/rs6000/rs6000.c (TARGET_PASS_BY_REFERENCE): New.
12995 (rs6000_pass_by_reference): Rename from function_arg_pass_by_reference.
12996 * config/rs6000/rs6000.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
12997 * config/s390/s390-protos.h (s390_function_arg_pass_by_reference): Kill.
12998 * config/s390/s390.c (TARGET_PASS_BY_REFERENCE): New.
12999 (s390_pass_by_reference): Rename from
13000 s390_function_arg_pass_by_reference.
13001 (s390_function_arg_advance): Don't query pass-by-ref.
13002 (s390_function_arg): Likewise.
13003 (s390_gimplify_va_arg): Use pass_by_reference.
13004 (s390_call_saved_register_used): Likewise.
13005 * config/s390/s390.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
13006 * config/sh/sh.c (TARGET_PASS_BY_REFERENCE): New.
13007 (shcompact_byref, sh_pass_by_reference): New.
13008 * config/sh/sh.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
13009 (SHCOMPACT_BYREF): Remove.
13010 * config/sparc/sparc-protos.h (function_arg_pass_by_reference): Kill.
13011 * config/sparc/sparc.c (TARGET_PASS_BY_REFERENCE): New.
13012 (sparc_pass_by_reference): Rename from function_arg_pass_by_reference.
13013 (sparc_gimplify_va_arg): Use pass_by_reference.
13014 * config/sparc/sparc.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
13015 * config/stormy16/stormy16.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
13016 * config/v850/v850.c (TARGET_PASS_BY_REFERENCE): New.
13017 (v850_pass_by_reference): New.
13018 * config/v850/v850.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
13019 (FUNCTION_ARG_CALLEE_COPIES): True.
13020 * doc/tm.texi (TARGET_PASS_BY_REFERENCE): Update from
13021 FUNCTION_ARG_PASS_BY_REFERENCE docs.
13023 2004-07-14 Richard Henderson <rth@redhat.com>
13024 Richard Sandiford <rsandifo@redhat.com>
13026 * config/mips/mips-protos.h (mips_va_arg): Delete.
13027 * config/mips/mips.h (EXPAND_BUILTIN_VA_ARG): Delete.
13028 * config/mips/mips.c: Include tree-gimple.h.
13029 (TARGET_GIMPLIFY_VA_ARG_EXPR): Define.
13030 (mips_arg_info): Remove special handling of must_pass_in_stck args.
13031 (mips_gimplify_va_arg_expr): Rewritten from mips_va_arg.
13032 (function_arg_pass_by_reference): Return true if must_pass_in_stack.
13034 2004-07-13 Bob Wilson <bob.wilson@acm.org>
13036 * config/xtensa/xtensa.c (xtensa_gimplify_va_arg_expr): Swap
13037 arguments for COND_EXPR in big-endian adjustment code.
13039 2004-07-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
13041 * pa-64.h (ARG_POINTER_REGNUM, STATIC_CHAIN_REGNUM): Delete.
13042 * pa.h (ARG_POINTER_REGNUM, STATIC_CHAIN_REGNUM): Modify for hppa64.
13043 * pa32-regs.h (REG_ALLOC_ORDER): Reorder caller-saved registers.
13044 * pa64-regs.h (REG_ALLOC_ORDER): Likewise.
13046 2004-07-13 Diego Novillo <dnovillo@redhat.com>
13048 PR tree-optimization/16443
13049 * tree-ssa-alias.c: Add more description for
13050 CALL_CLOBBERED_VARS and ADDRESSABLE_VARS.
13051 * tree-ssa-operands.c (get_asm_expr_operands): Re-order the
13052 clobbering of call-clobbered and addressable variables. If
13053 there are any before aliases have been computed, add them.
13055 2004-07-13 Diego Novillo <dnovillo@redhat.com>
13057 * tree-optimize.c (execute_todo): Flush DUMP_FILE before
13060 2004-07-13 Ulrich Weigand <uweigand@de.ibm.com>
13062 * config/s390/s390.c (s390_gimplify_va_arg): Use size_int instead
13063 of build_int_2. Convert both operands of PLUS_EXPR and MULT_EXPR
13066 2004-07-13 Per Bothner <per@bothner.com>
13068 * collect2.c (main): Handle --no-demangle and --demangle flags.
13070 2004-07-13 Sebastian Pop <pop@cri.ensmp.fr>
13072 * Makefile.in (OBJS-common): Add tree-data-ref.o.
13073 (tree-scalar-evolution.o): Add missing dependences on tree-pass.h flags.h.
13074 (tree-data-ref.o): New rule.
13075 * lambda.h: New file.
13076 * tree-data-ref.c: New file.
13077 * tree-data-ref.h: New file.
13078 * tree.c (int_cst_value, tree_fold_gcd): New functions.
13079 * tree.h (int_cst_value, tree_fold_gcd): Declared here.
13081 2004-07-13 Eric Botcazou <ebotcazou@libertysurf.fr>
13084 * config/sparc/sparc-protos.h (output_ubranch): New prototype.
13085 * config/sparc/sparc.c (output_ubranch): New function.
13086 * config/sparc/sparc.md (jump pattern): Use it.
13088 2004-07-13 Eric Botcazou <ebotcazou@libertysurf.fr>
13091 * config/sparc/sparc.c (output_cbranch): Properly guard
13092 the code handling far branches with TARGET_V9.
13093 * config/sparc/sparc.md (length attribute): Document the
13094 side-effect of having a length greater or equal to 3.
13096 2004-07-13 Eric Botcazou <ebotcazou@libertysurf.fr>
13097 Lloyd Parkes <lloyd@must-have-coffee.gen.nz>
13100 * config/sparc/sol2-bi.h (LINK_ARCH64_SPEC_BASE): Pass
13101 /usr/ucblib/sparcv9 as -R path when -compat-bsd is specified.
13103 2004-07-13 Eric Botcazou <ebotcazou@libertysurf.fr>
13104 Martin Sebor <sebor@roguewave.com>
13107 * doc/invoke.texi (SPARC options): Document -threads
13108 and -pthreads on Solaris.
13110 2004-07-13 Richard Henderson <rth@redhat.com>
13112 * builtins.c (std_gimplify_va_arg_expr): Handle types passed
13114 (ind_gimplify_va_arg_expr): Remove.
13115 * tree.h (ind_gimplify_va_arg_expr): Remove.
13116 * config/pa/pa.c (hppa_gimplify_va_arg_expr): Don't use it.
13117 * config/mmix/mmix.c (mmix_function_arg_pass_by_reference): Allow
13120 * config/arc/arc.c (arc_gimplify_va_arg_expr): Remove.
13121 (TARGET_GIMPLIFY_VA_ARG_EXPR): Remove.
13122 * config/cris/cris.c, config/fr30/fr30.c, config/frv/frv.c,
13123 config/iq2000/iq2000.c, config/m32r/m32r.c, config/mmix/mmix.c,
13124 config/mn10300/mn10300.c, config/v850/v850.c: Similarly.
13126 2004-07-13 Richard Henderson <rth@redhat.com>
13128 * function.c (pass_by_reference): New.
13129 (assign_parm_find_data_types): Use it.
13130 * calls.c (initialize_argument_information): Likewise.
13131 (emit_library_call_value_1): Likewise.
13132 * expr.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
13133 * function.h (pass_by_reference): Declare.
13135 2004-07-13 Richard Henderson <rth@redhat.com>
13137 * target-def.h (TARGET_MUST_PASS_IN_STACK): New.
13138 * target.h (struct gcc_target): Add calls.must_pass_in_stack.
13139 * expr.h (MUST_PASS_IN_STACK): Remove.
13140 * system.h (MUST_PASS_IN_STACK): Poison.
13141 * tree.h (must_pass_in_stack_var_size): Declare.
13142 (must_pass_in_stack_var_size_or_pad): Declare.
13143 * calls.c (must_pass_in_stack_var_size): New.
13144 (must_pass_in_stack_var_size_or_pad): Rename from
13145 default_must_pass_in_stack.
13146 * config/alpha/alpha.c (unicosmk_must_pass_in_stack): New.
13147 (TARGET_MUST_PASS_IN_STACK): New.
13148 * config/alpha/unicosmk.h (MUST_PASS_IN_STACK): Remove.
13149 * config/fr30/fr30.c (fr30_must_pass_in_stack): New.
13150 (TARGET_MUST_PASS_IN_STACK): New.
13151 * config/fr30/fr30.h (MUST_PASS_IN_STACK): Remove.
13152 * config/frv/frv.c (frv_must_pass_in_stack): New.
13153 (TARGET_MUST_PASS_IN_STACK): New.
13154 * config/frv/frv.h (MUST_PASS_IN_STACK): Remove.
13155 * config/i386/i386-protos.h (ix86_must_pass_in_stack): Remove.
13156 * config/i386/i386.c (TARGET_MUST_PASS_IN_STACK): New.
13157 (ix86_must_pass_in_stack): Make static.
13158 * config/i386/i386.h (MUST_PASS_IN_STACK): Remove.
13159 * config/ia64/ia64.c (TARGET_MUST_PASS_IN_STACK): New.
13160 * config/ia64/ia64.h (MUST_PASS_IN_STACK): Remove.
13161 * config/m32r/m32r.c (TARGET_MUST_PASS_IN_STACK): New.
13162 * config/m32r/m32r.h (MUST_PASS_IN_STACK): Remove.
13163 * config/mcore/mcore-protos.h (mcore_must_pass_on_stack): Remove.
13164 * config/mcore/mcore.c (TARGET_MUST_PASS_IN_STACK): New.
13165 (mcore_must_pass_on_stack): Remove.
13166 * config/mcore/mcore.h (MUST_PASS_IN_STACK): Remove.
13167 * config/mips/mips.c (TARGET_MUST_PASS_IN_STACK): New.
13168 * config/mips/mips.h (MUST_PASS_IN_STACK): Remove.
13169 * config/pa/pa.c (TARGET_MUST_PASS_IN_STACK): New.
13170 * config/pa/pa.h (MUST_PASS_IN_STACK): Remove.
13171 * config/rs6000/aix.h (MUST_PASS_IN_STACK): Remove.
13172 * config/rs6000/linux64.h (MUST_PASS_IN_STACK): Remove.
13173 * config/rs6000/rs6000.c (rs6000_must_pass_in_stack): New.
13174 (TARGET_MUST_PASS_IN_STACK): New.
13175 * config/sh/sh.c (TARGET_MUST_PASS_IN_STACK): New.
13176 * config/sh/sh.h (MUST_PASS_IN_STACK): Remove.
13177 * config/sparc/sparc.c (TARGET_MUST_PASS_IN_STACK): New.
13178 * config/sparc/sparc.h (MUST_PASS_IN_STACK): Remove.
13179 * config/xtensa/xtensa.c (TARGET_MUST_PASS_IN_STACK): New.
13180 * config/xtensa/xtensa.h (MUST_PASS_IN_STACK): Remove.
13181 * doc/tm.texi (TARGET_MUST_PASS_IN_STACK): Update from
13182 MUST_PASS_IN_STACK.
13184 * calls.c, function.c, config/alpha/alpha.c, config/alpha/alpha.h,
13185 config/alpha/unicosmk.h, config/alpha/vms.h, config/c4x/c4x.c,
13186 config/cris/cris.h, config/fr30/fr30.c, config/fr30/fr30.h,
13187 config/frv/frv.c, config/i386/i386.c, config/iq2000/iq2000.c,
13188 config/mcore/mcore.c, config/mcore/mcore.h, config/mips/mips.c,
13189 config/mmix/mmix.c, config/mmix/mmix.h, config/rs6000/rs6000.c,
13190 config/sh/sh.c, config/sh/sh.h, config/stormy16/stormy16.c,
13191 config/xtensa/xtensa.c: Use target hook.
13193 2004-07-13 Anthony Heading <aheading@jpmorgan.com>
13195 * configure.ac (gcc_cv_as_offsetable_lo10): Fix a typo.
13196 * configure: Rebuilt.
13198 2004-07-13 Richard Sandiford <rsandifo@redhat.com>
13200 * doc/invoke.texi: Remove documentation for MIPS -mrnames option.
13201 * config/mips/mips.h (mips_reg_names): Don't declare.
13202 (MASK_NAME_REGS): Delete. Shuffle other MASK_* values down.
13203 (TARGET_NAME_REGS): Delete.
13204 (TARGET_SWITCHES): Remove -mrnames.
13205 (REGISTER_NAMES): Initialise with the old contents of mips_reg_names[].
13206 (ADDITIONAL_REGISTER_NAMES): Remove entries for names mentioned
13208 * config/mips/mips.c (mips_reg_names, mips_sw_reg_names): Delete.
13209 (override_options): Remove handling of TARGET_NAME_REGS.
13211 2004-07-13 Richard Sandiford <rsandifo@redhat.com>
13213 * config/mips/mips.h (TARGET_*): Boolify.
13215 2004-07-12 Nick Clifton <nickc@redhat.com>
13217 * config.gcc: Add sh-*-symbianelf target.
13218 * config/sh/sh.c: Add new target macros:
13219 TARGET_ENCODE_SECTION_INFO, TARGET_STRIP_NAME_ENCODING,
13220 TARGET_CXX_IMPORT_EXPORT_CLASS.
13221 (sh_file_start): Create a definition of the .directive section.
13222 (sh_attribute): Add dllimport and dllexport attributes.
13223 * config/sh/symbian-pre.h: New file.
13224 * config/sh/symbian-post.h: New file.
13225 * config/sh/symbian.c: New file. Contains Symbian specific
13227 * config/sh/sh-protos.h: Add prototypes for new functions
13228 provided by symbian.c.
13229 * config/sh/t-symbian: New file.
13230 * doc/extend.texi: Document support for dllimport and dllexport
13231 attributes by the sh-symbianelf target.
13233 2004-07-12 James E Wilson <wilson@specifixinc.com>
13235 * Makefile.in (AR): Use @AR@ not ar.
13237 (AR_FOR_TARGET): Use $(AR) not ar for native.
13238 (NM_FOR_TARGET): Use $(NM) not nm for native.
13239 * configure.ac: Add AC_CHECK_PROG calls for NM and AR.
13240 * configure: Regenerate.
13242 2004-07-12 David S. Miller <davem@nuts.davemloft.net>
13244 * config/sparc/sparc.md (ashlsi3): Eliminate const 1
13246 (ashldi3_sp64): Likewise.
13248 2004-07-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
13251 * pa.c (function_arg): Update comment.
13252 * pa.h (BLOCK_REG_PADDING): Define.
13254 2004-07-12 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
13256 PR tree-optimization/16461
13257 * tree-tailcall.c (independent_of_stmt_p): Handle non-SSA name
13258 arguments of phi nodes.
13260 2004-07-12 Devang Patel <dpatel@apple.com>
13262 * doc/invoke.texi (Darwin Options): Document -gused and -gfull.
13264 2004-07-12 Steve Ellcey <sje@cup.hp.com>
13266 * function.c (expand_function_start): Ensure r_save is in Pmode.
13267 * calls.c (prepare_call_address): Ensure static_chain_value is
13269 * builtins.c (expand_builtin_nonlocal_goto): Ensure r_label and
13270 r_save_area are in Pmode.
13271 * config/ia64/ia64.c (ia64_initialize_trampoline): Ensure addr,
13272 fnaddr, and static_chain are in Pmode.
13274 2004-07-12 Vladimir Makarov <vmakarov@redhat.com>
13277 * config/ia64/ia64.c (bundling): Don't count ignored insns.
13279 2004-07-12 Richard Henderson <rth@redhat.com>
13281 * target.h (struct gcc_target): Move gimplify_va_arg_expr
13282 next to build_builtin_va_list.
13283 * target-def.h (TARGET_GIMPLIFY_VA_ARG_EXPR): Update to match.
13284 * builtins.c (gimplify_va_arg_expr): Likewise.
13285 * gimplify.c (copy_if_shared_r): Likewise.
13287 2004-07-12 Alexandre Oliva <aoliva@redhat.com>
13289 * passes.c (rest_of_decl_compilation): Don't defer call of
13290 assemble_variable if its DECL_RTL is already set.
13292 2004-07-12 Sebastian Pop <pop@cri.ensmp.fr>
13294 * cfgloop.h (struct loop): Add nb_iterations field.
13295 (current_loops): Declare.
13296 * tree-chrec.c (chrec_not_analyzed_yet,
13297 chrec_dont_know, chrec_known, count_ev_in_wider_type,
13298 chrec_contains_symbols_defined_in_loop): Remove the temporary
13300 * tree-flow-inline.h (loop_containing_stmt): New function.
13301 * tree-scalar-evolution.c: Add implementation.
13302 * tree-scalar-evolution.h: Add declarations.
13304 2004-07-12 Vladimir Makarov <vmakarov@redhat.com>
13306 PR rtl-optimization/15921
13307 * Makefile.in (global.o): Add recog.h.
13309 * global.c (recog.h): Add the include-clause.
13310 (bb_info): New member earlyclobber.
13311 (allocate_bb_info, free_bb_info): Initialize/finish the new
13313 (earlyclobber_regclass, earlyclobber_regclass_length): The new
13315 (check_earlyclobber, regclass_intersect,
13316 mark_reg_use_for_earlyclobber, mark_reg_use_for_earlyclobber_1):
13318 (calculate_local_reg_bb_info): Calculate value of earlyclobber.
13319 (make_accurate_live_analysis): Modify pavin.
13321 2004-07-12 Diego Novillo <dnovillo@redhat.com>
13323 * tree-cfg.c (find_taken_edge): Statically compute the truth
13324 value of a predicate comparing an SSA_NAME to itself.
13326 2004-07-12 Roger Sayle <roger@eyesopen.com>
13328 * config/rs6000/rs6000.c (rs6000_rtx_costs): Indicate that the
13329 rs6000 doesn't have shift-and-add or shift-and-sub instructions
13330 by returning the cost of a multiplication plus an addition.
13332 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
13334 PR tree-optimization/14107
13335 * gimplify.c (gimplify_return_expr): Accept a
13336 RETURN_EXPR with an error argument.
13337 * tree-optimize.c (init_tree_optimization_passes):
13338 Run pass_warn_function_return at -O0.
13340 2004-07-12 Roger Sayle <roger@eyesopen.com>
13342 * doc/invoke.texi: Correct -fasynchronous-unwind-tables option
13345 2004-07-12 Richard Sandiford <rsandifo@redhat.com>
13347 * config/mips/mips.c (mips_use_dfa_pipeline_interface): Delete.
13348 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
13349 * config/mips/3000.md: Add copyright notice. Remove automota and
13350 function units; use generic ones instead. Only define reservations
13351 for things that are different from generic.md. Extend each clause
13353 * config/mips/{4000,4100,4300,4600,5000,6000,generic}.md: New files.
13354 * config/mips/mips.md: Include them. Remove define_function_units.
13355 (alu, imuldiv): New automata and units.
13357 2004-07-12 Ben Elliston <bje@au.ibm.com>
13359 * doc/invoke.texi (Optimize Options): Document -frename-registers
13360 not being enabled by default at -O3.
13362 2004-07-11 Roger Sayle <roger@eyesopen.com>
13364 * fold-const.c (fold) <PLUS_EXPR>: Canonicalize X + -C as X - C for
13365 floating point additions, to keep real immediate constant positive.
13366 <MINUS_EXPR>: For floating point subtractions, only transform X - -C
13367 into X + C, and leave positive real constants as X - C.
13369 2004-07-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
13371 * pa.c (hppa_gimplify_va_arg_expr): Remove comment.
13373 2004-07-11 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
13375 PR tree-optimization/15654
13376 * tree-tailcall.c (eliminate_tail_call): Remove unreachable code.
13378 2004-07-11 Roger Sayle <roger@eyesopen.com>
13380 * builtins.c (fold_builtin_fputs): Don't bother converting the
13381 return type to integer_type_node, as we've already checked that
13382 the result will be ignored.
13384 * tree-eh.c (tree_could_trap_p): Add support for -ftrapv such
13385 that signed addition, subtraction, multiplication, division,
13386 remainder, negation and absolute value may potentially trap.
13388 * fold-const.c (fold_ignored_result): New function to strip
13389 non-side-effecting tree nodes from an expression whose result
13391 (fold_convert): Call fold_ignored_result when casting a value
13393 (omit_one_operand): Call fold_ignored_result on the "omitted"
13394 operand when building a COMPOUND_EXPR.
13395 (pedantic_omit_one_operand): Likewise.
13396 * tree.h (fold_ignored_result): Prototype here.
13397 * tree-ssa-ccp.c (ccp_fold_builtin): Call fold_ignored_result
13398 when we're going to ignore the result.
13400 2004-07-11 Richard Henderson <rth@redhat.com>
13403 * tree-ssa-ccp.c (fold_stmt_r): Split out...
13404 * tree.c (fields_compatible_p, find_compatible_field): ... new.
13405 * tree.h (fields_compatible_p, find_compatible_field): Declare.
13406 * tree-sra.c (sra_hash_tree): Hash fields by offset.
13407 (sra_elt_eq): Use fields_compatible_p.
13408 (generate_one_element_ref): Use find_compatible_field.
13410 2004-07-11 Richard Henderson <rth@redhat.com>
13413 * tree-sra.c (generate_one_element_init): New.
13414 (generate_element_init): Use it.
13415 (scalarize_init): Push/pop gimplify context around it.
13416 (find_new_referenced_vars_1, find_new_referenced_vars): New.
13417 * gimplify.c (gimplify_expr): Allow SSA_NAME.
13419 2004-07-11 Roger Sayle <roger@eyesopen.com>
13421 * rtlanal.c (insn_rtx_cost): New function, moved and renamed from
13422 combine.c's combine_insn_cost.
13423 * rtl.h (insn_rtx_cost): Prototype here.
13424 * combine.c (combine_insn_cost): Delete function.
13425 (combine_validate_cost): Update callers of combine_insn_cost to
13426 call insn_rtx_cost instead.
13427 (combine_instructions): Likewise. Use NONJUMP_INSN_P to avoid
13428 requesting the rtx_cost of call and/or jump instructions.
13430 * ifcvt.c (total_bb_rtx_cost): Use insn_rtx_cost instead of calling
13431 rtx_cost directly. Don't request/use the cost of call or jump
13432 instructions. Return -1 if the cost of any instruction can't be
13433 determined (or the BB contains a function call).
13434 (find_if_case_1): Abort transformation if total_bb_rtx_cost returns
13435 -1 (i.e. can't determine the cost of any instruction or the basic
13436 block contains a subroutine call).
13437 (find_if_case_2): Likewise.
13439 2004-07-11 Roger Sayle <roger@eyesopen.com>
13441 * rs6000.c (struct processor_costs): Change semantics of fields to
13442 include the COST_N_INSNS scaling, and update all initializers.
13443 (rs6000_rtx_costs): Don't use COSTS_N_INSNS on rs6000_cost fields.
13444 Use COSTS_N_INSNS(1) for NOT, SIGN_EXTEND, ZERO_EXTEND and COMPARE.
13445 Use rs6000_cost->fp for both FLOAT_TRUNCATE and UNSPEC_FRSP. When
13446 optimizing for size, use COSTS_N_INSNS(1) for CALL and IF_THEN_ELSE.
13448 2004-07-11 Joseph S. Myers <jsm@polyomino.org.uk>
13450 * LANGUAGES: Remove obsolete information.
13452 2004-07-11 Ulrich Weigand <uweigand@de.ibm.com>
13454 * config/s390/linux.h (MD_FALLBACK_FRAME_STATE_FOR): For SIGSEGV and
13455 SIGBUS signal frames, the PSW address points *to* the faulting
13456 instruction, not after it.
13458 2004-07-11 Ulrich Weigand <uweigand@de.ibm.com>
13460 * config/s390/s390.c (legitimize_tls_address): Handle constant offsets
13461 added to TLS symbol addresses.
13463 2004-07-11 Richard Henderson <rth@redhat.com>
13465 * expmed.c (init_expmed): Use stack-local structures for
13466 temporary rtl. Don't recognize shifts.
13468 2004-07-11 Richard Henderson <rth@redhat.com>
13470 * expr.c (store_expr): Don't fiddle subreg promotion for types
13471 with precision smaller than the mode.
13473 2004-07-11 Joseph S. Myers <jsm@polyomino.org.uk>
13475 * tree.h (all_types_permanent): Remove.
13477 2004-07-11 Joseph S. Myers <jsm@polyomino.org.uk>
13479 * langhooks.h (estimate_num_insns, pushlevel, poplevel, set_block,
13480 maybe_build_cleanup, update_decl_after_saving): Remove hooks.
13481 * langhooks.c (lhd_clear_binding_stack): Remove.
13482 * langhooks-def.h (lhd_clear_binding_stack,
13483 LANG_HOOKS_MAYBE_BUILD_CLEANUP,
13484 LANG_HOOKS_UPDATE_DECL_AFTER_SAVING,
13485 LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS, LANG_HOOKS_PUSHLEVEL,
13486 LANG_HOOKS_POPLEVEL, LANG_HOOKS_SET_BLOCK): Remove.
13487 (LANG_HOOKS_CLEAR_BINDING_STACK): Define to lhd_do_nothing.
13488 * system.h (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS,
13489 LANG_HOOKS_PUSHLEVEL, LANG_HOOKS_SET_BLOCK,
13490 LANG_HOOKS_MAYBE_BUILD_CLEANUP,
13491 LANG_HOOKS_UPDATE_DECL_AFTER_SAVING, LANG_HOOKS_POPLEVEL): Poison.
13492 * tree.h (poplevel): Don't declare.
13493 * c-lang.c (LANG_HOOKS_CLEAR_BINDING_STACK, LANG_HOOKS_PUSHLEVEL,
13494 LANG_HOOKS_POPLEVEL, LANG_HOOKS_SET_BLOCK): Remove.
13495 * objc/objc-lang.c (LANG_HOOKS_CLEAR_BINDING_STACK,
13496 LANG_HOOKS_PUSHLEVEL, LANG_HOOKS_POPLEVEL, LANG_HOOKS_SET_BLOCK):
13499 2004-07-11 Joseph S. Myers <jsm@polyomino.org.uk>
13501 PR tree-optimization/16437
13502 * c-common.c (shorten_compare): Don't mark result of conversion to
13503 narrower signed type as overflowing.
13504 * fold-const.c (decode_field_reference): Determine whether
13505 signedness comes from outer type using precision rather than size.
13507 2004-07-11 Phil Edwards <phil@codesourcery.com>
13509 * configure.ac: Alphabetize --enable-checking list, add
13510 missing valgrind entry.
13511 * configure: Regenerate.
13513 2004-07-11 Phil Edwards <phil@codesourcery.com>
13515 * doc/install.texi (Testing): Fix syntax in "make check" example.
13517 2004-07-10 James E Wilson <wilson@specifixinc.com>
13519 * config/gofast.h (gofast_maybe_init_libfuncs): Use SImode for litodp.
13521 2004-07-10 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
13523 PR rtl-optimization/16001
13524 * loop-iv.c (iv_number_of_iterations): Prevent copy propagation in
13527 2004-07-10 Geoffrey Keating <geoffk@apple.com>
13529 * config/darwin.h (LINK_COMMAND_SPEC): Don't call c++filt.
13531 2004-07-10 Steve Kargl <sgk@troutmask.apl.washington.edu>
13532 James Morrison <phython@gcc.gnu.org>
13534 * doc/contrib.texi (Contributors): Add gfortran contributors and
13535 fix a couple of typos.
13537 2004-07-10 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
13539 PR rtl-optimization/15387
13540 * calls.c (check_sibcall_argument_overlap_1): Handle pointers
13541 to incoming args space correctly.
13543 2004-07-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
13545 * pa.c (output_indirect_call): Only use %r2 as the link register in
13546 indirect calls with the long PA 2.0 pc-relative branch.
13548 2004-07-10 Daniel Jacobowitz <dan@debian.org>
13550 * config/i386/i386.c (override_options): Pick a 64-bit CPU
13551 for the default tuning if TARGET_64BIT.
13553 2004-07-10 Richard Henderson <rth@redhat.com>
13555 * builtins.c (std_gimplify_va_arg_expr): Widen align/boundary
13556 to HOST_WIDE_INT. Fold pad-args-down arithmetic.
13558 2004-07-10 Jakub Jelinek <jakub@redhat.com>
13560 * expr.h (store_bit_field, extract_bit_field): Remove last argument.
13561 * expmed.c (store_bit_field, extract_bit_field): Remove last
13563 * builtins.c (expand_builtin_signbit): Adjust callers.
13564 * optabs.c (expand_vector_binop, expand_vector_unop): Likewise.
13565 * calls.c (store_unaligned_arguments_into_pseudos): Likewise.
13566 * ifcvt.c (noce_emit_move_insn): Likewise.
13567 * stmt.c (expand_return): Likewise.
13568 * expr.c (emit_group_load, emit_group_store, copy_blkmode_from_reg,
13569 store_field, expand_expr_real_1): Likewise.
13571 2004-07-10 Richard Henderson <rth@redhat.com>
13573 * builtins.c (std_gimplify_va_arg_expr): Fix borked BIT_AND_EXPR.
13575 2004-07-09 Mike Stump <mrs@apple.com>
13577 * config/darwin.c (no_dead_strip): Add.
13578 (HAVE_DEAD_STRIP): Add.
13579 (darwin_emit_unwind_label): Ensure that we don't dead code strip
13582 2004-07-09 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
13584 * tree-ssa-loop-im.c: New file.
13585 * Makefile.in (tree-ssa-loop-im.o): Add.
13586 * cfgloop.c (superloop_at_depth): New function.
13587 * cfgloop.h (superloop_at_depth): Declare.
13588 * common.opt (ftree-lim): New flag.
13589 * expr.c (array_ref_up_bound): New function.
13590 * params.def (PARAM_LIM_EXPENSIVE): New parameter.
13591 * timevar.def (TV_LIM): New timevar.
13592 * tree-dfa.c (compute_immediate_uses): Respect TDFA_USE flags when
13593 computing immediate uses of a phi node.
13594 * tree-flow.h (struct tree_ann_common_d): Add aux field.
13595 (loop_commit_inserts, for_each_index, tree_ssa_lim): Declare.
13596 * tree-optimize.c (init_tree_optimization_passes): Add pass_lim.
13597 * tree-pass.h (pass_lim): Declare.
13598 * tree-ssa-loop.c (tree_ssa_loop_im, gate_tree_ssa_loop_im): New
13600 (pass_lim): New pass structure.
13601 * tree-eh.c (tree_could_trap_p): Handle ARRAY_REFs correctly.
13602 * tree.c (in_array_bounds_p): New function.
13603 * tree.h (TREE_THIS_NOTRAP): Define also for ARRAY_REFs.
13604 (in_array_bounds_p, array_ref_up_bound): Declare.
13605 * doc/invoke.texi (-ftree-lim, --param lim-expensive): Document.
13606 * doc/passes.texi (tree-ssa-loop-im.c): Document.
13608 2004-07-09 Richard Henderson <rth@redhat.com>
13610 * builtins.c (expand_builtin_stpcpy): Don't modify len.
13612 * tree-ssa-ccp.c (ccp_fold_builtin): Strip conversion exprs
13615 2004-07-10 Kelley Cook <kcook@gcc.gnu.org>
13617 * flags.h: Delete redundant prototypes that are being generated
13618 in options.h from common.opt.
13619 * common.opt: Add in the expository comments formerly in flags.h.
13621 2004-07-09 Jan Beulich <jbeulich@novell.com>
13623 * config/i386/i386.c (init_cumulative_args): Set mmx/sse registers
13624 available for use only when TARGET_MMX/_SSE is set, and check for
13625 variable argument function if any register count is non-zero.
13626 (function_arg): Correctly suppress repeated warnings for passing SSE
13627 vectors are arguments without SSE enabled.
13628 (ix86_function_arg_boundary): Without SSE enabled, the use of what
13629 would be SSE register modes does no longer influence the alignment.
13631 2004-07-09 Richard Henderson <rth@redhat.com>
13633 * builtins.c (std_gimplify_va_arg_expr): Deny ARGS_GROW_DOWNWARD.
13634 Always align upward to arg boundary. Use size_in_bytes/round_up.
13635 Maintain type-correctness of constants.
13636 * stor-layout.c (round_up, round_down): Special-case powers of 2.
13638 2004-07-09 David S. Miller <davem@nuts.davemloft.net>
13640 * config/sparc/sparc.c (*_costs): Scale instruction costs
13642 (sparc_rtx_costs): Adjust as appropriate.
13644 2004-07-09 Jan Beulich <jbeulich@novell.com>
13646 * config/i386/mm3dnow.h: New.
13647 * config.gcc: Add mm3dnow.h to extra_headers for i?86 and x86-64.
13649 2004-07-09 Richard Henderson <rth@redhat.com>
13651 * simplify-rtx.c (simplify_const_relational_operation): Only
13652 look at bounds of scalar integers.
13654 2004-07-09 Jan Beulich <jbeulich@novell.com>
13656 * config/i386/i386.md (sse2_clflush): Use correct operand for clflush.
13658 2004-07-09 Andrew Pinski <apinski@apple.com>
13660 * objc/objc-act.c (build_module_descriptor): Mark UOBJC_MODULES_decl as
13662 (synth_forward_declarations): Likewise for UOBJC_CLASS_decl and
13663 UOBJC_METACLASS_decl.
13665 2004-07-09 James E Wilson <wilson@specifixinc.com>
13668 * config/ia64/ia64.c (ia64_function_arg): For a single element HFA,
13669 do return a parallel if hfa_mode == XFmode and mode == TImode.
13671 2004-07-09 Jan Beulich <jbeulich@novell.com>
13673 * c-typeck.c (build_unary_op): include VECTOR_TYPE in set of codes
13674 permissible for unary plus.
13676 2004-07-09 Jan Beulich <jbeulich@novell.com>
13678 * builtin-types.def (BT_UINT): Rename from BT_UNSIGNED.
13679 (BT_FN_UINT): Rename from BT_FN_UNSIGNED.
13680 (BT_FN_PTR_UINT): Rename from BT_FN_PTR_UNSIGNED.
13681 (BT_ULONG, BT_ULONGLONG, BT_UINTMAX, BT_FN_INT_UINT, BT_FN_INT_ULONG,
13682 BT_FN_INT_ULONGLONG, BT_FN_INT_INTMAX, BT_FN_INT_UINTMAX): New.
13683 * builtins.def (BUILTIN_CLZxxx, BUILTIN_CTXxxx, BUILTIN_PARITYxxx,
13684 BUILTIN_POPCOUNTxxx): Arguments are unsigned.
13685 (BUILTIN_xxxIMAX): New.
13686 * builtins.c (expand_builtin): Handle BUILT_IN_FFSIMAX,
13687 BUILT_IN_CLZIMAX, BUILT_IN_CTZIMAX, BUILT_IN_POPCOUNIMAX, and
13688 BUILT_IN_PARITYIMAX.
13690 2004-07-09 David S. Miller <davem@nuts.davemloft.net>
13692 * config/sparc/sparc.h (processor_costs): Define.
13693 (sparc_costs): Declare.
13694 * config/sparc/sparc.c (cypress_costs, supersparc_costs,
13695 hypersparc_costs, sparclet_costs, ultrasparc_costs,
13696 ultrasparc3_costs): New.
13697 (sparc_override_options): Set sparc_costs as appropriate.
13698 (sparc_rtx_costs): Use sparc_costs instead of messy
13701 2004-07-09 Steven Bosscher <stevenb@suse.de>
13703 * doc/md.texi (Processor pipeline description): Mention that
13704 the old pipeline description is deprecated.
13706 * config/rs6000/7450.md (automaton ppc7450): Split up, move
13707 mciu_7450 function unit to...
13708 (automaton ppc7450mciu): ...new automaton.
13710 * haifa-sched.c (insert_schedule_bubbles_p): Remove.
13711 (schedule_block): Don't consider inserting bubbles.
13712 (sched_init): Don't initialize DFA bubbles.
13713 * target-def.h (TARGET_SCHED_INIT_DFA_BUBBLES,
13714 TARGET_SCHED_DFA_BUBBLE): Remove.
13715 * target.h (init_dfa_bubbles, dfa_bubble): Remove hooks.
13716 * doc/tm.texi (TARGET_SCHED_INIT_DFA_BUBBLES,
13717 TARGET_SCHED_DFA_BUBBLE): Remove documentation.
13719 * stmt.c (conditional_context): Remove prototype.
13720 * tree.h (conditional_context): Remove.
13721 * tree-cfg.c (pre_insert_on_edge): Remove.
13723 * c-common.h (c_expand_asm_operands): Remove prototype.
13724 * c-typeck.c (c_expand_asm_operands): Remove.
13726 2004-07-09 Jan Beulich <jbeulich@novell.com>
13728 * config/i386/i386.c (classify_argument): Treat V1xx modes the same as
13729 their base modes. CTImode, TCmode, and XCmode must be passed in memory.
13730 TFmode (__float128) must be is an SSE/SSEUP pair. V2SImode, V4HImode,
13731 and V8QI are class SSE. All sufficiently small remaining vector modes
13732 must be passed in one or two integer registers.
13733 (ix86_libcall_value): TFmode must be returned in xmm0, XCmode must be
13734 returned in memory.
13735 (bdesc_2arg, ix86_init_mmx_sse_builtins): __builtin_ia32_pmuludq and
13736 __builtin_ia32_pmuludq128 have non-uniform argument and return types
13737 and must thus be handled explicitly.
13738 * config/i386/i386.md (*movdi_1_rex64): Add cases for moving between
13740 (movv8qi_internal, movv4hi_internal, movv2si_internal,
13741 movv2sf_internal): Permit moving between MMX and XMM registers (since
13742 MMX areguments and return values are passed in XMM registers).
13743 (sse2_umulsidi3): Correct type and mode.
13745 2004-07-09 Richard Henderson <rth@redhat.com>
13747 * tree-cfg.c (dump_cfg_stats): Fix 64-bit format mismatch errors.
13749 2004-07-09 Eric Christopher <echristo@redhat.com>
13751 * config/rs6000/40x.md: Split into two automatons.
13753 2004-07-09 Zack Weinberg <zack@codesourcery.com>
13754 Andrew Pinski <apinski@apple.com>
13756 * c-opts.c (c_common_post_options): Force unit-at-a-time mode
13757 on when we have more than one input file.
13758 (c_common_parse_file): Restore loop over all input files.
13759 Clarify diagnostic for -dy when YYDEBUG wasn't defined.
13761 * c-decl.c (set_type_context): New function.
13762 (pop_scope): Use it to set context of types. When we
13763 encounter a TYPE_DECL, set the context of the attached type too.
13764 (pop_file_scope): Don't call cpp_undef_all here.
13765 (diagnose_mismatched_decls): Do not complain about a second
13766 definition of an 'extern inline' function if it's not in the
13767 same translation unit. Do not complain about inline
13768 declaration after use if the use was in a different
13770 (merge_decls): Don't clobber olddecl's DECL_CONTEXT.
13771 (pushdecl): Do not put DECL_EXTERNAL, !TREE_PUBLIC decls in
13772 the external scope.
13773 (pushdecl_top_level): Likewise.
13774 (grokdeclarator): Clarify what is going on with setting
13775 DECL_EXTERNAL on function types, a little.
13776 (c_write_global_declarations): Don't do anything if
13777 -fsyntax-only or errors have been encountered.
13779 2004-07-09 Zack Weinberg <zack@codesourcery.com>
13781 * vec.c, vec.h (vec_assert_fail): Use unsigned int for LINE argument.
13783 2004-07-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
13786 * pa.c (output_indirect_call): Use %r2 as the link register when
13787 calling $$dyncall with a pc-relative branch.
13789 2004-07-08 Gerald Pfeifer <gerald@pfeifer.com>
13791 * doc/install.texi (Binaries): Mention OpenPKG.
13793 2004-07-09 Diego Novillo <dnovillo@redhat.com>
13795 Fix PR tree-optimization/15555
13796 * tree-dfa.c (dump_variable): If the variable is a pointer
13797 SSA_NAME, also dump its points-to information.
13798 * tree-flow.h (struct ptr_info_def): Add field
13800 (dump_points_to_info_for): Declare.
13801 (debug_points_to_info_for): Declare.
13802 * tree-optimize.c (init_tree_optimization_passes): Add a
13803 second alias analysis pass after DOM2.
13804 Move pass_del_pta to a later spot.
13805 * tree-ssa-alias.c (compute_points_to_and_addr_escape): Do not
13806 create a name tags when we find a dereferenced pointer. Just
13807 mark the pointer dereferenced.
13808 (collect_points_to_info_for): Move code to clear points-to
13809 information to create_name_tags.
13810 (create_name_tags): New function.
13811 (compute_flow_sensitive_aliasing): Call it.
13812 (setup_pointers_and_addressables): Mark type tags for renaming
13813 here instead of ...
13814 (create_memory_tag): ... here.
13815 (merge_pointed_to_info): Do not merge PT_MALLOC attributes.
13816 (dump_points_to_info_for): Declare extern.
13817 (debug_points_to_info_for): New function.
13819 2004-07-09 Paolo Bonzini <bonzini@gnu.org>
13821 * config/arc/arc.md: Switch to DFA-based scheduler description.
13822 * config/arc/arc.c: Switch to DFA-based scheduler description.
13824 2004-07-09 Richard Earnshaw <rearnsha@arm.com>
13826 * arm/unknown-elf.h (TARGET_DEFAULT): Don't require an APCS frame
13829 2004-07-09 Richard Henderson <rth@redhat.com>
13831 * config/xtensa/xtensa-protos.h (xtensa_va_arg): Remove.
13832 * config/xtensa/xtensa.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
13833 (xtensa_gimplify_va_arg_expr): Rewrite from xtensa_va_arg.
13834 * config/xtensa/xtensa.h (EXPAND_BUILTIN_VA_ARG): Remove.
13836 * config/v850/v850-protos.h (v850_va_arg): Remove.
13837 * config/v850/v850.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
13838 (v850_gimplify_va_arg_expr): Rewrite from v850_va_arg.
13839 * config/v850/v850.h (EXPAND_BUILTIN_VA_ARG): Remove.
13840 (FUNCTION_ARG_PASS_BY_REFERENCE): Handle variable size types.
13841 (FUNCTION_ARG_CALLEE_COPIES): Use FUNCTION_ARG_PASS_BY_REFERENCE.
13843 2004-07-09 Richard Earnshaw <rearnsha@arm.com>
13846 * arm.c (arm_legitimate_index_p) Allow DFmode for soft-float
13847 and DImode to use +/-4k offset.
13849 2004-07-09 Richard Henderson <rth@redhat.com>
13851 * config/stormy16/stormy16-protos.h (xstormy16_expand_builtin_va_arg):
13853 * config/stormy16/stormy16.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
13854 (xstormy16_gimplify_va_arg_expr): Rewrite from
13855 xstormy16_expand_builtin_va_arg.
13856 * config/stormy16/stormy16.h (EXPAND_BUILTIN_VA_ARG): Remove.
13858 * config/sparc/sparc-protos.h (sparc_va_arg): Remove.
13859 * config/sparc/sparc.c (sparc_gimplify_va_arg): Mark static.
13861 * config/sh/sh-protos.h (sh_va_arg): Remove.
13862 * config/sh/sh.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
13863 (sh_gimplify_va_arg_expr): Rewrite from sh_va_arg.
13864 * config/sh/sh.h (EXPAND_BUILTIN_VA_ARG): Remove.
13866 * config/pa/pa-protos.h (hppa_va_arg): Remove.
13867 * config/pa/pa.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
13868 (hppa_gimplify_va_arg_expr): Rewrite from hppa_va_arg.
13869 * config/pa/pa.h (EXPAND_BUILTIN_VA_ARG): Remove.
13871 * config/mn10300/mn10300-protos.h (mn10300_va_arg): Remove.
13872 * config/mn10300/mn10300.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
13873 (mn10300_gimplify_va_arg_expr): Rewrite from mn10300_va_arg.
13874 * config/mn10300/mn10300.h (EXPAND_BUILTIN_VA_ARG): Remove.
13876 2004-07-09 Eric Botcazou <ebotcazou@libertysurf.fr>
13878 * config/sparc/sparc.md (return): Rewrite length formula.
13879 * config/sparc/sparc.c (output_return): Pass 1 as 5th
13880 argument to final_scan_insn when in a delay slot.
13881 (output_sibcall): Likewise.
13883 2004-07-09 Richard Earnshaw <rearnsha@arm.com>
13885 * arm.c (arm_cpp_interwork): New variable.
13886 (arm_override_options): Set it if TARGET_INTERWORK was on the command
13888 * arm.h (arm_cpp_interwork): Declare it.
13889 (TARGET_CPU_CPP_BUILTINS): Use it to control definition of
13890 __THUMB_INTERWORK__ in the preprocessor.
13892 2004-07-09 Nathan Sidwell <nathan@codesourcery.com>
13894 * vec.h (VEC_T_alloc): Fix MEM_STAT_DECL pasto.
13896 2004-07-09 Eric Botcazou <ebotcazou@libertysurf.fr>
13899 * config/sparc/sol2-bi.h (OPTION_DEFAULT_SPECS): New macro.
13900 Override default settings to account for -m32 and -m64.
13902 2004-07-08 Randolph Chung <tausq@debian.org>
13904 * pa32-linux.h (MD_FALLBACK_FRAME_STATE_FOR): Define.
13906 2004-07-09 Alexandre Oliva <aoliva@redhat.com>
13908 * builtins.c (fold_builtin_strncpy): Make sure len is a constant
13909 before comparing it as such.
13911 2004-07-08 Richard Henderson <rth@redhat.com>
13913 * builtins.c (std_gimplify_va_arg_expr): Hoist valist into a
13914 temporary. Use bit arithmetic to align.
13916 2004-07-08 Jerry Quinn <jlquinn@optonline.net>
13918 * alias.c (nonlocal_mentioned_p, nonlocal_referenced_p,
13919 nonlocal_set_p, init_alias_analysis): Use, LABEL_P, JUMP_P, CALL_P,
13920 NONJUMP_INSN_P, INSN_P, NOTE_P, BARRIER_P.
13921 * bb-reorder.c (mark_bb_for_unlikely_executed_section,
13922 add_labels_and_missing_jumps, find_jump_block,
13923 fix_crossing_unconditional_branches, add_reg_crossing_jump_notes):
13925 * bt-load.c (btr_referenced_p, compute_defs_uses_and_gen,
13926 link_btr_uses, move_btr_def): Likewise.
13927 * builtins.c (expand_builtin_longjmp, expand_builtin_nonlocal_goto,
13928 expand_builtin_expect_jump): Likewise.
13929 * caller-save.c (save_call_clobbered_regs, insert_one_insn): Likewise.
13930 * calls.c (expand_call, emit_library_call_value_1): Likewise.
13931 * cfganal.c (forwarder_block_p): Likewise.
13932 * cfgbuild.c (inside_basic_block_p, count_basic_blocks,
13933 make_label_edge, rtl_make_eh_edge, make_edges, find_basic_blocks_1,
13934 find_bb_boundaries): Likewise.
13935 * cfgcleanup.c (try_simplify_condjump, try_forward_edges,
13936 merge_blocks_move_predecessor_nojumps,
13937 merge_blocks_move_successor_nojumps, insns_match_p,
13938 flow_find_cross_jump, outgoing_edges_match, try_crossjump_to_edge,
13939 try_optimize_cfg): Likewise.
13940 * cfgexpand.c (expand_block, construct_exit_block): Likewise.
13941 * cfglayout.c (skip_insns_after_block, label_for_bb,
13942 record_effective_endpoints, insn_locators_initialize,
13943 fixup_reorder_chain, update_unlikely_executed_notes): Likewise.
13944 * cfgmainloop.c (create_loop_notes): Likewise.
13945 * cfgrtl.c (delete_insn, delete_insn_chain,
13946 create_basic_block_structure, rtl_delete_block, free_bb_for_insn,
13947 update_bb_for_insn, rtl_merge_blocks, rtl_can_merge_blocks,
13948 block_label, try_redirect_by_replacing_jump, last_loop_beg_note,
13949 redirect_branch_edge, force_nonfallthru_and_redirect,
13950 rtl_tidy_fallthru_edge, back_edge_of_syntactic_loop_p,
13951 rtl_split_edge, commit_one_edge_insertion, print_rtl_with_bb,
13952 update_br_prob_note, rtl_verify_flow_info_1, rtl_verify_flow_info,
13953 purge_dead_edges, cfg_layout_redirect_edge_and_branch,
13954 cfg_layout_delete_block, cfg_layout_can_merge_blocks_p,
13955 cfg_layout_merge_blocks, rtl_block_ends_with_call_p,
13956 need_fake_edge_p, rtl_flow_call_edges_add): Likewise.
13957 * combine.c (combine_instructions, can_combine_p, try_combine,
13958 find_split_point, record_dead_and_set_regs, reg_dead_at_p,
13959 distribute_notes, distribute_links, insn_cuid): Likewise.
13960 * cse.c (fold_rtx, cse_insn, cse_around_loop,
13961 invalidate_skipped_block, cse_set_around_loop,
13962 cse_end_of_basic_block, cse_main, cse_basic_block,
13963 cse_condition_code_reg): Likewise.
13964 * cselib.c (cselib_process_insn): Likewise.
13965 * ddg.c (create_ddg): Likewise.
13966 * df.c (df_insn_refs_record, df_bb_rd_local_compute, df_insns_modify):
13968 * dwarf2out.c (dwarf2out_stack_adjust, dwarf2out_frame_debug,
13969 gen_label_die, dwarf2out_var_location): Likewise.
13970 * emit-rtl.c (get_first_nonnote_insn, get_last_nonnote_insn,
13971 next_insn, previous_insn, next_nonnote_insn, prev_nonnote_insn,
13972 last_call_insn, active_insn_p, next_label, prev_label,
13973 link_cc0_insns, next_cc0_user, try_split, add_insn_after,
13974 add_insn_before, remove_insn, add_function_usage_to,
13975 reorder_insns, find_line_note, remove_unnecessary_notes,
13976 emit_insn_after_1, classify_insn): Likewise.
13977 * except.c (convert_from_eh_region_ranges_1, emit_to_new_bb_before,
13978 connect_post_landing_pads, sjlj_mark_call_sites,
13979 sjlj_emit_function_enter, sjlj_emit_function_exit, reachable_handlers,
13980 can_throw_internal, can_throw_external, set_nothrow_function_flags,
13981 convert_to_eh_region_ranges): Likewise.
13982 * explow.c (optimize_save_area_alloca): Likewise.
13983 * expr.c (expand_expr_real): Likewise.
13984 * final.c (insn_current_reference_address, compute_alignments,
13985 shorten_branches, final, scan_ahead_for_unlikely_executed_note,
13986 final_scan_insn, output_asm_label, leaf_function_p): Likewise.
13987 * flow.c (first_insn_after_basic_block_note, delete_dead_jumptables,
13988 propagate_block_delete_insn, propagate_one_insn,
13989 init_propagate_block_info, propagate_block, libcall_dead_p,
13990 mark_set_1, attempt_auto_inc, find_auto_inc, try_pre_increment):
13992 * function.c (instantiate_virtual_regs, reorder_blocks_1,
13993 expand_function_start, expand_function_end, contains,
13994 thread_prologue_and_epilogue_insns,
13995 reposition_prologue_and_epilogue_notes): Likewise.
13996 * gcse.c (constprop_register, bypass_conditional_jumps,
13997 insert_insn_end_bb, gcse_after_reload): Likewise.
13998 * genemit.c (gen_expand, gen_split): Likewise.
13999 * genpeep.c (gen_peephole, main): Likewise.
14000 * global.c (build_insn_chain): Likewise.
14001 * graph.c (node_data, print_rtl_graph_with_bb): Likewise.
14002 * haifa-sched.c (unlink_other_notes, unlink_line_notes,
14003 get_block_head_tail, no_real_insns_p, rm_line_notes, save_line_notes,
14004 restore_line_notes, rm_redundant_line_notes, rm_other_notes,
14005 ok_for_early_queue_removal, set_priorities, sched_init): Likewise.
14006 * ifcvt.c (count_bb_insns, first_active_insn, last_active_insn,
14007 cond_exec_process_insns, end_ifcvt_sequence, noce_process_if_block,
14008 merge_if_block, block_jumps_and_fallthru_p, find_if_block,
14009 dead_or_predicable): Likewise.
14010 * integrate.c (try_constants): Likewise.
14011 * jump.c (rebuild_jump_labels, cleanup_barriers,
14012 purge_line_number_notes, init_label_info, mark_all_labels,
14013 squeeze_notes, get_label_before, get_label_after,
14014 reversed_comparison_code_parts, simplejump_p, pc_set,
14015 returnjump_p, onlyjump_p, follow_jumps, mark_jump_label,
14016 delete_barrier, delete_prior_computation, delete_computation,
14017 delete_related_insns, delete_for_peephole, redirect_jump):
14019 * lcm.c (optimize_mode_switching): Likewise.
14020 * local-alloc.c (validate_equiv_mem, update_equiv_regs, block_alloc):
14022 * loop-doloop.c (doloop_valid_p, doloop_optimize): Likewise.
14023 * loop-invariant.c (find_exits, find_invariants_bb): Likewise.
14024 * loop-iv.c (simplify_using_assignment): Likewise.
14025 * loop.c (compute_luids, loop_optimize, scan_loop, libcall_other_reg,
14026 libcall_benefit, skip_consec_insns, move_movables, prescan_loop,
14027 find_and_verify_loops, labels_in_range_p, for_each_insn_in_loop,
14028 loop_bivs_init_find, strength_reduce, check_insn_for_bivs,
14029 check_insn_for_givs, check_final_value, update_giv_derive,
14030 basic_induction_var, product_cheap_p, check_dbra_loop,
14031 loop_insn_first_p, last_use_this_basic_block,
14032 canonicalize_condition, get_condition, loop_regs_scan, load_mems,
14033 try_copy_prop, LOOP_BLOCK_NUM, loop_dump_aux): Likewise.
14034 * modulo-sched.c (doloop_register_get, find_line_note, sms_schedule,
14035 sms_schedule_by_order): Likewise.
14036 * optabs.c (emit_no_conflict_block, emit_libcall_block): Likewise.
14037 * postreload.c (reload_cse_simplify_operands, reload_combine,
14038 reload_cse_move2add): Likewise.
14039 * predict.c (can_predict_insn_p, estimate_probability,
14040 expected_value_to_br_prob, process_note_predictions): Likewise.
14041 * print-rtl.c (print_rtx, print_rtl, print_rtl_single): Likewise.
14042 * profile.c (branch_prob): Likewise.
14043 * ra-build.c (live_out_1, livethrough_conflicts_bb,
14044 detect_webs_set_in_cond_jump): Likewise.
14045 * ra-debug.c (ra_print_rtx_object, ra_debug_insns,
14046 ra_print_rtl_with_bb): Likewise.
14047 * ra-rewrite.c (insert_stores, rewrite_program2): Likewise.
14048 * recog.c (next_insn_tests_no_inequality, find_single_use,
14049 split_all_insns, peephole2_optimize, if_test_bypass_p): Likewise.
14050 * reg-stack.c (next_flags_user, record_label_references,
14051 emit_swap_insn, swap_rtx_condition, subst_stack_regs,
14052 compensate_edge, convert_regs_1): Likewise.
14053 * regclass.c (scan_one_insn): Likewise.
14054 * regmove.c (optimize_reg_copy_1, optimize_reg_copy_2, fixup_match_2,
14055 regmove_optimize, fixup_match_1, single_set_for_csa,
14056 combine_stack_adjustments_for_block): Likewise.
14057 * regrename.c (build_def_use, copyprop_hardreg_forward_1): Likewise.
14058 * reload.c (find_reloads, find_reloads_address_1, subst_reloads,
14059 find_equiv_reg): Likewise.
14060 * reload1.c (reload, calculate_needs_all_insns, set_label_offsets,
14061 reload_as_needed, emit_input_reload_insns, do_output_reload,
14062 delete_output_reload, delete_address_reloads_1, fixup_abnormal_edges):
14064 * reorg.c (find_end_label, emit_delay_sequence,
14065 delete_from_delay_slot, delete_scheduled_jump, optimize_skip,
14066 get_jump_flags, rare_destination, mostly_true_jump,
14067 try_merge_delay_insns, redundant_insn, own_thread_p,
14068 fill_simple_delay_slots, fill_slots_from_thread,
14069 fill_eager_delay_slots, relax_delay_slots, make_return_insns,
14070 dbr_schedule): Likewise.
14071 * resource.c (find_basic_block, next_insn_no_annul,
14072 find_dead_or_set_registers, mark_target_live_regs): Likewise.
14073 * rtl.h (RTX_PREV): Likewise.
14074 * rtlanal.c (global_reg_mentioned_p, no_labels_between_p,
14075 no_jumps_between_p, reg_used_between_p, reg_referenced_between_p,
14076 reg_set_p, find_last_value, dead_or_set_regno_p, find_reg_fusage,
14077 find_regno_fusage, pure_call_p, replace_label, rtx_referenced_p_1,
14078 tablejump_p, computed_jump_p, insns_safe_to_move_p,
14079 find_first_parameter_load, can_hoist_insn_p): Likewise.
14080 * sched-deps.c (get_condition, add_dependence, sched_analyze_2,
14081 sched_analyze_insn, sched_analyze, add_forward_dependence): Likewise.
14082 * sched-ebb.c (fix_basic_block_boundaries, add_deps_for_risky_insns,
14083 schedule_ebbs): Likewise.
14084 * sched-rgn.c (is_cfg_nonregular, find_conditional_protection,
14085 is_conditionally_protected, can_schedule_ready_p,
14086 add_branch_dependences, debug_dependencies): Likewise.
14087 * stmt.c (emit_nop, expand_start_case, emit_jump_if_reachable):
14089 * unroll.c (unroll_loop, copy_loop_body, back_branch_in_range_p,
14090 reg_dead_after_loop, loop_find_equiv_value, loop_iterations,
14091 set_dominates_use, ujump_to_loop_cont): Likewise.
14092 * var-tracking.c (prologue_stack_adjust, vt_initialize): Likewise.
14093 * varasm.c (output_constant_pool_1): Likewise.
14095 2004-07-08 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
14097 * tree-scalar-evolution.c: New file.
14098 * tree-scalar-evolution.h: New file.
14099 * tree-ssa-loop-niter.c: New file.
14100 * Makefile.in (SCEV_H): New.
14101 (tree-scalar-evolution.o, tree-ssa-loop-niter.o): Add new files.
14102 * cfgloop.h (struct loop): Add bounds field.
14103 * tree-flow.h (struct tree_niter_desc): New type.
14104 (number_of_iterations_cond, number_of_iterations_exit,
14105 loop_niter_by_eval, find_loop_niter_by_eval,
14106 estimate_numbers_of_iterations, can_count_iv_in_wider_type,
14107 free_numbers_of_iterations_estimates): Declare.
14108 * tree.h (lower_bound_in_type, upper_bound_in_type): Declare.
14109 * params.def (PARAM_MAX_ITERATIONS_TO_TRACK): New parameter.
14110 * doc/invoke.texi (max-iterations-to-track): Document.
14112 2004-07-08 Kaz Kojima <kkojima@gcc.gnu.org>
14114 * config/sh/sh.c (sh_va_arg): Initinalize lab_over.
14115 * config/sh/sh.h (CONST_OK_FOR_J16): Use parentheses.
14116 (MODE_AFTER): Add cast appropriately.
14117 * config/sh/sh.md (movdi splitter): Likewise.
14118 (casesi_worker_2): Add const qualifier appropriately.
14119 (eh_return): Remove unused variable.
14120 (insv): Initialize v;
14122 2004-07-08 Richard Henderson <rth@redhat.com>
14124 * config/mmix/mmix-protos.h (mmix_expand_builtin_va_arg): Remove.
14125 * config/mmix/mmix.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14126 (mmix_gimplify_va_arg_expr): Rewrite from mmix_expand_builtin_va_arg.
14127 * config/mmix/mmix.h (EXPAND_BUILTIN_VA_ARG): Remove.
14128 (FRAME_POINTER_REQUIRED): Use current_function_has_nonlocal_label.
14130 * config/m32r/m32r-protos.h (m32r_va_arg): Remove.
14131 * config/m32r/m32r.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14132 (m32r_gimplify_va_arg_expr): Rewrite from m32r_va_arg.
14133 * config/m32r/m32r.h (EXPAND_BUILTIN_VA_ARG): Remove.
14135 * config/iq2000/iq2000-protos.h (iq2000_va_arg): Remove.
14136 * config/iq2000/iq2000.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14137 (iq2000_gimplify_va_arg_expr): Rewrite from iq2000_va_arg.
14138 * config/iq2000/iq2000.h (EXPAND_BUILTIN_VA_ARG): Remove.
14140 * config/frv/frv-protos.h (frv_expand_builtin_va_arg): Remove.
14141 * config/frv/frv.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14142 (frv_gimplify_va_arg_expr): Rewrite from frv_expand_builtin_va_arg.
14143 * config/frv/frv.h (EXPAND_BUILTIN_VA_ARG): Remove.
14145 * config/i860/i860-protos.h (i860_va_arg): Remove.
14146 * config/i860/i860.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14147 (i860_gimplify_va_arg_expr): Rewrite from i860_va_arg.
14148 * config/i860/i860.h (EXPAND_BUILTIN_VA_ARG): Remove.
14150 2004-05-31 Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
14152 * system.h: Prototype getpagesize if missing.
14153 * configure.ac: Add getpagesize to gcc_AC_CHECK_DECLS.
14154 * configure: Regenerate.
14155 * config.in: Regenerate.
14157 2004-07-08 Richard Henderson <rth@redhat.com>
14159 * config/fr30/fr30-protos.h (fr30_va_arg): Remove.
14160 * config/fr30/fr30.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14161 (fr30_gimplify_va_arg_expr): New.
14162 (fr30_pass_by_reference, fr30_pass_by_value, fr30_va_arg): Remove.
14163 * config/fr30/fr30.h (EXPAND_BUILTIN_VA_ARG): Remove.
14165 2004-07-08 Vladimir Makarov <vmakarov@redhat.com>
14168 * config/ia64/ia64.c (ia64_dfa_new_cycle): Fix typo in comparison
14169 of asm_noperands result.
14171 2004-07-08 Richard Henderson <rth@redhat.com>
14173 * config/cris/cris-protos.h (cris_expand_builtin_va_arg): Remove.
14174 * config/cris/cris.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14175 (cris_gimplify_va_arg_expr): Rewrite from cris_expand_builtin_va_arg.
14176 * config/cris/cris.h (EXPAND_BUILTIN_VA_ARG): Remove.
14178 2004-07-08 Richard Henderson <rth@redhat.com>
14180 * builtins.c (ind_gimplify_va_arg_expr): New.
14181 * tree.h (ind_gimplify_va_arg_expr): Declare.
14182 * config/arc/arc.c (arc_gimplify_va_arg_expr): Use it.
14184 2004-07-08 Jan Beulich <jbeulich@novell.com>
14186 * expmed.c (extract_bit_field): Correct condition to use vec_extract
14187 patterns also on vector elements other than the first one.
14188 * config/i386/i386.md (vec_extractv2df, vec_extractv4sf): Add missing
14191 2004-07-08 Geoffrey Keating <geoffk@apple.com>
14193 * config/rs6000/darwin-ldouble.c: Correct reference
14194 to the Linnainmaa paper.
14196 2004-07-08 Richard Henderson <rth@redhat.com>
14198 * config/arc/arc-protos.h (arc_va_arg): Remove.
14199 * config/arc/arc.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14200 (arc_gimplify_va_arg_expr): Rewrite from arc_va_arg.
14201 * config/arc/arc.h (EXPAND_BUILTIN_VA_ARG): Remove.
14203 * config/c4x/c4x-protos.h (c4x_va_arg): Remove.
14204 * config/c4x/c4x.c (TARGET_GIMPLIFY_VA_ARG_EXPR): New.
14205 (c4x_gimplify_va_arg_expr): Rewrite from c4x_va_arg.
14206 * config/c4x/c4x.h (EXPAND_BUILTIN_VA_ARG): Remove.
14208 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
14210 * pa.md (prefetch_32, prefetch_64): Simplify constraint checks.
14212 2004-07-08 Zack Weinberg <zack@codesourcery.com>
14214 * c-decl.c (static_ctors, static_dtors): Make static.
14215 (pop_file_scope): Call c_common_write_pch and
14216 cgraph_finalize_compilation_unit here.
14217 (build_cdtor): Moved here from c-objc-common.c; simplify.
14218 (c_write_global_declarations_1): Clarify comment.
14219 (c_write_global_declarations): Close the external scope before
14220 doing anything else. Call build_cdtor, cgraph_optimize, and
14221 mudflap_finish_file here.
14222 * c-lang.c (finish_file): Don't call c_objc_common_finish_file.
14224 * c-objc-common.c: No need to include cgraph.h.
14225 (build_cdtor): Moved to c-decl.c.
14226 (c_objc_common_finish_file): Delete.
14227 * c-tree.h: Update to match.
14228 * objc/objc-act.c (finish_file): Don't call c_objc_common_finish_file.
14229 (generate_static_references): Set TREE_USED before calling finish_decl.
14230 Eliminate unnecessary dummy declaration. Call rest_of_decl_compilation
14231 on the static_instances_decl.
14233 2004-07-08 Zack Weinberg <zack@codesourcery.com>
14235 * c-decl.c (pop_scope): Do not set DECL_CONTEXT on file-scope
14236 decls when there is only one input translation unit.
14237 * langhooks.c (lhd_set_decl_assembler_name): Partially revert
14238 change of 2004-07-05; do not treat declarations with
14239 DECL_CONTEXT a TRANSLATION_UNIT_DECL specially.
14240 * opts.c (cur_in_fname): Delete.
14241 * opts.h: Likewise.
14242 * tree.c: Revert changes of 2004-07-05; no special treatment
14243 for TRANSLATION_UNIT_DECLs.
14244 * Makefile.in (tree.o): Update dependencies.
14246 2004-07-08 Roger Sayle <roger@eyesopen.com>
14248 * builtins.c (fold_builtin_strcpy): Merge functionality from
14249 simplify_builtin_strcpy. Add additional len argument. No longer
14250 static. Remove function prototype.
14251 (fold_builtin_strncpy): Likewise integrate functionality from
14252 simplify_builtin_strncpy. Add additional slen argument. No
14253 longer static. Remove function prototype.
14254 (simplify_builtin_strcy, simplify_builtin_strncpy): Delete.
14255 (simplify_builtin_fputs): Rename to fold_builtin_fputs. Change
14256 types of "ignore" and "unlocked" parameters to bool.
14257 (fold_builtin_1): Add additional ignore argument. Call renamed
14258 fold_builtin_fputs to simplify GCC "fputs" and "fputs_unlocked"
14259 builtins. Update arguments to fold_builtin_strncpy and
14260 fold_builtin_strcpy. Add function prototype.
14261 (fold_builtin): Add additional Boolean ignore argument to pass
14263 (simplify_builtin): Call fold_builtin_fputs, fold_builtin_strcpy
14264 and fold_builtin_strncpy instead of simplify_builtin_fputs,
14265 simplify_builtin_strcpy and simplify_builtin_strncpy respectively.
14267 * expr.h (simplify_builtin_fputs, simplify_builtin_strcpy,
14268 simplify_builtin_strncpy): Delete function prototypes.
14269 * tree.h (fold_builtin_fputs, fold_builtin_strcpy,
14270 fold_builtin_strncpy): Add function prototypes here.
14271 (fold_builtin): Update function prototype with new "bool ignore".
14273 * tree-ssa-ccp.c (ccp_fold): Update call to fold_builtin.
14274 (ccp_fold_builtin): Update call to fold_builtin. Call
14275 fold_builtin_fputs, fold_builtin_strcpy and fold_builtin_strncpy
14276 instead of simplify_builtin_fputs, simplify_builtin_strcpy and
14277 simplify_builtin_strncpy respectively.
14278 * fold-const.c (fold): Update call to fold_builtin.
14280 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
14282 * builtins.c (expand_builtin_stpcpy): Un-simplify decay of stpcpy
14285 * expr.h (FUNCTION_ARG_PARTIAL_NREGS): Default to 0.
14286 (FUNCTION_ARG_PASS_BY_REFERENCE): Likewise.
14287 (FUNCTION_ARG_CALLEE_COPIES): Likewise.
14288 * calls.c: Remove ifdefs of macros above.
14289 * functions.c: Likewise.
14290 * expr.c: Likewise.
14292 2004-07-08 Eric Botcazou <ebotcazou@libertysurf.fr>
14294 * config/sparc/sparc.md (UNSPECV_GOTO_V9): Delete.
14295 (arch attribute): Delete.
14296 (current_function_calls_alloca attribute): Rename into calls_alloca.
14297 (calls_eh_return): New attribute.
14298 (leaf_function): Likewise.
14299 (length attribute): Fix formula for sibcalls.
14300 (return insn): Correctly compute the 'length' attribute.
14301 (do_builtin_setjmp_setup): Adjust use of current_function_calls_alloca.
14303 2004-07-08 Richard Henderson <rth@redhat.com>
14305 * tree-cfg.c (make_exit_edges): Use get_call_expr_in.
14306 (remove_useless_stmts_1, is_ctrl_altering_stmt): Likewise.
14307 (tree_block_ends_with_call_p, need_fake_edge_p): Likewise.
14308 * tree-eh.c (lower_eh_constructs_1): Likewise.
14309 * tree-sra.c (sra_walk_modify_expr): Likewise.
14310 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
14311 (eliminate_unnecessary_stmts): Likewise.
14312 * tree-ssa-dse.c (dse_optimize_stmt): Likewise.
14313 * tree-tailcall.c (optimize_tail_call): Likewise.
14314 * tree-ssa-ccp.c (get_rhs, set_rhs): Reorg to use switch.
14316 2004-07-08 Paolo Bonzini <bonzini@gnu.org>
14317 Jakub Jelinek <jakub@redhat.com>
14319 * config/i386/i386.c (override_options): Enable
14320 SSE prefetches with -mtune, as long as we are
14321 compiling for i686 or higher. All i686 processors
14322 accept SSE prefetches as NOPS, some i586's don't.
14324 2004-07-08 Eric Botcazou <ebotcazou@libertysurf.fr>
14327 * config/sparc/sparc.md (update_return): Honor flag_delayed_branch.
14329 2004-07-08 Diego Novillo <dnovillo@redhat.com>
14331 * tree-ssa-operands.c (get_asm_expr_operands): Fix thinkos in
14332 the handling of clobbering ASM_EXPRs.
14334 2004-07-08 Eric Botcazou <ebotcazou@libertysurf.fr>
14337 * config/sparc/sparc.c (function_value): In 64-bit mode,
14338 return the aggregates larger than 16 bytes like unions.
14340 2004-07-08 Eric Botcazou <ebotcazou@libertysurf.fr>
14343 * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): When
14344 'temp' is zero, generate new pseudos as needed and emit the
14345 sequence of insns in single-assignment form. Resync comments
14347 (sparc_emit_set_const64): Pass zero as 'temp' argument to above
14348 function before reload.
14350 2004-07-08 Nathan Sidwell <nathan@codesourcery.com>
14352 * vec.c (vec_assert_fail): Remove duplicate 'function'.
14354 * vec.c (vec_p_reserve, vec_o_reserve): Allocation is signed.
14356 * vec.h (VEC_alloc, VEC_embedded_size, VEC_embedded_init):
14357 Allocation is signed.
14358 (VEC_reserve): Return flag, allocation is signed.
14360 2004-07-08 Richard Henderson <rth@redhat.com>
14362 * tree-ssa-ccp.c (fold_stmt): Get type directly from
14363 OBJ_TYPE_REF_OBJECT.
14365 2004-07-08 Joseph S. Myers <jsm@polyomino.org.uk>
14366 Neil Booth <neil@daikokuya.co.uk>
14370 * c-decl.c (finish_struct): Ensure bit-fields are given the
14372 * c-common.c (c_common_signed_or_unsigned_type): For C, require
14373 the precision to match as well as the mode.
14374 * expr.c (reduce_to_bit_field_precision): New function.
14375 (expand_expr_real_1): Reduce expressions of bit-field type to
14377 * langhooks.h (reduce_bit_field_operations): New hook.
14378 * langhooks-def.h (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS):
14380 * c-lang.c, objc/objc-lang.c
14381 (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS): Define.
14382 * objc/objc-act.c (check_ivars): Convert types to bit-field types
14384 * tree.c (build_nonstandard_integer_type): New function.
14385 * tree.h (build_nonstandard_integer_type): New prototype.
14386 * tree-ssa.c (tree_ssa_useless_type_conversion_1): Don't treat
14387 conversions between integer and boolean types as useless.
14389 2004-07-08 Paolo Bonzini <bonzini@gnu.org>
14391 * c-common.c (c_common_nodes_and_builtins): Do not
14392 create __builtin_ptrdiff_t and __builtin_size_t.
14394 2004-07-08 Andrew Pinski <apinski@apple.com>
14396 * Makefile.in (libbackend.o): Add -combine to the gcc
14399 2004-07-08 Nick Clifton <nickc@redhat.com>
14401 * config/stormy16/t-stormy16 (TARGET_LIBGCC2_CFLAGS): Define.
14404 2004-07-08 Richard Henderson <rth@redhat.com>
14406 * except.c (expand_eh_region_start, expand_eh_region_end,
14407 expand_eh_handler, expand_eh_region_end_cleanup,
14408 expand_start_all_catch, expand_start_catch, expand_end_catch,
14409 expand_end_all_catch, expand_eh_region_end_allowed,
14410 expand_eh_region_end_must_not_throw, expand_eh_region_end_throw,
14411 expand_eh_region_end_fixup): Remove.
14412 * stmt.c (struct nesting): Remove stack_level, innermost_stack_block,
14413 cleanups, outer_cleanups, label_chain, exception_region.
14414 (struct goto_fixup): Remove stack_level, cleanup_list_list.
14415 (struct label_chain): Remove.
14416 (struct stmt_status): Remove x_stack_block_stack.
14417 (stack_block_stack, expand_goto_internal, expand_fixup, expand_fixups,
14418 fixup_gotos, save_stack_pointer, expand_decl_cleanup,
14419 expand_decl_cleanup_eh, expand_cleanups, start_cleanup_deferral,
14420 end_cleanup_deferral, last_cleanup_this_contour,
14421 containing_blocks_have_cleanups_or_stack_level,
14422 any_pending_cleanups): Remove.
14423 (expand_null_return_1): Take no arguments.
14424 (expand_label, expand_naked_return, expand_return,
14425 expand_start_bindings_and_block, expand_end_bindings, expand_decl,
14426 expand_anon_union_decl, expand_start_case, pushcase, pushcase_range,
14427 expand_end_case_type): Don't use any of them.
14428 * calls.c (expand_call): Likewise.
14429 * dojump.c (do_jump): Likewise.
14430 * function.c (expand_function_end): Likewise.
14431 * expr.c (store_expr, expand_expr_real_1): Likewise.
14432 (safe_from_p): Don't handle WITH_CLEANUP_EXPR, CLEANUP_POINT_EXPR.
14433 (expand_expr_real_1): Don't handle WITH_CLEANUP_EXPR,
14434 CLEANUP_POINT_EXPR, TARGET_EXPR, TRY_CATCH_EXPR, CATCH_EXPR,
14435 EH_FILTER_EXPR, TRY_FINALLY_EXPR, GOTO_SUBROUTINE_EXPR.
14436 * fold-const.c (fold_checksum_tree): Use first_rtl_op.
14437 * gengtype.c (adjust_field_tree_exp): Remove rtl op handling.
14438 * gimplify.c (gimplify_cleanup_point_expr): Renumber operands
14439 for WITH_CLEANUP_EXPR.
14440 (gimple_push_cleanup): Likewise.
14441 * integrate.c (copy_decl_for_inlining): Don't DECL_TOO_LATE.
14442 * print-tree.c (print_node): Likewise.
14443 * tree-pretty-print.c (dump_generic_node): Remove GOTO_SUBROUTINE_EXPR.
14444 * tree.c (first_rtl_op): Always just TREE_CODE_LENGTH.
14445 (has_cleanups): Remove GOTO_SUBROUTINE_EXPR.
14446 * tree.def (WITH_CLEANUP_EXPR): Remove op1 and op2.
14447 (GOTO_SUBROUTINE_EXPR): Remove.
14448 * tree.h (WITH_CLEANUP_EXPR_RTL): Remove.
14449 (DECL_TOO_LATE): Remove.
14450 * except.h, tree.h: Update decls.
14452 2004-07-08 Paolo Bonzini <bonzini@gnu.org>
14454 * explow.c (optimize_save_area_alloca): Do not accept parameters.
14455 * passes.c (rest_of_handle_final): Handle symout.
14456 (rest_of_handle_new_regalloc, rest_of_handle_old_regalloc):
14458 (rest_of_handle_sched): Break out SMS. Remove ifs for
14459 flag_schedule_insns and flag_modulo_sched.
14460 (rest_of_handle_addressof, rest_of_handle_cse2): Garbage
14461 collect at the end.
14462 (rest_of_handle_gcse2): Put under timevar TV_RELOAD_CSE_REGS.
14463 (rest_of_handle_partition_blocks, rest_of_handle_sms,
14464 rest_of_handle_if_after_reload, rest_of_handle_peephole2,
14465 rest_of_handle_mode_switching, rest_of_handle_jump,
14466 rest_of_handle_guess_branch_prob, rest_of_handle_eh,
14467 rest_of_handle_jump2, rest_of_handle_postreload,
14468 rest_of_handle_flow2, rest_of_clean_state,
14469 rest_of_handle_shorten_branches,
14470 rest_of_handle_prologue_epilogue,
14471 rest_of_handle_branch_target_load_optimize): New.
14472 (rest_of_compilation): Call the above. Remove ggc_collect
14473 calls moved to rest_of_handle_*.
14474 * rtl.h (optimize_save_area_alloca): Do not accept parameters.
14476 * dwarf2out.c (dwarf2out_begin_prologue): Use TREE_NOTHROW.
14477 * except.c (set_nothrow_function_flags): Set TREE_NOTHROW.
14478 * except.h (set_nothrow_function_flags): Update comment.
14479 * function.c (current_function_nothrow): Remove.
14480 * output.h (current_function_nothrow): Remove.
14481 * passes.c (rest_of_compilation): Do not set TREE_NOTHROW.
14482 * config/arm/arm.c (arm_compute_func_type): Use TREE_NOTHROW.
14484 2004-07-08 Eric Botcazou <ebotcazou@libertysurf.fr>
14487 * reorg.c: Revert 2004-06-30 change.
14488 (find_end_label): If HAVE_epilogue and !HAVE_return,
14489 return 0 instead of creating a label at the end of the insn chain.
14490 (optimize_skip): Account for the failure mode of find_end_label.
14491 (fill_simple_delay_slots): Likewise.
14492 (fill_slots_from_thread): Likewise.
14493 (relax_delay_slots): Likewise.
14495 2004-07-08 Diego Novillo <dnovillo@redhat.com>
14497 * tree-flow.h (addressable_vars): Declare.
14498 * tree-ssa-alias.c (addressable_vars): Define.
14499 (setup_pointers_and_addressables): Add addressable variables
14500 to addressable_vars.
14501 * tree-ssa-operands.c (get_stmt_operands): Move
14502 handling of ASM_EXPRs ...
14503 (get_asm_expr_operands): ... here.
14504 When the ASM_EXPR clobbers memory, also clobber addressable
14506 * tree-ssa.c (init_tree_ssa): Initialize addressable_vars.
14507 (delete_tree_ssa): Reset addressable_vars.
14509 2004-07-07 Jan Beulich <jbeulich@novell.com>
14510 Richard Henderson <rth@redhat.com>
14512 * varasm.c (assemble_variable): Use assemble_zeros for
14513 zero-initialized variables.
14514 (categorize_decl_for_section): Honor flag_zero_initialized_in_bss
14515 for SECCAT_BSS and SECCAT_TBSS.
14517 2004-07-07 Jan Beulich <jbeulich@novell.com>
14519 * varasm.c (asm_output_bss): Don't declare unless BSS_SECTION_ASM_OP.
14521 * expmed.c (emit_store_flag): Also special-case double-word
14522 (in-)equality comparison against -1.
14524 * config/i386/i386.c (ix86_gimplify_va_arg): Don't need temporary for
14525 passing arguments the containers for which are registers.
14527 * calls.c (emit_library_call_value_1): Use mode of function parameter
14528 rather than that of argument since constants have none.
14530 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
14532 Introduce H8SX support.
14533 * expr.c (expand_strcpy): Renamed and moved to...
14534 * builtins.c (expand_movstr): ... here. Tweak.
14535 (expand_builtin_strcpy): Adjust. Use movstr if len can't be
14536 computed or has side effects.
14537 (expand_builtin_stpcpy): Likewise. Use strcpy if return value is
14538 unused, or if mempcpy fails. Adjust the return value in the
14539 latter case. Use movstr if everything else fails.
14540 * doc/md.texi (movstr): Document.
14541 (movmemM, clrmemM): Fix explanation of memory block operands.
14542 * config/h8300/h8300.md (stpcpy): Renamed to...
14543 (movstr): ... this. Adjust.
14544 2004-07-07 Alexandre Oliva <aoliva@redhat.com>
14545 * config/h8300/h8300.md: Rename movstr*, except for movstrict*, to
14546 movmem* and clrstr* to clrmem*.
14547 2004-06-27 Alexandre Oliva <aoliva@redhat.com>
14548 * config/h8300/h8300.c (h8300_reg_class_from_letter): Map 'D' to
14549 GENERAL_REGS, always.
14550 (h8300_swap_into_er6, h8300_swap_into_er6): Handle the case of
14551 getting the stack pointer as addr.
14552 * config/h8300/h8300.h (PREDICATE_CODES): Remove constant rtxes
14553 from general_operand_dst.
14554 * config/h8300/h8300.md (movmd_internal_normal): New, normal-mode
14556 (movmd_internal): ... this. Add modes to operands. Disparage `D'
14557 instead of requiring it to match only before reload.
14558 (stpcpy_internal_normal): New, normal-mode variant of...
14559 (stpcpy_internal): ... this. Add modes to operands. Disparage
14560 `D' instead of requiring it to match only before reload.
14561 * config/h8300/h8300-protos.h (h8300_legitimate_address_p): Add
14563 * config/h8300/h8300.h (GO_IF_LEGITIMATE_ADDRESS): Pass it to...
14564 * config/h8300/h8300.c (h8300_legitimate_address_p): Pass it to
14566 * config/h8300/h8300.md (attr type): Add call.
14567 (attr can_delay): If type is call, set it no.
14568 (call, call_value): Set type to call.
14569 2004-06-21 Alexandre Oliva <aoliva@redhat.com>
14570 * config/h8300/h8300.md (logicalhi3_sn, logicalsi3_sn): New.
14571 2004-06-16 Alexandre Oliva <aoliva@redhat.com>
14572 * tree.c (get_narrower): Don't narrow integral types into
14573 non-integral types.
14574 * config/h8300/h8300.c (h8300_expand_epilogue): Initialize
14575 frame_size *before* the first use.
14576 * config/h8300/h8300.md (movstrictqi): Reintroduce post-increment
14578 (peephole2): Don't widen instructions that push SP. Move
14579 decrement of SP to the end of all stm-generating peepholes.
14580 2003-07-24 Richard Sandiford <rsandifo@redhat.com>
14581 * config/h8300/h8300.md (insv): Prefer to use AND to clear a bitfield
14582 and OR to set it to all ones.
14583 2003-07-24 Richard Sandiford <rsandifo@redhat.com>
14584 * config/h8300/h8300.md (can_delay): Default to "no" for bit branches.
14585 (call, call_value): Set can_delay to "no".
14586 2003-07-22 Richard Sandiford <rsandifo@redhat.com>
14587 * config/h8300/h8300.md (extzv): Make subreg check more robust.
14588 2003-07-21 Richard Sandiford <rsandifo@redhat.com>
14589 * config/h8300/h8300.md (*brabit): Remove.
14590 * config/h8300/h8300.md (*brabc, *brabs): Remove mode from
14591 zero_extract. Use bit_memory_operand as the predicate for
14592 operand 1 and 'WU' as the constraint. Check the difference
14593 between the base length and the final one when deciding which
14594 type of branch to use.
14595 2003-07-21 Richard Sandiford <rsandifo@redhat.com>
14596 * config/h8300/h8300.md (extzv): Remove mode from operands 0 and 1.
14597 Use convert_move to extend the result for TARGET_H8300SX. Check
14598 for QImode memory references. Optimize the case where the
14599 destination is a paradoxical subreg.
14600 2003-07-21 Richard Sandiford <rsandifo@redhat.com>
14601 * config/h8300/h8300.md (*movsf_h8sx): Add an r <- G alternative.
14602 * config/h8300/h8300.md (andqi): Remove bclr from h8sx version.
14603 2003-07-21 Richard Sandiford <rsandifo@redhat.com>
14604 * config/h8300/h8300.md: Include mova.md
14605 (length_table): Add mova and mova_zero.
14606 * config/h8300/h8300.c (print_operand): Handle '%o'. Print a length
14607 after all constant addresses for '%R', '%X', '%T' and '%S'.
14608 (h8300_mova_length): New function.
14609 (h8300_insn_length_from_table): Use it to handle mova and mova_zero.
14610 * config/h8300/t-h8300 (mova.md): Generate from genmova.sh. Add to
14611 dependencies for s-config, etc.
14612 * config/h8300/gemova.sh: New file.
14613 * config/h8300/mova.md: Generated.
14614 2003-07-20 Alexandre Oliva <aoliva@redhat.com>
14615 * config/h8300/h8300.c (h8300_bitfield_length): New.
14616 (nibble_operand): Adjust.
14617 (h8300_binary_length): Handle conditional binary op.
14618 (h8300_insn_length_from_table): Handle bitfield and bitbranch.
14619 * config/h8300/h8300.h: Change constraints W# and Y# to P#>X and
14620 P#<X, respectively. The original P is now IP4>X. Introduced P#>0
14621 and P#<0, unused so far. W and Y are now prefixes to multi-letter
14622 constraints. WU is introduced as a variant of U that requires a
14623 mem, and is therefore considered an EXTRA_MEMORY_CONSTRAINT.
14624 * config/h8300/h8300.md (attr type): Added bitbranch.
14625 (attr length_table): Added bitfield and bitbranch.
14626 (attr length): Compute bitbranch length.
14627 (andqi): Separate pattern for H8300SX. Use bfld for loading the
14628 least-significant bit of a byte.
14629 (brabit, brabc, brabs): New.
14630 (insv, extzv): Emit bfst and bfld on H8300SX.
14631 (bfld, bfst, seq, sne): New.
14632 (bstzhireg, cmpstz, bstz, bistz): New.
14633 (cmpcondbset, condbset, cmpcondbclr, condbclr): New.
14634 (cmpcondbsetreg, condbsetreg, cmpcondbclrreg, condbclrreg): New.
14635 2003-07-11 Richard Sandiford <rsandifo@redhat.com>
14636 * config/h8300/h8300.c (h8sx_binary_memory_operator): New function.
14637 (h8sx_unary_memory_operator): New function.
14638 * config/h8300/h8300.h (EXTRA_MEMORY_CONSTRAINT): Disable.
14639 (PREDICATE_CODES): Add h8sx_{unary,binary}_memory_operator.
14640 * config/h8300/h8300.md: Add peepholes to combine reloads and
14642 2003-07-10 Richard Sandiford <rsandifo@redhat.com>
14643 * config/h8300/h830.md (cmpqi): Use 'i' rather than 'n' in constraints.
14644 (*cmphi_h8300hs, *addqi3, *addhi3_h8sx, subhi3): Likewise.
14645 (and?i, ior?i, xor?i): Likewise.
14646 2003-07-10 Richard Sandiford <rsandifo@redhat.com>
14647 * config/h8300/h8300.c: Move enums and prototypes to head of file.
14648 Various whitespace fixes.
14649 (h8300_constant_length): New function, split out from...
14650 (h8300_displacement_size): ...here. Rename h8300_displacement_length.
14651 (h8300_classify_operand): Use IN_RANGE.
14652 (h8300_classify_operand): Use h8300_constant_length.
14653 (h8300_short_move_mem_p): Tighten size check.
14654 (h8sx_mergeable_memrefs_p): Tighten equality check.
14655 2003-06-30 Richard Sandiford <rsandifo@redhat.com>
14656 * config/h8300/h8300.h (TARGET_CPU_CPP_BUILTINS): Define __H8300SX__
14658 * config/h8300/crti.asm: Use .h8300sx or .h8300sxn for -msx code.
14659 * config/h8300/crtn.asm: Likewise.
14660 * config/h8300/lib1funcs.asm: Likewise. Use 32-bit pointers
14661 if __H8300SX__ is defined.
14662 2003-06-27 Richard Sandiford <rsandifo@redhat.com>
14663 * config/h8300/h8300-protos.h (h8300_get_index): Add mode parameter.
14664 * config/h8300/h8300.h (GO_IF_LEGITIMATE_ADDRESS): Update accordingly.
14665 (GO_IF_MODE_DEPENDENT_ADDRESS): Treat POST_DEC, PRE_INC and indexed
14666 addresses as mode-dependent.
14667 * config/h8300/h8300.c (print_operand_address): Update call to
14669 (h8300_get_index): Take a mode argument. Rework to fix an
14670 earlier misunderstanding.
14671 2003-06-26 Richard Sandiford <rsandifo@redhat.com>
14672 * config/h8300/h8300.c (zero_extendqisi2): Force the source operand
14673 into a register if TARGET_H8300SX.
14674 (*zero_extendqisi2_h8300hs, *extendqisi2_h8300): Disable for
14675 TARGET_H8300SX. Also disable related define_splits.
14676 (*zero_extendqisi2_h8sx, *extendqisi2_h8sx): New patterns.
14677 2003-06-23 Richard Sandiford <rsandifo@redhat.com>
14678 * config/h8300/h8300.c (h8300_rtx_costs): Add h8sx handling.
14679 2003-06-20 Richard Sandiford <rsandifo@redhat.com>
14680 * config/h8300/h8300.h (OK_FOR_Z): New macro.
14681 (EXTRA_CONSTRAINT_STR): Check it.
14682 * config/h8300/h8300.c (h8300_classify_operand): Accept null
14684 (h8300_insn_length_from_table): Handle LENGTH_TABLE_MOV_IMM4.
14685 * config/h8300/h8300.md (length_table): Add mov_imm4.
14686 (movqi, movhi): Add Z <- W4 alternatives to h8sx patterns.
14687 2003-06-20 Richard Sandiford <rsandifo@redhat.com>
14688 * genattrtab.c (write_eligible_delay): Allow candidate_insn to
14690 * config/h8300/h8300.h (DELAY_SLOT_LENGTH): New macro.
14691 * config/h8300/h8300.c (h8300_reorg): New function.
14692 (TARGET_MACHINE_DEPENDENT_REORG): Define.
14693 * config/h8300/h8300.md (length): Subtract the length of the
14694 delay slot from (pc) when checking the range of forward branches.
14695 (delay_slot, can_delay): New attributes.
14696 (define_delay): Add bra/s handling.
14697 (movmd_internal, return_h8sx, *return_1): Set can_delay to no.
14698 (jump): Add delayed-branch handling.
14699 2003-06-17 Richard Sandiford <rsandifo@redhat.com>
14700 * expr.c (expand_strcpy): New function.
14701 * builtins.c (expand_builtin_strcpy): Fall back on expand_strcpy.
14702 (expand_builtin_stpcpy): Likewise.
14703 * config/h8300/h8300-protos.h (h8sx_split_movmd): Remove.
14704 (h8300_swap_into_er6, h8300_swap_out_of_er6): Declare.
14705 * config/h8300/h8300.c (h8300_reg_class_from_letter): Tweak 'd'
14706 handling to improve register allocation for -fno-omit-frame-pointer.
14707 (h8sx_split_movmd): Delete, moving er6 handling into...
14708 (h8300_swap_into_er6, h8300_swap_out_of_er6): ...these new functions.
14709 * config/h8300/h8300.md (UNSPEC_STPCPY): New unspec constant.
14710 (movmd): Add calls to copy_rtx.
14711 (movmd_internal): In the second alternative, allow the initial and
14712 final destination registers to be different . Update the splitter
14713 accordingly. Call h8300_swap_into_er6 and h8300_swap_out_of_er6
14714 instead of h8sx_split_movmd.
14715 (stpcpy, movsd): New expanders.
14716 (movsd_internal): New define_insn.
14717 2003-06-13 Richard Sandiford <rsandifo@redhat.com>
14718 * config/h8300/h8300-protos.h (h8300_reg_class_from_letter): Declare.
14719 (h8sx_emit_movmd, h8sx_split_movmd): Declare.
14720 * config/h8300/h8300.h (reg_class): Add COUNTER_REGS, SOURCE_REGS
14721 and DESTINATION_REGS.
14722 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update accordingly.
14723 (REGNO_REG_CLASS): Map er4, er5 and er6 to the new classes.
14724 (REG_CLASS_FROM_LETTER): Use h8300_reg_class_from_letter.
14725 (h8300_move_ratio): Declare.
14726 (MOVE_RATIO): Use it.
14727 * config/h8300/h8300.c (h8300_move_ratio): New variable.
14728 (h8300_init_once): Initialize it.
14729 (h8300_reg_class_from_letter): New function.
14730 (print_operand): Add an 'm' prefix for printing ".b", ".w" or ".l".
14731 (h8sx_emit_movmd, h8sx_split_movmd): New functions.
14732 * config/h8300/h8300.md (UNSPEC_MOVMD): New unspec constant.
14733 (COUNTER_REG, SOURCE_REG, DESTINATION_REG): New register constants.
14734 (movstrsi, movmd): New expanders.
14735 (movmd_internal): New insn.
14736 2003-06-06 Richard Sandiford <rsandifo@redhat.com>
14737 * config/h8300/h8300.h (EXTRA_MEMORY_CONSTRAINT): Define.
14738 2003-06-04 Richard Sandiford <rsandifo@redhat.com>
14739 * config/h8300/elf.h (LINK_SPEC): Use -m h8300sxnelf for -msx -mn.
14740 * config/h8300/h8300.c (asm_file_start): Use .h8300sxn likewise.
14741 2003-06-03 Richard Sandiford <rsandifo@redhat.com>
14742 * config/h8300/h8300.c (nibble_operand): Fix warning.
14743 * config/h8300/h8300.md (movstricthi): Set adjust_length to no.
14744 (movsi_h8sx): Likewise here and the normal h8sx movhi pattern.
14745 (movsf_h8300h): Disable for TARGET_H8300SX.
14746 2003-06-03 Richard Sandiford <rsandifo@redhat.com>
14747 * config/h8300/h8300.h (PREDICATE_CODES): Add h8300_ldm_parallel,
14748 h8300_stm_parallel and h8300_return_parallel.
14749 * config/h8300/h8300.c (h8300_push_pop, h8300_stack_offset_p,
14750 h8300_ldm_stm_regno, h8300_ldm_stm_parallel, h8300_ldm_parallel,
14751 h8300_stm_parallel, h8300_return_parallel): New functions.
14752 (h8300_expand_prologue): Don't enforce ldm/stm register alignment
14753 if TARGET_H8300SX. Use h8300_push_pop.
14754 (h8300_expand_epilogue): Likewise. Try to merge the return insn
14755 and final pop when generating h8sx code. Always emit some form
14757 * config/h8300/h8300.md: Don't enforce register alignment in
14758 stm peepholes if TARGET_H8300SX.
14759 (ldm_h8300s, stm_h8300s, return_h8sx): New patterns.
14760 (ldm_h8300s_[234], stm_h8300_[234]): Disable.
14761 (epilogue): Expect h8300_expand_epilogue to emit a return insn.
14762 2003-06-03 Richard Sandiford <rsandifo@redhat.com>
14763 * config/h8300/t-h8300 (MULTILIB_OPTIONS): Add a -msx multilib.
14764 (MULTILIB_DIRNAMES): Add a directory for it.
14765 (MULTILIB_MATCHES): Delete.
14766 2003-05-28 Richard Sandiford <rsandifo@redhat.com>
14767 * final.c (walk_alter_subreg): Handle addresses with subregs
14768 inside a ZERO_EXTEND or AND.
14769 * config/h8300/h8300-protos.h (h8300_get_index): Declare.
14770 * config/h8300/h8300.h (INDEX_REG_CLASS): Set to GENERAL_REGS
14772 (GO_IF_LEGITIMATE_ADDRESS): Use h8300_get_index.
14773 * config/h8300/h8300.c (print_operand_address): Handle @(dd,RnL.b),
14774 @(dd,Rn.w) and @(dd,ERn.L).
14775 (h8300_displacement_size): Take the whole address as argument.
14776 (h8300_classify_operand, h8300_short_move_mem_p): Adjust accordingly.
14777 2003-05-28 Richard Sandiford <rsandifo@redhat.com>
14778 * config/mips/mips-protos.h (h8300_operands_match_p): Declare.
14779 (h8sx_mergeable_memrefs_p): Declare.
14780 * config/h8300/h8300.h (HAVE_POST_DECREMENT): Define to TARGET_H8300SX.
14781 (HAVE_PRE_INCREMENT): Likewise.
14782 (GO_IF_LEGITIMATE_ADDRESS): Accept pre/post increment/decrement
14783 addresses for TARGET_H8300SX,
14784 * config/h8300/h8300.c (print_operand_address): Deal with PRE_INC
14786 (movb_length_table, movl_length_table): New tables.
14787 (movw_length_table): Define to movb_length_table.
14788 (h8300_displacement_size): New, split out from...
14789 (h8300_classify_address): ...here. Handle pre/post inc/dec.
14790 (h8300_short_immediate_length): Allow H8OP_MEM_COMPLEX operands.
14791 (h8300_insn_length_from_table): Add cases for movb, movw and movl.
14792 (h8sx_mergeable_memrefs_p, h8300_operands_match_p): New functions.
14793 (output_plussi): Use add.l #xx:3,Rn and sub.l #xx:3,Rn for h8sx.
14794 (compute_plussi_length, compute_plussi_cc): Update accordingly.
14795 (h8sx_unary_shift_operator): Get the mode from the operator.
14796 (binary_shift_operator): Likewise.
14797 * config/h8300/h8300.md: If a peephole2 applies gen_lowpart to
14798 a memory reference, check whether the reference is offsettable.
14799 (length_table): Add movb, movw and movl.
14800 (movqi): Add new h8sx pattern. Don't force one operand to be a
14801 register when generating h8sx code.
14802 (movhi, movsi, movsf): Likewise.
14803 (movstrictqi): Use the length_table attribute.
14804 (movstricthi): Likewise. Add h8sx alternative for mov.w #xx:3,Rn.
14805 (addqi3): Split into a define_expand and define_insn. Don't accept
14806 memory operands in the expander. Use h8300_operands_match_p to
14807 check for matching operands in the define_insn.
14808 (subqi3, negqi2, one_cmplqi2): Likewise.
14809 (add[hs]i3): Don't accept memory operands in the expander. Likewise
14810 in any patterns that are unused in h8sx code. In the h8sx patterns,
14811 use h8300_operands_match_p to check whether operands match.
14812 (sub[hs]i3, and[hi]3, ior[hs]i3, xor[hs]i3, neg[hsi]3,
14813 one_cmpl[hs]i3): Likewise.
14814 (andqi3, iorqi3, xorqi3): Likewise. Don't call fix_bit_operand
14816 2003-05-23 Richard Sandiford <rsandifo@redhat.com>
14817 * config/h8300/h8300-protos.h (expand_a_shift): Return a bool.
14818 (h8300_insn_length_from_table): Add a second parameter.
14819 (output_h8sx_shift): Declare.
14820 * config/h8300/h8300.h (OK_FOR_W, OK_FOR_Y): New macros.
14821 (EXTRA_CONSTRAINT): Replace with...
14822 (EXTRA_CONSTRAINT_STR): ...this. Use OK_FOR_W and OK_FOR_Y.
14823 (CONSTRAINT_LEN): Define, returning 2 for 'W' and 'Y'.
14824 (PREDICATE_CODES): Add entries for h8sx_unary_shift_operator
14825 and h8sx_binary_shift_operator.
14826 * config/h8300/h8300.c (two_insn_adds_subs_operand): Return false
14827 for TARGET_H8300SX.
14828 (bit_operand): Replace use of EXTRA_CONSTRAINT with OK_FOR_U.
14829 (bit_memory_operand, fix_bit_operand): Likewise.
14830 (h8300_length_table_for_insn): Remove.
14831 (h8300_classify_operand): Fix check for 16-bit operands in 32-bit
14833 (h8300_short_immediate_length, h8300_binary_length): New functions.
14834 (h8300_insn_length_from_table): Add an opcodes parameter. Rework.
14835 (output_plussi): Use sub to add negative constants.
14836 (compute_plussi_length): Adjust accordingly.
14837 (h8sx_single_shift_type): New enum.
14838 (h8sx_single_shift, h8sx_unary_shift_operator,
14839 h8sx_binary_shift_operator, output_h8sx_shift): New functions.
14840 (expand_a_shift, expand_a_rotate): Emit nothing if the shift is a
14841 single h8sx instruction. Return false in this case.
14842 * config/h8300/h8300.md (length_table): Add short_immediate.
14843 (length): Pass the operand array to h8300_insn_length_from_table.
14844 (adjust_length): Assume "no" for insns with a length_table attribute.
14845 (*cmphi_h8300hs, cmpsi): Add alternatives for #xx:3.
14846 (*addhi3_h8300hs): Don't use for h8sx.
14847 (*addhi3_h8sx): New pattern, with alternatives for add.w #xx:3
14849 (ashl[qhs]i3, lshr[qhs]i3, ashr[qhs]i3, rotl[qhs]i3): Change operand
14850 1's predicate to nonimmediate_operand. Only skip default expansion
14851 if expand_a_shift or expand_a_rotate returns true. Add new patterns
14852 for single h8sx shift instructions.
14853 2003-05-22 Alexandre Oliva <aoliva@redhat.com>
14854 * config/h8300/h8300.c (nibble_operand): Split out of...
14855 (reg_or_nibble_operand): ... this.
14856 * config/h8300/h8300.h (PREDICATE_CODES): Added nibble_operand.
14857 * config/h8300/h8300.md: (mulqihi3, mulhisi3, umulqihi3,
14858 umulhisi3): Introduce expand, and introduce separate insns for
14859 sign- or zero-extended REG and already-extended CONST_INT.
14860 2003-05-20 Richard Sandiford <rsandifo@redhat.com>
14861 * config/h8300/h8300.c (h8300_unary_length): Fix miscounting.
14862 * config/h8300/h8300.md (subqi3): Generalize for h8sx.
14863 (subhi3): Likewise. Don't accept immediates for operand 1.
14864 Remove the early clobber from second alternative of the h8300s pattern.
14865 (subsi3): Generalize for h8sx. Force operand 2 into a register
14866 on plain h8300 targets.
14867 (subsi3_h8300): Use h8300_dst_operand for consistency with expander.
14868 (subsi3_h8300h): Generalize for h8sx.
14869 (one_cmplqi2, one_cmplhi2, one_cmplsi2): Likewise.
14870 2003-05-19 Alexandre Oliva <aoliva@redhat.com>
14871 * config/h8300/h8300.c (reg_or_nibble_operand): New.
14872 * config/h8300/h8300.h (PREDICATE_CODES): Adjust.
14873 (TARGET_H8300SXMUL): New.
14874 (CONST_OK_FOR_P): New.
14875 (CONST_OK_FOR_LETTER_P): Adjust.
14876 * config/h8300/h8300.md (mulqihi3, mulhisi3, umulqihi3,
14877 umulhisi3): Accept 4-bit immediate on H8SX.
14878 (mulhi3, mulsi3, smulsi3_highpart, umulsi3_highpart): New.
14879 (udivsi3, divhi3, udivsi3, divsi3): New.
14880 2003-05-19 Richard Sandiford <rsandifo@redhat.com>
14881 * config/h8300/h8300-protos.h (h8300_insn_length_from_table): Declare.
14882 * config/h8300/h8300.h (OK_FOR_Q): New macro.
14883 (EXTRA_CONSTRAINT): Use it to check the 'Q' constraint.
14884 (PREDICATE_CODES): Add h8300_src_operand and h8300_dst_operand.
14885 Add ADDRESSOF to the bit_operand entry.
14886 * config/h8300/h8300.c (h8300_dst_operand): New predicate.
14887 (h8300_src_operand): Likewise.
14888 (bit_operand): Check nonimmediate_operand rather than general_operand.
14889 Accept any nonimmediate_operand in h8sx code.
14890 (h8300_and_costs): Initialize operands[1].
14891 (h8300_rtx_costs) <AND>: Return false if the operands aren't valid.
14892 (h8300_operand_class): New enum.
14893 (h8300_length_table): New typedef.
14894 (addb_length_table, addw_length_table, addl_length_table,
14895 logicl_length_table): New tables.
14896 (logicb_length_table, logicw_length_table): New macros.
14897 (h8300_classify_operand, h8300_length_from_table,
14898 h8300_length_table_for_insn, h8300_unary_length,
14899 h8300_insn_length_from_table): New functions.
14900 (output_plussi): Only use adds and subs for register destinations.
14901 Disable redundant clause.
14902 (compute_plussi_cc): Likewise.
14903 (compute_plussi_length): Likewise. Use h8300_length_from_table
14904 to work out the length of an insn.
14905 (output_logical_op): Only use narrower immediate instructions
14906 if the destination is a register.
14907 (compute_logical_op_cc): Likewise.
14908 (compute_logical_op_length): Likewise. Use h8300_length_from_table.
14909 (h8300_adjust_insn_length): Tighten check for reg<->mem moves.
14910 * config/h8300/h8300.md (length_table): New attribute.
14911 (length): When an instruction has a length_table attribute, use
14912 h8300_insn_length_from_table to calculate its default length.
14913 (cmpqi): Use h8300_dst_operand for the first operand and
14914 h8300_src_operand for the second.
14915 (cmphi, *cmphi_h8300hs, cmpsi, negqi2, neghi2, neghi2_h8300h, negsi2,
14916 negsi2_h8300h, addqi3, addhi3, *addhi3_h8300, *addhi3_h8300hs, addsi3,
14917 addsi_h8300, addsi_h8300h, andhi3, andsi3, iorhi3,
14918 iorsi3, xorhi3, xorsi3): Likewise.
14919 (andqi3): Use h8300_src_operand for operand 2. Adjust the condition
14920 so that it allows any combination of operands for TARGET_H8300SX.
14921 (iorqi3, xorqi3): Likewise.
14922 (cmpqi): Use the length_table attribute.
14923 (*cmphi_h8300hs, cmpsi, addqi, *addhi3_h8300hs, andqi3, iorqi3,
14924 xorqi3, negqi2, neghi2_h8300h, negsi2_h8300h): Likewise.
14925 (cmpqi): Add 'Q' constraint.
14926 (*cmphi_h8300hs, cmpsi, addqi, *addhi3_h8300hs, addsi_h8300h, andqi3,
14927 iorqi3, xorqi3, negqi2, neghi2_h8300h, negsi2_h8300h): Likewise.
14928 2003-05-14 Richard Sandiford <rsandifo@redhat.com>
14929 * config/h8300/h8300.h (MASK_H8300SX): New macro.
14930 (TARGET_H8300S): True for both -ms and -msx.
14931 (TARGET_H8300SX): New macro.
14932 (TARGET_SWITCHES): Add entries for -msx and -mno-sx.
14933 * config/h8300/h8300.c (asm_file_start): Write .h8300sx for -msx.
14934 * config/h8300/elf.h (LINK_SPEC): Use -m h8300sxelf for -msx.
14935 * config/h8300/t-h8300 (MULTILIB_MATCHES): Use -ms multilibs for -msx.
14936 [Temporary change.]
14937 2003-02-28 Alexandre Oliva <aoliva@redhat.com>
14938 * config/h8300/h8300.h (SIZE_TYPE, PTRDIFF_TYPE): Use short with
14939 16-bit pointers and 32-bit ints.
14940 * config/h8300/h8300.h (LEGITIMATE_CONSTANT_P): Accept
14941 CONST_DOUBLE with mode no wider than SImode.
14942 * config/h8300/h8300.md (extendqisi2_h8300): Add constraints for
14944 2003-02-27 Alexandre Oliva <aoliva@redhat.com>
14945 * config/h8300/h8300.c (general_operand_src): Match CONSTANT_P_RTX
14947 * config/h8300/h8300.h (PREDICATE_CODES): Adjust.
14948 2003-02-22 Alexandre Oliva <aoliva@redhat.com>
14949 * config/h8300/h8300.c (dosize): Truncate sign * size to Pmode.
14951 2004-05-28 Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
14953 * config.gcc (i[34567]86-*-mingw32*): Enable threads by default.
14955 2004-07-07 Per Bothner <per@bothner.com>
14957 * flow.c (attempt_auto_inc): Remove now-redundant PUT_CODE.
14959 2004-07-07 Mike Stump <mrs@apple.com>
14961 * darwin.h (ASM_OUTPUT_LABELREF): Fix -fno-leading-underscore.
14962 * darwin.c (machopic_non_lazy_ptr_name, machopic_stub_name)
14963 (machopic_finish): Likewise.
14965 2004-07-07 Richard Henderson <rth@redhat.com>
14967 * tree-ssa-dom.c (simplify_switch_and_lookup_avail_expr): Look
14968 through any value-preserving cast.
14970 2004-07-07 Alexandre Oliva <aoliva@redhat.com>
14972 * function.c (assign_parm_find_data_types): Call
14973 FUNCTION_ARG_PASS_BY_REFERENCE only if it's defined.
14975 2004-07-07 Steven Bosscher <stevenb@suse.de>
14977 * tree-cfg.c (group_case_labels): Remove case labels that have
14978 the same target as the default case.
14980 2004-07-07 Steven Bosscher <stevenb@suse.de>
14982 * tree-inline.c (optimize_inline_calls): Set DECL_INLINED_FNS
14983 regardless of DECL_LANG_SPECIFIC being present or not.
14984 * tree.h (DECL_NUM_STMTS): Purge.
14986 2004-07-07 Andrew Pinski <apinski@apple.com>
14988 * configure: Regenerate with the right autoconf.
14990 2004-07-07 David Edelsohn <edelsohn@gnu.org>
14992 * ifcvt.c (total_bb_rtx_cost): New function.
14993 (find_if_case_1): Compare rtx_cost of basic block to cost of
14995 (find_if_case_2): Same.
14997 2004-07-07 Eric Botcazou <ebotcazou@libertysurf.fr>
15000 * config/sparc/sparc.c (load_pic_register): Honor flag_delayed_branch.
15001 (output_return): Likewise.
15002 (output_sibcall): Abort if !flag_delayed_branch.
15003 (sparc_function_ok_for_sibcall): Return 0 if !flag_delayed_branch.
15004 (emit_and_preserve): New function.
15005 (sparc_output_mi_thunk): Use it. Honor flag_delayed_branch. Emit an
15006 indirect jump to the thunked-to function if !flag_delayed_branch.
15007 * config/sparc/sparc.md (delayed_branch): New attribute.
15008 (load_pcrel_sym): Honor flag_delayed_branch. Use above
15009 attribute to compute the length of the insn.
15010 (goto_handler_and_restore): Likewise.
15012 2004-07-07 Andrew Pinski <apinski@apple.com>
15014 PR tree-optimization/15777
15015 * fold-const.c (fold_single_bit_test): Fold the x^1 expression.
15017 * expr.c (expand_expr_real_1): Fix formating.
15018 BUFFER_REF and IN_EXPR are dead.
15019 * fold-const.c (non_lvalue): BUFFER_REF is dead.
15020 * tree-inline.c (estimate_num_insns_1): Likewise.
15021 * tree-pretty-print.c (dump_generic_node): BUFFER_REF,
15022 IN_EXPR, SET_LE_EXPR, and CARD_EXPR are dead.
15023 * tree.def (BUFFER_REF, IN_EXPR, SET_LE_EXPR, CARD_EXPR): Kill.
15025 2004-07-07 H.J. Lu <hongjiu.lu@intel.com>
15027 * collect2.c (dump_file): Don't call cplus_demangle if
15028 HAVE_LD_DEMANGLE is defined.
15029 (main): Pass "--demangle" to ld if no_demangle is not 0 and
15030 HAVE_LD_DEMANGLE is defined. Don't set current_demangling_style
15031 if HAVE_LD_DEMANGLE is defined.
15033 * configure.ac (--with-demangler-in-ld): Added
15034 (HAVE_LD_DEMANGLE): Define if ld supports --demangle when
15035 --with-demangler-in-ld is used.
15036 * config.in: Regenerated.
15037 * configure: Likewise.
15039 2004-07-07 Roger Sayle <roger@eyesopen.com>
15041 * config/rs6000/rs6000.c (struct processor_costs): Add new fields
15042 for simple floating point operations "fp", double precision
15043 multiplication "dmul", and single and double precision division
15044 "sdiv" and "ddiv". Update all CPU variant tables as appropriate.
15045 (ppc630_cost): New table split from ppc620_cost, to distinguish
15046 differences in floating point latencies.
15047 (rs6000_override_options): Use ppc630_cost for PROCESSOR_PPC630.
15048 (rs6000_rtx_costs): Add support for single and double precision
15049 floating point addition, subtraction, multiplication, division,
15050 fused-multiply-add, fused-multiply-sub, negation, absolute value
15051 and negative absolute value. Tweak MEM case to use prefered idiom.
15053 2004-07-07 Richard Henderson <rth@redhat.com>
15055 * tree-flow-inline.h (may_propagate_copy): Move...
15056 * tree-ssa-copy.c (may_propagate_copy): ... here. Fail if we
15057 attempt to copy between types requiring conversion.
15058 * tree-flow.h (may_propagate_copy): Update decl.
15059 * tree-ssa-dom.c (cprop_operand): Tidy redundant tests.
15061 2004-07-07 Jakub Jelinek <jakub@redhat.com>
15063 * config/i386/i386.c (override_options): Don't set x86_prefetch_sse
15064 from -mtune= option.
15066 2004-07-07 Alexandre Oliva <aoliva@redhat.com>
15068 * builtins.c: Rename movstr*, except for movstrict*, to
15069 movmem* and clrstr* to clrmem*.
15070 * expr.c: Likewise.
15071 * expr.h: Likewise.
15072 * genopinit.c: Likewise.
15073 * integrate.c: Likewise.
15074 * local-alloc.c: Likewise.
15075 * optabs.c: Likewise.
15076 * optabs.h: Likewise.
15077 * config/alpha/alpha.h: Likewise.
15078 * config/alpha/alpha.md: Likewise.
15079 * config/arm/arm-protos.h: Likewise.
15080 * config/arm/arm.c: Likewise.
15081 * config/arm/arm.md: Likewise.
15082 * config/avr/avr.md: Likewise.
15083 * config/c4x/c4x.c: Likewise.
15084 * config/c4x/c4x.md: Likewise.
15085 * config/frv/frv.md: Likewise.
15086 * config/i386/i386-protos.h: Likewise.
15087 * config/i386/i386.c: Likewise.
15088 * config/i386/i386.h: Likewise.
15089 * config/i386/i386.md: Likewise.
15090 * config/i860/i860.c: Likewise.
15091 * config/i860/i860.md: Likewise.
15092 * config/ip2k/ip2k.md: Likewise.
15093 * config/ip2k/libgcc.S: Likewise.
15094 * config/ip2k/t-ip2k: Likewise.
15095 * config/m32r/m32r.c: Likewise.
15096 * config/m32r/m32r.md: Likewise.
15097 * config/mcore/mcore.md: Likewise.
15098 * config/mips/mips.c: Likewise.
15099 * config/mips/mips.md: Likewise.
15100 * config/ns32k/ns32k.c: Likewise.
15101 * config/ns32k/ns32k.h: Likewise.
15102 * config/ns32k/ns32k.md: Likewise.
15103 * config/pa/pa.c: Likewise.
15104 * config/pa/pa.md: Likewise.
15105 * config/pdp11/pdp11.h: Likewise.
15106 * config/pdp11/pdp11.md: Likewise.
15107 * config/rs6000/rs6000.c: Likewise.
15108 * config/rs6000/rs6000.md: Likewise.
15109 * config/s390/s390-protos.h: Likewise.
15110 * config/s390/s390.c: Likewise.
15111 * config/s390/s390.md: Likewise.
15112 * config/sh/lib1funcs.asm: Likewise.
15113 * config/sh/sh.c: Likewise.
15114 * config/sh/sh.md: Likewise.
15115 * config/sh/t-sh: Likewise.
15116 * config/sparc/sparc.h: Likewise.
15117 * config/vax/vax.md: Likewise.
15118 * config/xtensa/xtensa.c: Likewise.
15119 * config/xtensa/xtensa.md: Likewise.
15120 * doc/invoke.texi: Likewise.
15121 * doc/md.texi: Likewise.
15122 * doc/rtl.texi: Likewise.
15124 2004-07-07 Richard Sandiford <rsandifo@redhat.com>
15127 * config/mips/mips-protos.h (mips_declare_common_object): Declare.
15128 * config/mips/mips.c (mips_declare_common_object): New function,
15129 mostly split out from...
15130 (mips_output_aligned_decl_common): ...here.
15131 * config/mips/mips.h (ASM_OUTPUT_LOCAL): Remove in favor of...
15132 (ASM_OUTPUT_ALIGNED_LOCAL): ...this new definition.
15133 * config/mips/iris6.h (ASM_OUTPUT_ALIGNED_LOCAL): Undefine this
15134 rather than ASM_OUTPUT_LOCAL. Call mips_declare_common_object.
15136 2004-07-07 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
15139 * function.c (assign_parms): Fix typo from previous change.
15141 2004-07-07 Jason Merrill <jason@redhat.com>
15144 * doc/extend.texi (C++ Interface): Correct information and
15147 2004-07-07 Vladimir Makarov <vmakarov@redhat.com>
15152 * config/ia64/ia64.c (ia64_dfa_new_cycle): Reset DFA state for asm
15155 2004-07-06 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
15158 * config/m32r/m32r.c (m32r_function_symbol): New function:
15159 Generate a symbol name RTX with the correct m32r specific flags
15161 (block_move_call): Use new function to generate correct symbol.
15162 * config/m32r/m32r-protos.h: Add prototype for new funcion.
15163 * config/m32r/m32r.h (INITIALIZE_TRAMPOLINE): Use the new
15166 2004-07-07 Nathan Sidwell <nathan@codesourcery.com>
15168 * tree.h (TYPE_BINFO_OFFSET, TYPE_BINFO_VTABLE,
15169 TYPE_BINFO_VIRTUALS, TYPE_BINFO_BASETYPES,
15170 TYPE_BINFO_BASETYPE): Remove.
15171 (BINFO_BASETYPES, BINFO_N_BASETYPES, BINFO_BASETYPE): Rename
15173 (BINFO_BASE_BINFOS, BINFO_N_BASE_BINFOS, BINFO_BASE_BINFO): ...
15175 (BINFO_BASEACCESSES, BINFO_BASEACCESS): Rename to ...
15176 (BINFO_BASE_ACCESSES, BINFO_BASE_ACCESS): ... here.
15177 (BINFO_INHERITANCE_CHAIN): Redocument as it is actually used.
15178 (struct tree_binfo): Rename base_types to base_binfos.
15179 * alias.c (record_component_aliases): Adjust BINFO macros.
15180 * dbxout.c (dbxout_type): Likewise.
15181 * dwarf2out.c (gen_member_die): Likewise.
15182 * sdbout.c (sdbout_one_type): Likewise.
15183 * tree-dump.c (deque_and_dump): Likewise.
15184 * config/i386/i386.c (classify_argument,
15185 contains_128bit_aligned_vector_p): Likewise.
15187 2004-07-07 Nick Clifton <nickc@redhat.com>
15189 * config/fr30/fr30.c (fr30_setup_incoming_varargs): Change
15190 arguments to match TARGET_SETUP_INCOMING_VARARGS prototype.
15192 2004-07-07 Nathan Sidwell <nathan@codesourcery.com>
15194 * vec.h: Fix the example use.
15196 2004-07-06 Richard Henderson <rth@redhat.com>
15198 * langhooks-def.h (LANG_HOOKS_GIMPLE_BEFORE_INLINING): Remove.
15199 * langhooks.h (struct lang_hooks): Remove gimple_before_inlining.
15200 * tree-inline.c (copy_body_r, setup_one_parameter,
15201 initialize_inlined_parameters, expand_call_inline,
15202 declare_inline_vars): Don't check it.
15203 (expand_calls_inline): Remove old version, rename new version
15204 from gimple_expand_calls_inline.
15205 * tree-optimize.c (execute_gimple): Remove.
15206 (pass_gimple): Don't run anything.
15208 2004-07-06 Joseph S. Myers <jsm@polyomino.org.uk>
15210 * doc/sourcebuild.texi: Use semicolons instead of commas in
15213 2004-07-06 Richard Henderson <rth@redhat.com>
15215 * tree-sra.c (struct sra_walk_fns): Revert 2004-07-05 change.
15216 (sra_walk_modify_expr, scan_init): Likewise.
15217 (generate_element_zero): Check visited before scanning children.
15218 (generate_element_init): Set visited on error.
15219 (scalarize_init): Handle generate_element_init failure similar
15222 2004-07-06 Joseph S. Myers <jsm@polyomino.org.uk>
15224 * toplev.h (NO_FRONT_END_DIAG, ATTRIBUTE_GCC_FE_DIAG): Define.
15225 (warning, error, pedwarn, sorry): Use ATTRIBUTE_GCC_FE_DIAG.
15227 2004-07-06 Richard Henderson <rth@redhat.com>
15229 * config/i386/i386.c (legitimize_pic_address): Make static.
15230 (legitimize_address): Handle CONST with TLS operand.
15231 (ix86_expand_move): Don't call legitimize_pic_address directly.
15232 * config/i386/i386-protos.h (legitimize_pic_address): Remove.
15234 2004-07-06 Roger Sayle <roger@eyesopen.com>
15236 * ifcvt.c (struct noce_if_info): Add a Boolean b_unconditional field.
15237 (noce_try_sign_mask): Tweak rtx_cost check if t is evaluated anyway.
15238 (noce_process_if_block): Initialize if_info.b_unconditional if insn_b
15239 is currently executed unconditionally, i.e. not in "else_bb".
15241 2004-07-06 Steven Bosscher <stevenb@suse.de>
15243 * config/alpha/alpha.c (alpha_use_dfa_pipeline_interface): Remove.
15244 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15245 * config/arm/arm.c (arm_use_dfa_pipeline_interface): Remove.
15246 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15247 * config/frv/frv.c (frv_use_dfa_pipeline_interface): Remove.
15248 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15249 * config/i386/i386.c (ia32_use_dfa_pipeline_interface): Remove.
15250 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15251 * config/ia64/ia64.c (ia64_use_dfa_pipeline_interface): Remove.
15252 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15253 * config/pa/pa.c (hhpa_use_dfa_pipeline_interface): Remove.
15254 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15255 * config/sparc/sparc.c (sparc_use_dfa_pipeline_interface): Remove.
15256 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15257 * config/v850/v850.c (v850_use_dfa_pipeline_interface): Remove.
15258 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
15260 2004-07-06 Daniel Berlin <dberlin@dberlin.org>
15262 * dojump.c (do_jump): REFERENCE_EXPR is dead.
15263 * expr.c (expand_expr_real_1): Ditto.
15264 * tree-inline.c (estimate_num_insns_1): Ditto.
15265 * tree-pretty-print.c (dump_generic_node): Ditto.
15266 (op_symbol): Ditto.
15269 2004-07-06 Daniel Berlin <dberlin@dberlin.org>
15271 * tree-ssa-pre.c (reference_node_pool): New pool.
15272 (find_or_generate_expression): Class 'r' is okay too.
15273 (create_value_expr_from): Ditto.
15274 (add_to_sets): LHS should not include vuses.
15275 (eliminate): Ditto.
15276 (compute_avail): Reverse ordering of tests.
15277 Valuize INDIRECT_REF as well.
15279 2004-07-06 Richard Sandiford <rsandifo@redhat.com>
15281 PR rtl-optimization/16380
15282 * loop.c (check_dbra_loop): Sink comparison instructions if they
15283 do something other than set cc0.
15285 2004-07-06 James E Wilson <wilson@specifixinc.com>
15287 * doc/interface.texi (longjmp and automatic variables): Delete
15288 paragraph recommending taking the address of a variable.
15290 2004-07-06 Nathan Sidwell <nathan@codesourcery.com>
15292 * vec.h (VEC_embedded_alloc): Remove.
15293 (VEC_embedded_size, VEC_embedded_init): New.
15294 (VEC_alloc, VEC_reserve, VEC_safe_push, VEC_safe_insert): Add
15296 (VEC_truncate): New.
15297 (vec_p_reserve, vec_o_reserve): Add MEM_STAT_DECL.
15298 (vec_embedded_alloc): Remove.
15299 * vec.c (vec_p_reserve, vec_o_reserve): Add MEM_STAT_DECL, adjust.
15300 (vec_embedded_alloc): Remove.
15302 2004-07-06 Mark Mitchell <mark@codesourcery.com>
15304 * Makefile.in (langhooks.o): Do not depend on gt-langhooks.h.
15305 (gt-langhooks.h): Remove.
15307 2004-07-06 George Helffrich <george@gly.bris.ac.uk>
15309 * xcoffout.h (DBX_FINISH_SYMBOL): Fix typo.
15311 2004-07-06 Eric Botcazou <ebotcazou@libertysurf.fr>
15313 * config/sparc/sparc.c (get_pc_symbol): Rename into
15314 add_pc_to_pic_symbol.
15315 (get_pc_symbol_name): Rename into add_pc_to_pic_symbol_name.
15316 (load_pic_register): Account for previous changes.
15317 Use reg_names. Don't create the label twice.
15318 * config/sparc/sparc.md (UNSPEC_GET_PC): Rename into
15319 UNSPEC_LOAD_PCREL_SYM.
15320 (get_pc): Rename into load_pcrel_sym. Add predicate to
15321 operands. Remove condition.
15323 2004-07-06 Nathan Sidwell <nathan@codesourcery.com>
15325 * dbxout.c (dbxout_type): Don't test whether the binfo slot of
15326 RECORD, UNION & QUAL_UNION is actually a binfo.
15328 * tree.h (TREE_VIA_VIRTUAL): Rename to ...
15329 (BINFO_VIRTUAL_P): ... here. Require TREE_BINFO only.
15330 (BINFO_MARKED, BINFO_FLAG_[16]): New binfo flags.
15331 * dbxout.c (dbxout_type): Use BINFO_VIRTUAL_P.
15332 * dwarf2out.c (add_data_member_location_attribute): Likewise.
15333 (gen_inheritance_die): Likewise.
15334 * tree-dump.c (deque_and_dump): Likewise.
15335 * doc/c-tree.texi (Binfos): Add under reconstruction note.
15337 2004-07-06 Steven Bosscher <stevenb@suse.de>
15339 * config/mcore/mcore.c (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE):
15341 * config/mcore/mcore.md: Model memory latency with a simple DFA
15342 pipeline description instead of a define_function_unit.
15344 2004-07-05 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
15346 * langhooks-def.h (LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P): Extra arg.
15347 * langhooks.h (var_mod_type_p): Likewise.
15348 * c-decl.c (finish_decl): Add extra arg to variably_modified_type_p.
15349 * expr.c (count_type_elements): Properly handle return from
15350 array_type_nelts and properly test for overflow.
15351 * gimplify.c (gimplify_init_constructor): Properly handle return
15352 from array_type_nelts.
15353 (gimplify_addr_expr): Remove redundant clear of TREE_SIDE_EFFECTS.
15354 * integrate.c (copy_decl_for_inlining): Correct comments.
15355 * tree-inline.c (remap_decl): Update comments, remove dead code,
15356 and copy DECL_FIELD_OFFSET and DECL_QUALIFIER, if they exist.
15357 (remap_type): Only remap if variably modified by vars in function
15359 (copy_body_r): Use compatible_type langhooks to see when can fold.
15360 (setup_one_parameter): Don't remap type.
15361 (inline_forbidden_p_1): Add arg to variably_modified_type_p.
15362 * tree.c (recompute_tree_invarant_for_addr_expr): Properly
15363 compute TREE_INVARIANT for decl case.
15364 (find_var_from_fn): New function.
15365 (variably_modified_type_p): Add arg and call new function.
15366 * tree.h (variably_modified_type_p): Add extra arg.
15368 2004-07-05 Eric Botcazou <ebotcazou@libertysurf.fr>
15370 * config/sparc/sparc.md (nonlocal_goto): Remove disabled code.
15371 (goto_handler_and_restore_v9): Delete disabled insn.
15372 (goto_handler_and_restore_v9_sp64): Likewise.
15374 2004-07-05 Roger Sayle <roger@eyesopen.com>
15376 * calls.c (load_register_parameters): Call expand_shift instead
15377 of expand_binop with ashl_optab (or other shift optab) directly.
15378 * expr.c (emit_group_load, emit_group_store): Likewise.
15379 * function.c (assign_parm_setup_block): Likewise.
15380 * stmt.c (shift_return_value): Likewise.
15382 2004-07-05 Jakub Jelinek <jakub@redhat.com>
15384 * expr.c (expand_assignment): Disable the bitfield += optimizations.
15386 2004-07-05 Joseph S. Myers <jsm@polyomino.org.uk>
15388 * doc/sourcebuild.texi: Revert previous patch.
15390 2004-07-05 Joseph S. Myers <jsm@polyomino.org.uk>
15392 * c-decl.c, config/m32r/m32r.c, expr.c, optabs.c: Don't check
15393 TARGET_MEM_FUNCTIONS.
15394 * system.h: Poison TARGET_MEM_FUNCTIONS.
15395 * libfuncs.h (LTI_bcopy, LTI_bcmp, LTI_bzero, bcopy_libfunc,
15396 bcmp_libfunc, bzero_libfunc): Remove.
15397 * optabs.c (init_obtabs): Don't set bcopy_libfunc, bcmp_libfunc or
15399 * doc/tm.texi (TARGET_MEM_FUNCTIONS): Remove.
15400 * doc/standards.texi: Don't mention calling BSD string functions.
15401 * doc/invoke.texi: Likewise. Mention that memmove may be called.
15402 * config/vax/t-memfuncs: New.
15403 * config/memcmp.c, config/memcpy.c, config/memmove.c,
15404 config/memset.c: New.
15405 * config/pdp11/t-pdp11 (LIB2FUNCS_EXTRA): Use these files.
15406 * config.gcc (vax-*-bsd*, vax-*-sysv*, vax-*-ultrix*): Use
15408 * config/alpha/alpha.h, config/arc/arc.h, config/arm/arm.h,
15409 config/avr/avr.h, config/c4x/c4x.h, config/cris/aout.h,
15410 config/elfos.h, config/gnu.h, config/h8300/h8300.h,
15411 config/i386/gas.h, config/ia64/ia64.h, config/interix.h,
15412 config/ip2k/ip2k.h, config/lynx-ng.h, config/m32r/m32r.h,
15413 config/mcore/mcore.h, config/mips/mips.h, config/mmix/mmix.h,
15414 config/netbsd.h, config/openbsd.h, config/pa/pa.h,
15415 config/rs6000/rs6000.h, config/rtems.h, config/s390/s390.h,
15416 config/sh/sh.h, config/sparc/sparc.h, config/stormy16/stormy16.h,
15417 config/svr3.h: Don't define TARGET_MEM_FUNCTIONS.
15419 2004-07-05 Richard Henderson <rth@redhat.com>
15421 * function.c (assign_parm_setup_reg): Properly rename variables in
15422 FUNCTION_ARG_CALLEE_COPIES section.
15424 2004-07-05 Zack Weinberg <zack@codesourcery.com>
15426 * tree-mudflap.c: Include cgraph.h.
15427 (mf_init_extern_trees): Rename to mudflap_init. Export.
15428 Rewrite to create synthetic declarations instead of looking
15429 up declarations from mf-runtime.h.
15430 (mf_make_builtin, mf_make_cache_struct_type): New functions.
15431 (mf_cache_shift_decl, mf_cache_mask_decl, mf_unregister_fndecl):
15432 Correct commentary.
15433 (execute_mudflap_function_decls, mudflap_register_call):
15434 Don't call mf_init_extern_trees.
15435 (mudflap_finish_file): Use cgraph_build_static_cdtor.
15437 * tree-mudflap.h: Update prototypes.
15438 * c-mudflap.c: Delete file.
15439 * c-common.c: Include tree-mudflap.h.
15440 (c_common_nodes_and_builtins): Call mudflap_init if appropriate.
15441 * Makefile.in: Remove all references to c-mudflap.o.
15442 Update dependencies.
15444 2004-07-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
15446 * pa.md (prefetch, prefetch_32, prefetch_64): Only allow short
15447 displacements with the spatial-locality cache-control completer.
15449 2004-07-05 Zack Weinberg <zack@codesourcery.com>
15451 * langhooks.c: Don't include gt-langhooks.h.
15452 (var_labelno): Delete.
15453 (lhd_set_decl_assembler_name): Do not append a distinguishing
15454 number to file-scope internal-linkage declarations for the first
15455 input file, even if they have DECL_CONTEXT set. Use DECL_UID of
15456 the declaration itself (if at block scope), or its containing
15457 TRANSLATION_UNIT_DECL (if at file scope) for the distinguishing
15460 * opts.c (cur_in_fname): New global.
15461 * opts.h: Declare it.
15462 * tree.c: Include opts.h.
15463 (make_node_stat): If creating a TRANSLATION_UNIT_DECL, give it
15464 DECL_UID equal to cur_in_fname.
15465 (copy_node_stat): Do not change DECL_UID when copying a
15466 TRANSLATION_UNIT_DECL.
15467 (build_common_tree_nodes): Adjust next_decl_uid to reserve the
15468 range 0 .. num_in_fnames-1 for TRANSLATION_UNIT_DECLs.
15470 * c-decl.c (c_static_assembler_name): Delete.
15471 * c-tree.h (c_static_assembler_name): Delete prototype.
15472 * c-lang.c, objc/objc-lang.c: Don't override
15473 LANG_HOOKS_SET_DECL_ASSEMBLER_NAME.
15475 * Makefile.in (tree.o): Update dependencies.
15476 (GTFILES): Remove langhooks.c.
15478 2004-07-05 Roger Sayle <roger@eyesopen.com>
15480 * fold-const.c (fold) <TRUNC_MOD_EXPR>: Optimize unsigned modulus
15481 by a power of two into a bit-wise AND, i.e. "X % C" as "X & (C-1)".
15482 Normalize "X % C" as "X % -C" for signed modulus and negative C.
15483 Optimize "X % -Y" as "X % Y" for signed modulus.
15484 <EQ_EXPR>: Recursively call "fold" when transforming "(X % Y) == 0"
15485 into "((unsigned) X % Y) == 0".
15487 2004-07-05 Joseph S. Myers <jsm@polyomino.org.uk>
15489 * sourcebuild.texi (Config Fragments): Use @comma{} in
15490 cross-reference to section title.
15492 2004-07-05 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
15494 * tree.h (DECL_SEEN_IN_BIND_EXPR_P): New macro.
15495 * gimplify.c (gimple_add_tmp_var, gimplify_bind_expr): Use it.
15496 (gimplify_target_expr, gimplify_expr): Likewise.
15497 (copy_if_shared_r): No longer need special case for BIND_EXPR.
15498 (unshare_body, unvisit_body): Only look at nested if BODY_P is
15500 (gimplify_compound_lval): See if we can strip any useless conversion.
15501 (gimplify_modify_expr, gimplify_modify_expr_to_memcpy): Take size
15503 (gimplify_modify_expr_to_memset): Likewise.
15504 (gimplify_expr, case CONSTRUCTOR): Handle use as statement.
15505 * tree-inline.c (setup_one_parameter): Use DECL_SEEN_IN_BIND_EXPR_P.
15506 (declare_inline_vars): Likewise.
15507 (walk_type_fields): New function.
15508 (walk_tree): Use it.
15509 * tree-nested.c (create_tmp_var_for): Show seen in BIND_EXPR.
15511 * tree-sra.c (struct sra_walk_fns): Init function now returns bool.
15512 (sra_walk_modify_expr): Allow init function to fail.
15513 (scan_init): Now returns bool.
15514 (generate_element_init): If can't understand INIT, return false.
15515 (scalarize_init): Return false if generate_element_init does.
15517 * tree-pretty-print.c (dump_generic_node, case ARRAY_TYPE): Properly
15520 * expr.c (expand_expr_real_1, case SWITCH_EXPR): Don't check against
15521 bounds if bounds aren't constant.
15523 * tree-cfg.c (verify_expr): Use CHECK_OP in binary case.
15525 * function.c, langhooks-def.h, langhooks.h: Move max_size hook
15526 to type hooks; remove bogus PARAMS.
15528 2004-07-05 Nathan Sidwell <nathan@codesourcery.com>
15530 * c-tree.h (TYPE_ACTUAL_ARG_TYPES): Use TYPE_LANG_SLOT_1.
15531 * dwarf2out.c (add_data_member_location_attribute): Check for
15533 * tree.c (tree_node_kinds): Add "binfos".
15534 (binfo_lang_slots): New.
15535 (make_node_stat): Add TREE_BINFO.
15536 (make_tree_binfo_stat): New.
15537 (tree_node_structure): Add TREE_BINFO.
15538 * tree.def (TREE_BINFO): New.
15539 * tree.h (REC_OR_UNION_CHECK): Rename to ...
15540 (RECORD_OR_UNION_CHECK): ... here.
15541 (NOT_RECORD_OR_UNION_CHECK): New.
15542 (TRE_VIA_VIRTUAL): Allow TREE_LIST or TREE_BINFO.
15543 (TYPE_FIELDS, TYPE_METHODS, TYPE_VFIELD): Adjust for
15544 RECORD_OR_UNION_CHECK.
15545 (TYPE_BINFO): Use RECORD_OR_UNION_CHECK.
15546 (TYPE_LANG_SLOT_1): New.
15547 (BINFO_TYPE, BINFO_OFFSET, BINFO_VTABLE, BINFO_VIRTUALS,
15548 BINFO_BASETYPES, TYPE_BINFO_BASETYPES, BINFO_VPTR_FIELD,
15549 BINFO_BASEACCESSES, BINFO_INHERITANCE_CHAIN): Adjust.
15550 (BINFO_ELTS): Remove.
15551 (BINFO_LANG_SLOT): New.
15552 (struct tree_binfo): New.
15553 (binfo_lang_slots): Declare.
15554 (enum tree_node_structure_enum): Add TS_BINFO.
15555 (union tree_node): Add binfo.
15556 (make_tree_binfo_stat): Declare.
15557 (make_tree_binfo): New.
15558 (enum tree_node_kind): Add binfo_kind.
15560 * objc/objc-act.c (start_class, objc_declare_protocols,
15561 start_protocols): Use TYPE_LANG_SLOT_1.
15562 * objc/objc-act.h (CLASS_BINFO_ELTS, PROTOCOL_BINFO_ELTS): Rename
15564 (CLASS_LANG_SLOT_ELTS, PROTOCOL_LANG_SLOT_ELTS): ... here.
15565 (CLASS_IVARS, CLASS_RAW_IVARS, CLASS_STATIC_TEMPLATE,
15566 CLASS_CATEGORY_LIST, CLASS_PROTOCOL_LIST, CLASS_OWN_IVARS,
15567 PROTOCOL_LIST, PROTOCOL_FORWARD_DECL): Use TYPE_LANG_SLOT_1.
15569 2004-07-05 Steven Bosscher <stevenb@suse.de>
15571 * rtl.h (struct rtx_def): Remove the integrated flag.
15572 Use the return_val flag for MEM_SCALAR_P.
15573 Reshuffle and update flags in CLEAR_RTX_FLAGS.
15575 2004-07-05 Richard Sandiford <rsandifo@redhat.com>
15578 * config/mips/mips.c (mips_block_move_straight): Pass BLKmode memrefs
15579 to mips_expand_unaligned_load, mips_expand_unaligned_store, and
15582 2004-07-05 Josef Zlomek <zlomekj@suse.cz>
15584 * var-tracking.c: Fix some comments.
15585 (frame_stack_adjust): New.
15586 (vt_stack_adjustments): Init stack_adjust of entry block to
15587 minus stack adjustment of function prologue.
15588 (adjust_stack_reference): Do not adjust if adjustment == 0.
15589 (compute_bb_dataflow): Use plus_constant instead of gen_rtx_PLUS.
15590 (emit_notes_in_bb): Likewise.
15591 (vt_add_function_parameters): Do not adjust locations of
15592 function arguments.
15593 (vt_initialize): Compute the stack adjustment of function
15594 prologue and offset the initial "location" of frame_base_decl
15595 from the stack pointer after prologue.
15597 2004-07-04 Richard Henderson <rth@redhat.com>
15599 * function.c (struct assign_parm_data_all): New.
15600 (struct assign_parm_data_one): New.
15601 (assign_parms_initialize_all, assign_parms_augmented_arg_list,
15602 assign_parm_find_data_types, assign_parms_setup_varargs,
15603 assign_parm_find_entry_rtl, assign_parm_is_stack_parm,
15604 assign_parm_find_stack_rtl, assign_parm_adjust_entry_rtl,
15605 assign_parm_adjust_stack_rtl, assign_parm_setup_block_p,
15606 assign_parm_setup_block, assign_parm_setup_reg,
15607 assign_parm_setup_stack, assign_parms_unsplit_complex): Split from ...
15608 (assign_parms): ... here.
15610 2004-07-04 Daniel Berlin <dberlin@dberlin.org>
15612 * tree-ssa-pre.c (bb_value_sets): phi_gen, tmp_gen, new_sets
15613 now are bitmap_set_t's.
15614 (bitmap_insert_into_set): No point in inserting the value if
15616 (bitmap_set_contains): New function.
15617 (bitmap_set_replace_value): Add comment on why we do it
15619 (set_contains): Removed.
15620 (bitmap_set_subtract_from_value_set): New name of
15621 set_subtract now that it's arguments are two different
15624 (bitmap_find_leader): Change algorithm used.
15625 (find_or_generate_expression): Update use of functions for new
15627 (create_expression_by_pieces): Ditto.
15628 (insert_aux): Ditto.
15630 (add_to_sets): Ditto.
15632 (execute_pre): Ditto.
15633 (compute_avail): Ditto.
15634 Also ignore virtual phis.
15636 2004-07-04 Richard Sandiford <rsandifo@redhat.com>
15638 * combine.c (simplify_comparison): Fix comment typo.
15640 2004-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
15642 * config/sparc/sparc.c (SIBCALL_SLOT_EMPTY_P): Rename
15643 into LEAF_SIBCALL_SLOT_RESERVED_P after negation.
15644 (eligible_for_sibcall_delay): Adjust use of SIBCALL_SLOT_EMPTY_P.
15645 (output_restore): Change parameter from 'insn' to 'pat'.
15646 (output_return): Adjust call to output_restore.
15647 (output_sibcall): Adjust use of SIBCALL_SLOT_EMPTY_P.
15648 Adjust call to output_restore.
15650 2004-07-04 Neil Booth <neil@duron.akihabara.co.uk>
15652 * config/netbsd.h (NETBSD_OS_CPP_BUILTINS_COMMON): Define __unix__
15653 and assert system is bsd.
15655 2004-07-04 Richard Sandiford <rsandifo@redhat.com>
15657 * config/mips/mips.h (MASK_DEBUG_C, TARGET_DEBUG_C_MODE): Delete.
15658 (TARGET_SWITCHES): Remove -mdebugc.
15659 * config/mips/mips.md (seq, sne, sgt, sge, slt, sle, sgtu, sgeu)
15660 (sltu, sleu): Remove TARGET_DEBUG_C_MODE handling.
15661 (seq_[sd]i, sne_[sd]i, sge_[sd]i, sle_[sd]i_reg, sgeu_[sd]i)
15662 (sle_[sd]i_reg): Delete.
15664 2004-07-04 Steven Bosscher <stevenb@suse.de>
15666 * config/iq2000/iq2000.c (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE):
15668 * config/iq2000/iq2000.md: Translate old pipeline description to an
15669 equivalent new one.
15671 2004-07-04 Roger Sayle <roger@eyesopen.com>
15673 * tree-ssa-ccp.c (set_rhs): Change function to return a bool.
15674 Ensure the replacement rhs is valid gimple before performing
15675 the substitution. Return false if these sanity checks fail.
15676 (fold_stmt): Only set changed to true, if set_rhs returns true.
15677 (execute_fold_all_builtins): Only call modify_stmt if set_rhs
15680 2004-07-04 Richard Henderson <rth@redhat.com>
15683 * c-typeck.c (c_finish_loop): Don't clear cond for cond_is_first loops.
15685 2004-07-04 Mark Mitchell <mark@codesourcery.com>
15687 * configure.ac (ranlib_flags): New variable.
15688 * Makefile.in (RANLIB_FLAGS): New variable.
15689 (libbackend.a): Use it.
15690 * configure: Regenerated.
15692 2004-07-04 Roger Sayle <roger@eyesopen.com>
15694 * ifcvt.c (noce_try_sign_mask): Call emit_store_flag to generate
15695 a "sign mask" instead of using ashr_optab directly.
15697 2004-07-04 Neil Booth <neil@duron.akihabara.co.uk>
15699 * doc/cpp.texi: Don't document what we do for ill-formed expressions.
15700 * doc/cppopts.texi: Clarify processing of command-line defines.
15702 2004-07-04 Gerald Pfeifer <gerald@pfeifer.com>
15704 * doc/contrib.texi (Contributors): Adjust link for GNU Classpath.
15706 2004-07-04 Richard Henderson <rth@redhat.com>
15708 * rtl.def (ADDRESSOF): Remove.
15709 * alias.c (rtx_equal_for_memref_p): Don't handle addressof.
15710 (find_base_term, memrefs_conflict_p): Likewise.
15711 * cse.c (fixed_base_plus_p, find_best_addr: Likewise.
15712 (fold_rtx, cse_insn, set_live_p): Likewise.
15713 * dwarf2out.c (mem_loc_descriptor): Likewise.
15714 (add_location_or_const_value_attribute): Likewise.
15715 * emit-rtl.c (copy_insn_1): Likewise.
15716 * explow.c (memory_address): Likewise.
15717 * expmed.c (store_split_bit_field): Likewise.
15718 * expr.c (expand_expr_real_1): Likewise.
15719 * function.c (instantiate_decl
15720 (instantiate_virtual_regs_1, fix_lexical_addr): Likewise.
15721 * genrecog.c (preds, validate_pattern): Likewise.
15722 * integrate.c (copy_rtx_and_substitute): Likewise.
15723 * recog.c (general_operand, register_operand): Likewise.
15724 (memory_address_p): Likwise.
15725 * reload1.c (eliminate_regs, elimination_effects): Likewise.
15726 * rtl.c (copy_rtx): Likewise.
15727 * rtlanal.c (rtx_unstable_p, rtx_varies_p): Likewise.
15728 (rtx_addr_can_trap_p, nonzero_address_p, address_cost): Likewise.
15729 * rtlhooks.c (gen_lowpart_general): Likewise.
15730 * stmt.c (expand_asm_operands): Likewise.
15731 * web.c (entry_register, replace_ref, web_main): Likewise.
15732 * config/alpha/alpha.c (input_operand, alpha_legitimate_address_p,
15733 alpha_expand_block_move, alpha_expand_block_clear): Likewise.
15734 * config/arm/arm.c (thumb_rtx_costs): Likewise.
15735 * config/c4x/c4x.c (c4x_valid_operands): Likewise.
15736 * config/frv/frv.c (move_destination_operand, move_source_operand,
15737 condexec_dest_operand, condexec_source_operand,
15738 condexec_memory_operand): Likewise.
15739 * config/h8300/h8300.h (PREDICATE_CODES): Likewise.
15740 * config/ia64/ia64.c (general_xfmode_operand): Likewise.
15741 (destination_xfmode_operand): Likewise.
15742 * config/mips/mips.h (PREDICATE_CODES): Likewise.
15743 * config/mn10300/mn10300.c (mn10300_address_cost_1): Likewise.
15744 * config/s390/s390.c (general_s_operand): Likewise.
15745 * config/s390/s390.md (mov*): Likewise.
15746 * config/sparc/sparc.h (PREDICATE_CODES): Likewise.
15748 * c-typeck.c (c_mark_addressable): Don't put_var_into_stack.
15749 * expr.c (expand_expr_real_1): Likewise.
15750 * stmt.c (expand_decl): Likewise.
15751 * config/c4x/c4x.c (c4x_expand_builtin): Likewise.
15753 * function.c (struct fixup_replacement, struct insns_for_mem_entry,
15754 postponed_insns, put_var_into_stack, put_reg_into_stack,
15755 schedule_fixup_var_refs, fixup_var_refs, find_fixup_replacement,
15756 fixup_var_refs_insns, fixup_var_refs_insns_with_hash,
15757 fixup_var_refs_insn, fixup_var_refs_1, fixup_memory_subreg,
15758 walk_fixup_memory_subreg, fixup_stack_1, optimize_bit_field,
15759 gen_mem_addressof, flush_addressof, put_addressof_into_stack,
15760 purge_bitfield_addressof_replacements, purge_addressof_replacements,
15761 purge_addressof_1, insns_for_mem_hash, insns_for_mem_comp,
15762 struct insns_for_mem_walk_info, insns_for_mem_walk,
15763 compute_insns_for_mem, is_addressof, purge_addressof, setjmp_protect,
15764 setjmp_protect_args): Remove.
15765 (push_function_context_to): Don't handle var_refs_queue.
15766 (pop_function_context_from, free_after_compilation): Likewise.
15767 (instantiate_virtual_regs): Don't handle parm_reg_stack_loc.
15768 (assign_parms, allocate_struct_function): Likewise.
15769 (use_register_for_decl): New.
15770 (expand_function_end): Don't setjmp_protect.
15771 * function.h (struct emit_status): Update commentary.
15772 (struct function): Remove x_max_parm_reg, x_parm_reg_stack_loc.
15773 (max_parm_reg, parm_reg_stack_loc): Remove.
15774 * passes.c (DFI_addressof): Remove.
15775 (dump_file_info): Remove addressof.
15776 (rest_of_handle_addressof): Remove.
15777 (rest_of_compilation): Don't call it.
15778 * rtl.h (ADDRESSOF_REGNO, ADDRESSOF_DECL): Remove.
15779 * stmt.c (expand_decl): Use use_register_for_decl.
15780 * tree.h: Update decls.
15781 * web.c (mark_addressof): Remove.
15782 * doc/invoke.texi (-dF): Remove.
15784 2004-07-03 Richard Henderson <rth@redhat.com>
15786 * config/ia64/ia64.c (spill_xfmode_operand): Use assign_stack_temp
15787 instead of gen_mem_addressof.
15788 * config/ia64/ia64.md (movxf): Use assign_stack_temp to handle
15789 TImode output register.
15791 2004-07-03 Richard Henderson <rth@redhat.com>
15793 PR tree-optimization/16341
15794 * tree-sra.c (sra_walk_function): Increment to next stmt before
15795 processing the current stmt.
15796 (sra_insert_after): Always use BSI_SAME_STMT.
15798 2004-07-03 Richard Henderson <rth@redhat.com>
15800 * tree-ssa-dom.c (simplify_rhs_and_lookup_avail_expr): Don't fold
15801 fp plus with minus.
15803 2004-07-03 Joseph S. Myers <jsm@polyomino.org.uk>
15805 * tree.c (type_hash_eq): Allow TYPE_MIN_VALUE which compares equal
15806 with tree_int_cst_equal.
15808 2004-07-03 Andreas Schwab <schwab@suse.de>
15810 * config/ia64/ia64.md: Define new attribute "empty".
15811 (prologue_use, nop_x, insn_group_barrier): Set it.
15813 * config/ia64/ia64.c (ia64_reorg): When looking for trailing call
15814 skip over "empty" insns.
15816 2004-07-03 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
15818 * tree-inline.c (initialize_inlined_parameters): Pass proper function
15819 context to gimplify_body.
15820 (walk_tree): Don't walk into types twice.
15821 (walk_tree, case POINTER_TYPE): Deal with mutually recursive pointers.
15823 * tree-sra.c (generate_element_init): Remove any useless conversions.
15825 * gimplify.c (gimplify_conversion): Remove stripping useless
15826 conversions from here.
15827 (gimplify_expr): Put it here, in place of call to STRIP_MAIN_TYPE_NOPS.
15828 (gimplify_modify_expr_to_memcpy, gimplify_variable_sized_compare):
15829 Unshare before substituting PLACEHOLDER_EXPR.
15830 (gimplify_modify_expr_to_memset): Likewise.
15831 Pass address of TO to memset, not TO itself.
15832 (gimplify_init_constructor): Make copy of OBJECT so we have it each
15833 time we make an expression (to match a PLACEHOLDER_EXPR).
15835 * tree-ssa.c (tree_ssa_useless_type_conversion): Also look at
15836 VIEW_CONVERT_EXPR and NON_LVALUE_EXPR.
15837 * tree-ssa-ccp.c (fold_stmt): Call just STRIP_USELESS_TYPE_CONVERSION.
15838 * tree-ssa-dom.c (local_fold): Likewise.
15840 * langhooks-def.h (LANG_HOOKS_TYPE_MAX_SIZE): New langhook.
15841 * langhooks.h (strct lang_hooks): New field type_max_size.
15842 * function.c (assign_temp): Call it.
15844 2004-07-03 Steven Bosscher <stevenb@suse.de>
15846 * config/sh/sh.c (sh_use_dfa_interface): Add TARGET_SH1.
15847 * config/sh/sh.md: Convert the SH1 pipeline description to
15850 2004-07-02 Zack Weinberg <zack@codesourcery.com>
15852 * c-decl.c (struct c_binding): Remove contour field; add
15853 depth, invisible, nested fields.
15854 (B_IN_SCOPE, B_IN_CURRENT_SCOPE, B_IN_FILE_SCOPE)
15855 (B_IN_EXTERNAL_SCOPE): New convenience macros.
15856 (bind): Add invisible and nested arguments. Initialize
15857 new fields of struct c_binding; adjust loop scanning for
15859 (free_binding_and_advance): Clear structure with memset.
15860 (pop_scope): Adjust to match. Set DECL_CONTEXT on everything
15861 in file scope, even if it's in external scope too.
15862 (pushdecl): Adjust to match. Create invisible file-scope
15863 declarations for block-scope forward declarations of static functions.
15864 (pushtag, warn_if_shadowing, pushdecl_top_level, implicitly_declare)
15865 (undeclared_variable, lookup_label, declare_label, define_label)
15866 (lookup_tag, lookup_name, lookup_name_in_scope, builtin_function)
15867 (c_make_fname_decl, store_parm_decls_newstyle, identifier_global_value)
15868 (store_parm_decls_oldstyle): Adjust to match.
15869 (diagnose_mismatched_decls): Correct handling of linkage clashes.
15870 (merge_decls): No need to copy C_DECL_IN_EXTERNAL_SCOPE.
15872 * c-tree.h (C_DECL_IN_EXTERNAL_SCOPE): Delete.
15873 (C_DECL_DECLARED_BUILTIN, C_DECL_REGISTER): Slide down one.
15875 2004-07-02 Richard Henderson <rth@redhat.com>
15877 * c-decl.c (grokdeclarator): Don't frob current_function_decl
15878 around variable_size.
15879 (set_decl_nonlocal): Remove.
15880 (store_parm_decls): Add stmts for pending sizes.
15881 * calls.c (calls_function, calls_function_1): Remove.
15882 (precompute_arguments): Don't call it.
15883 * cfgexpand.c (set_save_expr_context): Remove.
15884 (tree_expand_cfg): Don't call it.
15885 * dwarf2out.c (add_bound_info): Don't handle SAVE_EXPR.
15886 (dwarf2out_finish): Likewise.
15887 * expr.c (emit_block_move): Adjust addresses to BLKmode.
15888 (store_constructor): Don't pre-evaluate SAVE_EXPR.
15889 (safe_from_p): Don't queue SAVE_EXPRs.
15890 (expand_expr_real_1 <case SAVE_EXPR>): Rewrite to expect,
15891 or build plain VAR_DECLs.
15892 * fold-const.c (twoval_comparison_p): Don't look at SAVE_EXPR_RTL.
15894 (fold_checksum_tree): Don't special-case SAVE_EXPR.
15895 * function.c (free_after_compilation): Don't clear x_save_expr_regs.
15896 (put_var_into_stack): Don't handle SAVE_EXPR.
15897 (gen_mem_addressof): Likewise.
15898 * function.h (struct function): Remove x_save_expr_regs.
15899 (save_expr_regs): Remove.
15900 * gengtype.c (adjust_field_tree_exp): Don't special-case SAVE_EXPR.
15901 * print-tree.c (print_node): Don't dump SAVE_EXPR_NOPLACEHOLDER.
15902 * stor-layout.c (variable_size): Don't set it.
15903 (force_type_save_exprs, force_type_save_exprs_1): Remove.
15904 * tree-inline.c (remap_save_expr): Remove fn argument. Update
15905 all callers. Don't set SAVE_EXPR_CONTEXT.
15906 * tree-inline.h (remap_save_expr): Update decl.
15907 * tree.c (save_expr): Update build size.
15908 (first_rtl_op): Don't handle SAVE_EXPR.
15909 (unsave_expr_1, contains_placeholder_p): Likewise.
15910 (decl_function_context): Likewise.
15911 * tree.def (SAVE_EXPR): Remove args 1 and 2.
15912 * tree.h (SAVE_EXPR_CONTEXT, SAVE_EXPR_RTL): Remove.
15913 (SAVE_EXPR_NOPLACEHOLDER, SAVE_EXPR_PERSISTENT_P): Remove.
15915 2004-07-03 Joseph S. Myers <jsm@polyomino.org.uk>
15917 * doc/bugreport.texi, doc/configterms.texi, doc/contrib.texi,
15918 doc/contribute.texi, doc/cpp.texi, doc/cppinternals.texi,
15919 doc/extend.texi, doc/install.texi, doc/invoke.texi, doc/md.texi,
15920 doc/portability.texi, doc/tree-ssa.texi, doc/trouble.texi: Avoid
15921 some first-person references and patronizing comments. Based on
15923 * doc/invoke.texi: Don't reference fortran@gnu.org.
15924 * doc/trouble.texi (Warning when a non-void function value is
15925 ignored): Rewrite. From Russ Allbery and Chris Devers.
15927 2004-07-02 Daniel Berlin <dberlin@dberlin.org)
15929 * tree-ssa-pre.c (bitmap_set_t): New.
15930 (bb_value_sets): avail_out is now a bitmap_set_t.
15931 (bitmap_find_leader): New function.
15932 (bitmap_value_insert_into_set): Ditto.
15933 (bitmap_set_copy): Ditto.
15934 (bitmap_value_replace_in_set): Ditto.
15935 (bitmap_set_contains_value): Ditto.
15936 (bitmap_set_new): Ditto.
15937 (bitmap_set_pool): New pool.
15938 (find_or_generate_expression): Use bitmap_ functions on AVAIL sets.
15939 (insert_aux): Ditto.
15940 (add_to_sets): Ditto.
15941 (compute_avail): Ditto
15942 (eliminate): Ditto.
15945 (execute_pre): Ditto.
15947 2004-07-02 Roger Sayle <roger@eyesopen.com>
15949 * config/rs6000/rs6000.c (struct processor_costs): New structure
15950 used to hold instruction latencies/sizes for processor types.
15951 (rs6000_cost): New global variable pointing to current CPU's costs.
15952 (rs6000_override_options): Initialize rs6000_cost to point to the
15953 appropriate cost table based upon rs6000_cpu and optimize_size.
15954 (rs6000_rtx_costs): Use rs6000_cost to avoid hardcoding processor
15957 2004-07-02 Richard Henderson <rth@redhat.com>
15959 * expmed.c (make_tree): Don't use SET_DECL_RTL.
15961 2004-07-02 Steven Bosscher <stevenb@suse.de>
15963 * tree-flow.h (bb_ann_d): Remove ephi_nodes field.
15965 2004-07-01 Richard Henderson <rth@redhat.com>
15967 * config/alpha/alpha.c (struct machine_function): Add gp_save_rtx.
15968 (alpha_gp_save_rtx): Use assign_stack_local instead of
15971 2004-07-01 Richard Henderson <rth@redhat.com>
15973 * config/alpha/alpha.c (struct alpha_rtx_cost_data): Add int_div.
15974 (alpha_rtx_cost_data): Update to match.
15975 (alpha_rtx_cost_size): New.
15976 (alpha_rtx_costs): Honor optimize_size.
15978 2004-07-01 Richard Henderson <rth@redhat.com>
15980 * gimple-low.c (lower_function_body): Don't reset_block_changes here.
15981 * cfgexpand.c (tree_expand_cfg): Do it here.
15982 * config/alpha/alpha.c (alpha_output_mi_thunk_osf): And here.
15983 * config/ia64/ia64.c (ia64_output_mi_thunk): And here.
15984 * config/mips/mips.c (mips_output_mi_thunk): And here.
15985 * config/rs6000/rs6000.c (rs6000_output_mi_thunk): And here.
15986 * config/sh/sh.c (sh_output_mi_thunk): And here.
15987 * config/sparc/sparc.c (sparc_output_mi_thunk): And here.
15989 2004-07-01 Richard Henderson <rth@redhat.com>
15991 * tree.def (RTL_EXPR): Remove.
15992 * c-typeck.c (lvalue_p): Don't handle it.
15993 * expr.c (safe_from_p): Likewise.
15994 (expand_expr_real_1): Likewise.
15995 * fold-const.c (non_lvalue, operand_equal_p, fold): Likewise.
15996 (fold_checksum_tree, tree_expr_nonnegative_p): Likewise.
15997 * gengtype.c (adjust_field_tree_exp): Likewise.
15998 * stmt.c (warn_if_unused_value): Likewise.
15999 * tree-gimple.c (recalculate_side_effects): Likewise.
16000 * tree-pretty-print.c (dump_generic_node): Likewise.
16001 * tree.c (make_node_stat, first_rtl_op, unsave_expr_1): Likewise.
16002 (unsafe_for_reeval, stabilize_reference, build1_stat): Likewise.
16003 * tree.h (RTL_EXPR_SEQUENCE, RTL_EXPR_RTL, RTL_EXPR_ALT_RTL): Remove.
16005 * stmt.c (struct stmt_status): Remove x_last_expr_type,
16006 x_last_expr_value, x_last_expr_alt_rtl, x_expr_stmts_for_value.
16007 (last_expr_type, last_expr_value, last_expr_alt_rtl): Remove.
16008 (expand_expr_stmt): Merge with expand_expr_stmt_value. Remove
16009 all the bits that tracked last_expr.
16010 (expand_end_bindings): Don't track last_expr.
16011 (expand_start_stmt_expr, expand_end_stmt_expr): Remove.
16012 (clear_last_expr): Remove.
16013 (expand_asm): Don't call it.
16014 (expand_asm_operands, expand_end_cond): Likewise.
16015 (expand_naked_return, expand_null_return_1): Likewise.
16016 * c-typeck.c (c_begin_compound_stmt): Likewise.
16017 * cfgexpand.c (expand_block): Use expand_expr_stmt.
16018 * expr.c (expand_expr_real_1): Likewise.
16019 * tree.h: Update prototypes.
16021 * function.h (struct sequence_stack): Remove sequence_rtl_expr.
16022 (struct emit_status): Remove sequence_rtl_expr.
16023 (struct function): Remove x_rtl_expr_chain.
16024 (seq_rtl_expr, rtl_expr_chain): Remove.
16025 * function.c (struct temp_slot): Remove rtl_expr.
16026 (assign_stack_temp_for_type): Don't set it.
16027 (free_temp_slots, pop_temp_slots): Don't check it.
16028 (free_after_compilation): Don't clear x_rtl_expr_chain.
16029 (fixup_var_refs): Don't search it.
16030 (preserve_rtl_expr_result, free_temps_for_rtl_expr): Remove.
16031 * emit-rtl.c (start_sequence): Don't use sequence_rtl_expr
16033 (push_topmost_sequence): Likewise.
16034 (end_sequence, init_emit): Likewise.
16035 (start_sequence_for_rtl_expr): Remove.
16036 * expmed.c (make_tree): Build a VAR_DECL instead of an RTL_EXPR.
16037 * rtl.h (preserve_rtl_expr_result): Remove.
16039 2004-07-02 Kazu Hirata <kazu@cs.umass.edu>
16041 * ifcvt.c, modulo-sched.c, tree-alias-common.c, tree-sra.c,
16042 tree-ssa-copy.c, tree-ssa-dom.c, tree-ssa-pre.c: Fix comment
16045 2004-07-02 Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
16047 * gcc.c (STANDARD_STARTFILE_PREFIX_1): Define.
16048 (STANDARD_STARTFILE_PREFIX_2): Define.
16049 (standard_startfile_prefix_1): Initialize to
16050 STANDARD_STARTFILE_PREFIX_1.
16051 (standard_startfile_prefix_2): Initialize to
16052 STANDARD_STARTFILE_PREFIX_2.
16053 * config/i386/mingw32.h (MD_STARTFILE_PREFIX): Remove.
16054 (STANDARD_STARTFILE_PREFIX_1): Define.
16055 (STANDARD_STARTFILE_PREFIX_2): Define.
16056 * doc/tm.texi (STANDARD_STARTFILE_PREFIX_1): Document.
16057 (STANDARD_STARTFILE_PREFIX_2): Document.
16059 2004-07-01 Richard Henderson <rth@redhat.com>
16061 * tree-sra.c (sra_walk_expr): Don't maybe_lookup_element_for_expr
16062 in order to disable scalarization. Instead set a flag and wait
16063 for a candidate decl.
16065 2004-07-01 Joseph S. Myers <jsm@polyomino.org.uk>
16067 * doc/cppinternals.texi, doc/install.texi, doc/invoke.texi,
16068 doc/md.texi, doc/sourcebuild.texi, doc/tm.texi, doc/trouble.texi:
16069 Use terminology "testsuite" and "enumerated".
16071 2004-07-01 Richard Henderson <rth@redhat.com>
16073 * dwarf2out.c (reg_save): Use INVALID_REGNUM.
16074 (dwarf2out_reg_save, dwarf2out_return_save): Likewise.
16075 (initial_return_save): Likewise.
16076 (flush_queued_reg_saves): Remap register numbers.
16077 (dwarf2out_return_reg): Likewise.
16079 2004-07-01 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
16081 * gimplify.c (gimplify_one_sizepos): Don't do anything if any VAR_DECL.
16083 * tree-pretty-print.c (dump_generic_node, case ARRAY_REF): Use
16084 access functions for lower bound and element size and only output
16085 if lower bound nonzero or element size not same as that of type.
16086 (dump_generic_node, case COMPONENT_REF): Use access func. for offset.
16088 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
16090 * c-pretty-print.c (pp_c_postfix_expression): Fix pasto.
16092 2004-07-01 Per Bothner <per@bothner.com>
16094 * final.c (final): Fix typo reported by Aaron W. LaFramboise.
16096 2004-07-01 Jakub Jelinek <jakub@redhat.com>
16098 * expr.c (expand_assignment): Optimize bitfld += cst for 1 bit
16099 bitfields as well. STRIP_NOPS from src operand and PLUS_EXPR's
16100 first operand. Don't optimize if the bitfield is volatile.
16102 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
16104 * c-pretty-print.c (pp_c_postfix_expression): Handle
16105 floating-point comparison operators.
16106 (pp_c_expression): Pass floating-point comparison
16107 operators to pp_c_postfix_expression.
16109 2004-07-01 Roger Sayle <roger@eyesopen.com>
16111 * simplify-rtx.c (simplify_binary_operation) <PLUS, MINUS>: Use
16112 rtx_cost instead of "had_mult" to determine whether the transformed
16113 expression is cheaper than the original.
16115 2004-07-01 Jerry Quinn <jlquinn@optonline.net>
16117 * alias.c (get_alias_set, canon_rtx, get_addr,
16118 nonoverlapping_memrefs_p, nonlocal_referenced_p_1, memory_modified_1):
16120 * builtins.c (expand_builtin_prefetch, expand_builtin_profile_func,
16121 expand_builtin): Likewise.
16122 * calls.c (expand_call, emit_library_call_value_1, store_one_arg):
16124 * combine.c (can_combine_p, combinable_i3pat, try_combine,
16125 find_split_point, combine_simplify_rtx, simplify_set, make_extraction,
16126 rtx_equal_for_field_assignment_p, gen_lowpart_for_combine,
16127 record_dead_and_set_regs_1, get_last_value_validate,
16128 mark_used_regs_combine, move_deaths, unmentioned_reg_p_1): Likewise.
16129 * cse.c (check_dependence, canon_hash, equiv_constant,
16130 gen_lowpart_if_possible, cse_insn, invalidate_from_clobbers,
16131 cse_around_loop, cse_check_loop_start, cse_set_around_loop,
16132 count_reg_usage): Likewise.
16133 * cselib.c (rtx_equal_for_cselib_p, add_mem_for_addr, cselib_lookup,
16134 cselib_invalidate_mem, cselib_invalidate_rtx, cselib_record_set,
16135 cselib_record_sets): Likewise.
16136 * dbxout.c (PARM_PASSED_IN_MEMORY, dbxout_symbol,
16137 dbxout_symbol_location, dbxout_parms, dbxout_reg_parms): Likewise.
16138 * ddg.c (mark_mem_use, mark_mem_store, rtx_mem_access_p): Likewise.
16139 * df.c (df_uses_record): Likewise.
16140 * dojump (do_jump): Likewise.
16141 * dwarf2out.c (stack_adjust_offset, mem_loc_descriptor,
16142 loc_descriptor_from_tree, rtl_for_decl_location, add_bound_info,
16143 decl_start_label): Likewise.
16144 * emit-rtl.c (gen_complex_constant_part, gen_highpart,
16145 operand_subword, change_address_1, make_safe_from): Likewise.
16146 * explow.c (break_out_memory_refs, copy_all_regs, validize_mem,
16147 stabilize, force_not_mem): Likewise.
16148 * expmed.c (store_bit_field, store_split_bit_field, extract_bit_field,
16149 expand_mult_const, expand_divmod, emit_store_flag): Likewise.
16150 * expr.c (convert_move, convert_modes, emit_block_move,
16151 emit_group_load, emit_group_store, clear_storage, emit_move_insn,
16152 emit_move_insn_1, expand_assignment, store_expr,
16153 store_constructor_field, store_constructor, store_field,
16154 force_operand, safe_from_p, expand_expr_real_1, expand_increment):
16156 * final.c (cleanup_subreg_operands, alter_subreg,
16157 get_mem_expr_from_op): Likewise.
16158 * flow.c (notice_stack_pointer_modification_1,
16159 init_propagate_block_info, insn_dead_p, mark_set_1, mark_used_regs):
16161 * function.c (mark_temp_addr_taken, preserve_temp_slots,
16162 preserve_rtl_expr_result, put_var_into_stack, fixup_var_refs_1,
16163 optimize_bit_field, flush_addressof, purge_addressof_1,
16164 instantiate_decl, instantiate_virtual_regs_1, assign_parms,
16165 setjmp_protect, setjmp_protect_args, fix_lexical_addr,
16166 keep_stack_depressed): Likewise.
16167 * ifcvt.c (noce_try_cmove_arith, noce_try_abs, noce_operand_ok,
16168 noce_process_if_block, find_memory): Likewise.
16169 * integrate.c (subst_constants, allocate_initial_values): Likewise.
16170 * local-alloc.c (validate_equiv_mem_from_store, memref_referenced_p,
16171 update_equiv_regs): Likewise.
16172 * loop.c (scan_loop, prescan_loop, note_addr_stored, check_store,
16173 maybe_eliminate_biv_1, find_mem_in_note_1): Likewise.
16174 * optabs.c (expand_abs, emit_unop_insn): Likewise.
16175 * passes.c (rest_of_handle_final): Likewise.
16176 * postreload.c (reload_cse_simplify_set, reload_cse_simplify_operands,
16177 move2add_note_store): Likewise.
16178 * ra-build.c (detect_remat_webs): Likewise.
16179 * ra-debug.c (dump_static_insn_cost): Likewise.
16180 * ra-rewrite.c (slots_overlap_p, insert_stores): Likewise.
16181 * recog.c (validate_change, apply_change_group, cancel_changes,
16182 validate_replace_rtx_1, general_operand, register_operand,
16183 nonmemory_operand, push_operand, pop_operand, memory_operand,
16184 indirect_operand, asm_operand_ok, offsettable_memref_p,
16185 offsettable_nonstrict_memref_p, constrain_operands,
16186 store_data_bypass_p): Likewise.
16187 * reg-stack.c (subst_stack_regs_pat): Likewise.
16188 * regclass.c (record_operand_costs, scan_one_insn, record_reg_classes,
16189 copy_cost, reg_scan_mark_refs): Likewise.
16190 * regmove.c (optimize_reg_copy_3, stack_memref_p,
16191 combine_stack_adjustments_for_block): Likewise.
16192 * regrename.c (copyprop_hardreg_forward_1): Likewise.
16193 * reload.c (can_reload_into, push_reload, decompose, immune_p,
16194 find_reloads, find_reloads_address, find_reloads_address_1,
16195 reg_overlap_mentioned_for_reload_p, refers_to_mem_for_reload_p,
16196 find_equiv_reg): Likewise.
16197 * reload1.c (reload, eliminate_regs, eliminate_regs_in_insn,
16198 reload_as_needed, choose_reload_regs, emit_input_reload_insns,
16199 do_input_reload, emit_reload_insns, gen_reload, delete_output_reload,
16200 delete_address_reloads): Likewise.
16201 * resource.c (mark_referenced_resources): Likewise.
16202 * rtlanal.c (get_jump_table_offset, count_occurrences,
16203 reg_referenced_p, reg_set_p, set_of_1, set_noop_p,
16204 reg_overlap_mentioned_p, note_uses, replace_regs, nonzero_bits1,
16205 num_sign_bit_copies1): Likewise.
16206 * rtlhooks.c (gen_lowpart_general): Likewise.
16207 * sched-deps.c (sched_analyze_1, sched_analyze_2): Likewise.
16208 * sdbout.c (PARM_PASSED_IN_MEMORY, sdbout_symbol,
16209 sdbout_toplevel_data, sdbout_parms, sdbout_reg_parms,
16210 sdbout_global_decl): Likewise.
16211 * simplify-rtx.c (simplify_subreg): Likewise.
16212 * stmt.c (expand_asm_operands, expand_expr_stmt_value, expand_decl,
16213 expand_anon_union_decl, expand_end_case_type): Likewise.
16214 * unroll.c (calculate_giv_inc): Likewise.
16215 * var-tracking.c (stack_adjust_offset_pre_post,
16216 bb_stack_adjust_offset, track_expr_p, count_uses, add_uses,
16217 add_stores, compute_bb_dataflow, vt_get_decl_and_offset,
16218 vt_add_function_parameters): Likewise.
16219 * varasm.c (make_var_volatile, notice_global_symbol,
16220 assemble_external, decode_addr_const, mark_weak,
16221 default_encode_section_info): Likewise.
16223 2004-07-01 Steven Bosscher <stevenb@suse.de>
16225 * stmt.c (check_seenlabel): Remove.
16226 (pushcase, pushcase_range, expand_end_case_type): Don't call it.
16228 2004-07-01 Richard Henderson <rth@redhat.com>
16230 * function.h (struct function): Remove x_function_call_count.
16231 (function_call_count): Remove.
16232 * calls.c (expand_call): Don't set it.
16233 * integrate.c (copy_rtx_and_substitute): Likewise.
16235 * function.h (struct function): Remove x_cleanup_label.
16236 (cleanup_label): Remove.
16237 * stmt.c (expand_value_return): Don't use it.
16238 * function.c (free_after_compilation): Don't set it.
16239 (expand_function_start): Likewise. Remove parms_have_cleanups arg.
16240 * cfgexpand.c (tree_expand_cfg): Update call.
16241 * tree.h (expand_function_start): Update decl.
16243 2004-07-01 Joseph S. Myers <jsm@polyomino.org.uk>
16246 * c-lang.c (c_initialize_diagnostics): Move from here ...
16247 * c-objc-common.c: ... to here. Include "c-pretty-print.h".
16248 (c_tree_printer): Use pretty-printer to format %T.
16249 * c-pretty-print.c (pp_c_specifier_qualifier_list): Include space
16250 before '*' if not C++.
16251 (pp_c_direct_abstract_declarator): Don't try to print array upper
16252 bound for flexible array members.
16253 * c-tree.h: Include "diagnostic.h".
16254 (c_initialize_diagnostics): Declare.
16255 * objc/objc-lang.c (LANG_HOOKS_INITIALIZE_DIAGNOSTICS): Define.
16256 * c-format.c (format_type_warning): New function. Improve
16257 diagnostics for incorrect format argument types.
16258 (check_format_types): Use it. Add two parameters. Use the
16259 TYPE_MAIN_VARIANT of wanted_type.
16260 (check_format_info_main): Pass new parameters to
16261 check_format_types.
16262 (struct format_wanted_type): Update comment.
16264 2004-07-01 Nick Clifton <nickc@redhat.com>
16266 * target.h (struct gcc_target): Add new field to struct cxx:
16267 import_export_class.
16268 * target-def.h (TARGET_CXX): Initialise the new field.
16269 (TARGET_CXX_IMPORT_EXPORT_CLASS): Provide a default value for
16271 * doc/tm.texi: Document the new target hook.
16273 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
16275 * builtins.c (fold_builtin_classify): Fix typo.
16277 2004-07-01 Richard Henderson <rth@redhat.com>
16279 * function.c (identify_blocks, identify_blocks_1): Remove.
16280 * function.h (identify_blocks): Remove.
16281 * rtl.h (NOTE_INSN_BLOCK_BEG): Update comment.
16283 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
16285 * builtins.c (fold_builtin_classify): New.
16286 (fold_builtin_unordered_cmp): Fix commentary.
16287 (fold_builtin): Use it.
16288 * builtins.def: Define builtins for isnan,
16289 isnanf, isnanl, finite, finitef, finitel,
16290 isinf, isinff, isinfl.
16292 2004-07-01 Richard Henderson <rth@redhat.com>
16294 * function.h (struct function): Remove dont_emit_block_notes.
16295 * gimple-low.c (lower_function_body): Don't set it.
16296 * cfgexpand.c (expand_block): Don't check it.
16297 * cfglayout.c (insn_locators_initialize): Likewise.
16298 * expr.c (expand_expr_real, expand_expr_real_1): Likewise.
16299 * passes.c (rest_of_compilation): Likewise.
16300 * stmt.c (expand_start_bindings_and_block): Likewise.
16301 (expand_end_bindings): Likewise.
16303 2004-07-01 Richard Henderson <rth@redhat.com>
16305 * cgraph.h (cgraph_build_static_cdtor): Declare.
16306 * cgraphunit.c (cgraph_build_static_cdtor): New.
16307 * c-objc-common.c (build_cdtor): Use it.
16308 * coverage.c (create_coverage): Likewise.
16309 * libfuncs.h (LTI_gcov_init, gcov_init_libfunc): Remove.
16310 * optabs.c (init_optabs): Don't set gcov_init_libfunc.
16312 See ChangeLog.11 for earlier changes.