1. 05 Oct, 2004 1 commit
    • aldyh's avatar
      * config/frv/frv.h (LEGITIMIZE_ADDRESS): New. · 867c5e94
      aldyh authored
      	* config/frv/frv-protos.h (frv_legitimize_address): Protoize.
      	(frv_emit_move): Same.
      
      	* config/frv/frv.c (frv_emit_move): New.
      	(frv_legitimize_address): New.
      
      	* config/frv/frv.md ("movsi"): Call frv_emit_move.
      	("movqi"): Same.
      	("movhi"): Same.
      	("movdi"): Same.
      	("movsf"): Same.
      	("movdf"): Same.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88574 138bc75d-0d04-0410-961f-82ee72b054a4
      867c5e94
  2. 28 Sep, 2004 1 commit
    • bje's avatar
      2004-09-24 Ben Elliston <bje@au.ibm.com> · cd665a06
      bje authored
      	    Steven Bosscher  <stevenb@suse.de>
      	    Andrew Pinski  <pinskia@physics.uc.edu>
      
      	Merge from edge-vector-branch:
      	* basic-block.h: Include vec.h, errors.h. Instantiate a VEC(edge).
      	(struct edge_def): Remove pred_next, succ_next members.
      	(struct basic_block_def): Remove pred, succ members.  Add preds
      	and succs members of type VEC(edge).
      	(FALLTHRU_EDGE): Redefine using EDGE_SUCC.
      	(BRANCH_EDGE): Likewise.
      	(EDGE_CRITICAL_P): Redefine using EDGE_COUNT.
      	(EDGE_COUNT, EDGE_I, EDGE_PRED, EDGE_SUCC): New.
      	(edge_iterator): New.
      	(ei_start, ei_last, ei_end_p, ei_one_before_end_p): New.
      	(ei_next, ei_prev, ei_edge, ei_safe_edge): Likewise.
      	(FOR_EACH_EDGE): New.
      	* bb-reorder.c (find_traces): Use FOR_EACH_EDGE and EDGE_* macros
      	where applicable.
      	(rotate_loop): Likewise.
      	(find_traces_1_route): Likewise.
      	(bb_to_key): Likewise.
      	(connect_traces): Likewise.
      	(copy_bb_p): Likewise.
      	(find_rarely_executed_basic_blocks_and_crossing_edges): Likewise.
      	(add_labels_and_missing_jumps): Likewise.
      	(fix_up_fall_thru_edges): Likewise.
      	(find_jump_block): Likewise.
      	(fix_crossing_conditional_branches): Likewise.
      	(fix_crossing_unconditional_branches): Likewise.
      	(add_reg_crossing_jump_notes): Likewise.
      	* bt-load.c (augment_live_range): Likewise.
      	* cfg.c (clear_edges): Likewise.
      	(unchecked_make_edge): Likewise.
      	(cached_make_edge): Likewise.
      	(make_single_succ_edge): Likewise.
      	(remove_edge): Likewise.
      	(redirect_edge_succ_nodup): Likewise.
      	(check_bb_profile): Likewise.
      	(dump_flow_info): Likewise.
      	(alloc_aux_for_edges): Likewise.
      	(clear_aux_for_edges): Likewise.
      	(dump_cfg_bb_info): Likewise.
      	* cfganal.c (forwarder_block_p): Likewise.
      	(can_fallthru): Likewise.
      	(could_fall_through): Likewise.
      	(mark_dfs_back_edges): Likewise.
      	(set_edge_can_fallthru_flag): Likewise.
      	(find_unreachable_blocks): Likewise.
      	(create_edge_list): Likewise.
      	(verify_edge_list): Likewise.
      	(add_noreturn_fake_exit_edges): Likewise.
      	(connect_infinite_loops_to_exit): Likewise.
      	(flow_reverse_top_sort_order_compute): Likewise.
      	(flow_depth_first_order_compute): Likewise.
      	(flow_preorder_transversal_compute): Likewise.
      	(flow_dfs_compute_reverse_execute): Likewise.
      	(dfs_enumerate_from): Likewise.
      	(compute_dominance_frontiers_1): Likewise.
      	* cfgbuild.c (make_edges): Likewise.
      	(compute_outgoing_frequencies): Likewise.
      	(find_many_sub_basic_blocks): Likewise.
      	(find_sub_basic_blocks): Likewise.
      	* cfgcleanup.c (try_simplify_condjump): Likewise.
      	(thread_jump): Likewise.
      	(try_forward_edges): Likewise.
      	(merge_blocks_move): Likewise.
      	(outgoing_edges_match): Likewise.
      	(try_crossjump_to_edge): Likewise.
      	(try_crossjump_bb): Likewise.
      	(try_optimize_cfg): Likewise.
      	(merge_seq_blocks): Likewise.
      	* cfgexpand.c (expand_gimple_tailcall): Likewise.
      	(expand_gimple_basic_block): Likewise.
      	(construct_init_block): Likewise.
      	(construct_exit_block): Likewise.
      	* cfghooks.c (verify_flow_info): Likewise.
      	(dump_bb): Likewise.
      	(delete_basic_block): Likewise.
      	(split_edge): Likewise.
      	(merge_blocks): Likewise.
      	(make_forwarder_block): Likewise.
      	(tidy_fallthru_edges): Likewise.
      	(can_duplicate_block_p): Likewise.
      	(duplicate_block): Likewise.
      	* cfglayout.c (fixup_reorder_chain): Likewise.
      	(fixup_fallthru_exit_predecessor): Likewise.
      	(can_copy_bbs_p): Likewise.
      	(copy_bbs): Likewise.
      	* cfgloop.c (flow_loops_cfg_dump): Likewise.
      	(flow_loop_entry_edges_find): Likewise.
      	(flow_loop_exit_edges_find): Likewise.
      	(flow_loop_nodes_find): Likewise.
      	(mark_single_exit_loops): Likewise.
      	(flow_loop_pre_header_scan): Likewise.
      	(flow_loop_pre_header_find): Likewise.
      	(update_latch_info): Likewise.
      	(canonicalize_loop_headers): Likewise.
      	(flow_loops_find): Likewise.
      	(get_loop_body_in_bfs_order): Likewise.
      	(get_loop_exit_edges): Likewise.
      	(num_loop_branches): Likewise.
      	(verify_loop_structure): Likewise.
      	(loop_latch_edge): Likewise.
      	(loop_preheader_edge): Likewise.
      	* cfgloopanal.c (mark_irreducible_loops): Likewise.
      	(expected_loop_iterations): Likewise.
      	* cfgloopmanip.c (remove_bbs): Likewise.
      	(fix_bb_placement): Likewise.
      	(fix_irreducible_loops): Likewise.
      	(remove_path): Likewise.
      	(scale_bbs_frequencies): Likewise.
      	(loopify): Likewise.
      	(unloop): Likewise.
      	(fix_loop_placement): Likewise.
      	(loop_delete_branch_edge): Likewise.
      	(duplicate_loop_to_header_edge): Likewise.
      	(mfb_keep_just): Likewise.
      	(create_preheader): Likewise.
      	(force_single_succ_latches): Likewise.
      	(loop_split_edge_with): Likewise.
      	(create_loop_notes): Likewise.
      	* cfgrtl.c (rtl_split_block): Likewise.
      	(rtl_merge_blocks): Likewise.
      	(rtl_can_merge_blocks): Likewise.
      	(try_redirect_by_replacing_jump): Likewise.
      	(force_nonfallthru_and_redirect): Likewise.
      	(rtl_tidy_fallthru_edge): Likewise.
      	(commit_one_edge_insertion): Likewise.
      	(commit_edge_insertions): Likewise.
      	(commit_edge_insertions_watch_calls): Likewise.
      	(rtl_verify_flow_info_1): Likewise.
      	(rtl_verify_flow_info): Likewise.
      	(purge_dead_edges): Likewise.
      	(cfg_layout_redirect_edge_and_branch): Likewise.
      	(cfg_layout_can_merge_blocks_p): Likewise.
      	(rtl_flow_call_edges_add): Likewise.
      	* cse.c (cse_cc_succs): Likewise.
      	* df.c (hybrid_search): Likewise.
      	* dominance.c (calc_dfs_tree_nonrec): Likewise.
      	(calc_dfs_tree): Likewise.
      	(calc_idoms): Likewise.
      	(recount_dominator): Likewise.
      	* domwalk.c (walk_dominator_tree): Likewise.
      	* except.c (emit_to_new_bb_before): Likewise.
      	(connect_post_landing_pads): Likewise.
      	(sjlj_emit_function_enter): Likewise.
      	(sjlj_emit_function_exit): Likewise.
      	(finish_eh_generation): Likewise.
      	* final.c (compute_alignments): Likewise.
      	* flow.c (calculate_global_regs_live): Likewise.
      	(initialize_uninitialized_subregs): Likewise.
      	(init_propagate_block_info): Likewise.
      	* function.c (thread_prologue_and_epilogue_insns): Likewise.
      	* gcse.c (find_implicit_sets): Likewise.
      	(bypass_block): Likewise.
      	(bypass_conditional_jumps): Likewise.
      	(compute_pre_data): Likewise.
      	(insert_insn_end_bb): Likewise.
      	(insert_store): Likewise.
      	(remove_reachable_equiv_notes): Likewise.
      	* global.c (global_conflicts): Likewise.
      	(calculate_reg_pav): Likewise.
      	* graph.c (print_rtl_graph_with_bb): Likewise.
      	* ifcvt.c (mark_loop_exit_edges): Likewise.
      	(merge_if_block): Likewise.
      	(find_if_header): Likewise.
      	(block_jumps_and_fallthru_p): Likewise.
      	(find_if_block): Likewise.
      	(find_cond_trap): Likewise.
      	(block_has_only_trap): Likewise.
      	(find_if_case1): Likewise.
      	(find_if_case_2): Likewise.
      	* lambda-code.c (lambda_loopnest_to_gcc_loopnest): Likewise.
      	(perfect_nestify): Likewise.
      	* lcm.c (compute_antinout_edge): Likewise.
      	(compute_laterin): Likewise.
      	(compute_available): Likewise.
      	(compute_nearerout): Likewise.
      	* loop-doloop.c (doloop_modify): Likewise.
      	* loop-init.c (loop_optimizer_init): Likewise.
      	* loop-invariant.c (find_exits): Likewise.
      	* loop-iv.c (simplify_using_initial_values): Likewise.
      	(check_simple_exit): Likewise.
      	(find_simple_exit): Likewise.
      	* loop-unroll.c (peel_loop_completely): Likewise.
      	(unroll_loop_constant_iterations): Likewise.
      	(unroll_loop_runtime_iterations): Likewise.
      	* loop-unswitch.c (may_unswitch_on): Likewise.
      	(unswitch_loop): Likewise.
      	* modulo-sched.c (generate_prolog_epilog): Likewise.
      	(sms_schedule): Likewise.
      	* postreload-gcse.c (eliminate_partially_redundant_load):
      	Likewise.
      	* predict.c (can_predict_insn_p): Likewise.
      	(set_even_probabilities): Likewise.
      	(combine_predictions_for_bb): Likewise.
      	(predict_loops): Likewise.
      	(estimate_probability): Likewise.
      	(tree_predict_by_opcode): Likewise.
      	(tree_estimate_probability): Likewise.
      	(last_basic_block_p): Likewise.
      	(propagate_freq): Likewise.
      	(estimate_loops_at_level): Likewise.
      	(estimate_bb_frequencies): Likewise.
      	* profile.c (instrument_edges): Likewise.
      	(get_exec_counts): Likewise.
      	(compute_branch_probabilities): Likewise.
      	(branch_prob): Likewise.
      	* ra-build.c (live_in): Likewise.
      	* ra-rewrite.c (rewrite_program2): Likewise.
      	* ra.c (reg_alloc): Likewise.
      	* reg-stack.c (reg_to_stack): Likewise.
      	(convert_regs_entry): Likewise.
      	(compensate_edge): Likewise.
      	(convert_regs_1): Likewise,
      	(convert_regs_2): Likewise.
      	(convert_regs): Likewise.
      	* regrename.c (copyprop_hardreg_forward): Likewise.
      	* reload1.c (fixup_abnormal_edges): Likewise.
      	* sbitmap.c (sbitmap_intersection_of_succs): Likewise.
      	(sbitmap_insersection_of_preds): Likewise.
      	(sbitmap_union_of_succs): Likewise.
      	(sbitmap_union_of_preds): Likewise.
      	* sched-ebb.c (compute_jump_reg_dependencies): Likewise.
      	(fix_basic_block_boundaries): Likewise.
      	(sched_ebbs): Likewise.
      	* sched-rgn.c (build_control_flow): Likewise.
      	(find_rgns): Likewise.
      	* tracer.c (find_best_successor): Likewise.
      	(find_best_predecessor): Likewise.
      	(tail_duplicate): Likewise.
      	* tree-cfg.c (make_edges): Likewise.
      	(make_ctrl_stmt_edges): Likewise.
      	(make_goto_expr_edges): Likewise.
      	(tree_can_merge_blocks_p): Likewise.
      	(tree_merge_blocks): Likewise.
      	(cfg_remove_useless_stmts_bb): Likewise.
      	(remove_phi_nodes_and_edges_for_unreachable_block): Likewise.
      	(tree_block_forwards_to): Likewise.
      	(cleanup_control_expr_graph): Likewise.
      	(find_taken_edge): Likewise.
      	(dump_cfg_stats): Likewise.
      	(tree_cfg2vcg): Likewise.
      	(disband_implicit_edges): Likewise.
      	(tree_find_edge_insert_loc): Likewise.
      	(bsi_commit_edge_inserts): Likewise.
      	(tree_split_edge): Likewise.
      	(tree_verify_flow_info): Likewise.
      	(tree_make_forwarder_block): Likewise.
      	(tree_forwarder_block_p): Likewise.
      	(thread_jumps): Likewise.
      	(tree_try_redirect_by_replacing_jump): Likewise.
      	(tree_split_block): Likewise.
      	(add_phi_args_after_copy_bb): Likewise.
      	(rewrite_to_new_ssa_names_bb): Likewise.
      	(dump_function_to_file): Likewise.
      	(print_pred_bbs): Likewise.
      	(print_loop): Likewise.
      	(tree_flow_call_edges_add): Likewise.
      	(split_critical_edges): Likewise.
      	(execute_warn_function_return): Likewise.
      	(extract_true_false_edges_from_block): Likewise.
      	* tree-if-conv.c (tree_if_conversion): Likewise.
      	(if_convertable_bb_p): Likewise.
      	(find_phi_replacement_condition): Likewise.
      	(combine_blocks): Likewise.
      	* tree-into-ssa.c (compute_global_livein): Likewise.
      	(ssa_mark_phi_uses): Likewise.
      	(ssa_rewrite_initialize_block): Likewise.
      	(rewrite_add_phi_arguments): Likewise.
      	(ssa_rewrite_phi_arguments): Likewise.
      	(insert_phi_nodes_for): Likewise.
      	(rewrite_into_ssa): Likewise.
      	(rewrite_ssa_into_ssa): Likewise.
      	* tree-mudflap.c (mf_build_check_statement_for): Likewise.
      	* tree-outof-ssa.c (coalesce_abnormal_edges): Likewise.
      	(rewrite_trees): Likewise.
      	* tree-pretty-print.c (dump_bb_header): Likewise.
      	(dump_implicit_edges): Likewise.
      	* tree-sra.c (insert_edge_copies): Likewise.
      	(find_obviously_necessary_stmts): Likewise.
      	(remove_data_stmt): Likewise.
      	* tree-ssa-dom.c (thread_across_edge): Likewise.
      	(dom_opt_finalize_block): Likewise.
      	(single_incoming_edge_ignoring_loop_edges): Likewise.
      	(record_equivalences_from_incoming_edges): Likewise.
      	(cprop_into_successor_phis): Likewise.
      	* tree-ssa-live.c (live_worklist): Likewise.
      	(calculate_live_on_entry): Likewise.
      	(calculate_live_on_exit): Likewise.
      	* tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Likewise.
      	(copy_loop_headers): Likewise.
      	* tree-ssa-loop-im.c (loop_commit_inserts): Likewise.
      	(fill_always_executed_in): Likewise.
      	* tree-ssa-loop-ivcanon.c (create_canonical_iv): Likewise.
      	* tree-ssa-loop-ivopts.c (find_interesting_uses): Likewise.
      	(compute_phi_arg_on_exit): Likewise.
      	* tree-ssa-loop-manip.c (add_exit_phis_edge): Likewise.
      	(get_loops_exit): Likewise.
      	(split_loop_exit_edge): Likewise.
      	(ip_normal_pos): Likewise.
      	* tree-ssa-loop-niter.c (simplify_using_initial_conditions):
      	Likewise.
      	* tree-ssa-phiopt.c (candidate_bb_for_phi_optimization): Likewise.
      	(replace_phi_with_stmt): Likewise.
      	(value_replacement): Likewise.
      	* tree-ssa-pre.c (compute_antic_aux): Likewise.
      	(insert_aux): Likewise.
      	(init_pre): Likewise.
      	* tree-ssa-propagate.c (simulate_stmt): Likewise.
      	(simulate_block): Likewise.
      	(ssa_prop_init): Likewise.
      	* tree-ssa-threadupdate.c (thread_block): Likewise.
      	(create_block_for_threading): Likewise.
      	(remove_last_stmt_and_useless_edges): Likewise.
      	* tree-ssa.c (verify_phi_args): Likewise.
      	(verify_ssa): Likewise.
      	* tree_tailcall.c (independent_of_stmt_p): Likewise.
      	(find_tail_calls): Likewise.
      	(eliminate_tail_call): Likewise.
      	(tree_optimize_tail_calls_1): Likewise.
      	* tree-vectorizer.c (vect_transform_loop): Likewise.
      	* var-tracking.c (prologue_stack_adjust): Likewise.
      	(vt_stack_adjustments): Likewise.
      	(vt_find_locations): Likewise.
      	* config/frv/frv.c (frv_ifcvt_modify_tests): Likewise.
      	* config/i386/i386.c (ix86_pad_returns): Likewise.
      	* config/ia64/ia64.c (ia64_expand_prologue): Likewise.
      	* config/rs6000/rs6000.c (rs6000_emit_prologue): Likewise.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88222 138bc75d-0d04-0410-961f-82ee72b054a4
      cd665a06
  3. 18 Sep, 2004 1 commit
    • kazu's avatar
      * config/darwin-c.c, config/arc/arc.c, config/arc/arc.md, · a361b456
      kazu authored
      	config/arm/README-interworking, config/arm/arm-cores.def,
      	config/arm/arm.c, config/arm/arm.h, config/arm/pe.c,
      	config/arm/vfp.md, config/c4x/c4x.c, config/c4x/c4x.h,
      	config/cris/cris.c, config/cris/cris.h, config/fr30/fr30.c,
      	config/fr30/fr30.h, config/fr30/fr30.md, config/frv/frv.c,
      	config/frv/frv.md, config/i386/winnt.c,
      	config/ia64/unwind-ia64.c, config/iq2000/iq2000.c,
      	config/iq2000/iq2000.h, config/m68hc11/m68hc11.c,
      	config/m68hc11/m68hc11.md, config/m68k/m68k.c,
      	config/mcore/mcore.c, config/mips/mips.h,
      	config/mn10300/mn10300.md, config/pa/pa.c,
      	config/pa/pa64-regs.h, config/pdp11/pdp11.c,
      	config/rs6000/rs6000.c, config/sh/symbian.c,
      	config/sparc/sparc.h: Fix comment typos.  Follow spelling
      	conventions.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87706 138bc75d-0d04-0410-961f-82ee72b054a4
      a361b456
  4. 10 Sep, 2004 1 commit
    • kazu's avatar
      * config/darwin.c, config/alpha/alpha.h, config/arm/arm.c, · 84cbcde5
      kazu authored
      	config/arm/arm.h, config/arm/arm.md, config/arm/bpabi.h,
      	config/arm/predicates.md, config/frv/frv.c, config/frv/frv.md,
      	config/h8300/h8300.md, config/i386/gmm_malloc.h,
      	config/ia64/ia64.md, config/ip2k/libgcc.S,
      	config/mips/mips-ps-3d.md, config/mips/mips.c,
      	config/rs6000/rs6000.c, config/s390/s390.c,
      	config/sh/symbian.c: Fix comment typos.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87295 138bc75d-0d04-0410-961f-82ee72b054a4
      84cbcde5
  5. 09 Sep, 2004 2 commits
    • rsandifo's avatar
      * config/frv/frv.c (acc_operand, accg_operand): Use REGNO. · d447f9c8
      rsandifo authored
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87239 138bc75d-0d04-0410-961f-82ee72b054a4
      d447f9c8
    • rsandifo's avatar
      * config/frv/frv-protos.h (FRV_CPU_FR550, FRV_CPU_FR450) · 52cce740
      rsandifo authored
      	(FRV_CPU_FR405): New processor enums.
      	(frv_issue_rate, frv_acc_group): Declare.
      	* config/frv/frv.h (CPP_SPEC, CPP_FRV_SPEC, CPP_FR500_SPEC): Delete.
      	(CPP_FR400_SPEC, CPP_SIMPLE_SPEC): Delete.
      	(MASK_DEFAULT_FR550, MASK_DEFAULT_FR450): New macros.
      	(SUBTARGET_EXTRA_SPECS, EXTRA_SPECS, CPP_CPU_DEFAULT_SPEC): Delete.
      	(TARGET_CPU_CPP_BUILTINS): Define the macros that were previously
      	handled by CPP_SPEC.
      	(MASK_LONG_CALLS, TARGET_LONG_CALLS): New macros.
      	(MASK_ALIGN_LABELS, TARGET_ALIGN_LABELS): New macros.
      	(ACC_MASK): New macro.
      	(TARGET_MEDIA_REV2): Include FRV_CPU_{FR405,FR450,FR550}.
      	(TARGET_MEDIA_FR450): New macro.
      	(TARGET_FR500_FR550_BUILTINS, TARGET_FR405_BUILTINS): New macros.
      	(TARGET_SWITCHES): Add -m{no-,}align-labels and -m{no-,}long-calls.
      	(LABEL_ALIGN_AFTER_BARRIER): Define.
      	(ACC_LAST, ACCG_LAST): Add four new accumulator registers.
      	(IACC_FIRST, IACC_LAST): New pair of SPRs.
      	(ACCG_FIRST, AP_FIRST, SPR_FIRST, SPR_LAST): Adjust ...
      52cce740
  6. 08 Sep, 2004 1 commit
    • rth's avatar
      * function.c (reference_callee_copied): New. · 13f08ee7
      rth authored
              (assign_parm_setup_reg): Use it.
              * calls.c (initialize_argument_information): Likewise.
              (emit_library_call_value_1): Likewise.
              * function.h (reference_callee_copied): Declare.
      
              * target.h (struct gcc_target): Add callee_copies.
              * target-def.h (TARGET_CALLEE_COPIES): New.
              (TARGET_PASS_BY_REFERENCE): Update default.
              * expr.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * targhooks.c (hook_callee_copies_named): New.
              (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false): Rename from
              hook_pass_by_reference_false.
              (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true): New.
              * targhooks.h: Update decls.
              * config/arc/arc.c (TARGET_CALLEE_COPIES): New.
              * config/arc/arc.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/frv/frv-protos.h (frv_function_arg_callee_copies): Remove.
              * config/frv/frv.c (frv_function_arg_callee_copies): Remove.
              * config/frv/frv.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/iq2000/iq2000.c (TARGET_CALLEE_COPIES): New.
              * config/iq2000/iq2000.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/m68hc11/m68hc11.c (TARGET_CALLEE_COPIES): New.
              * config/m68hc11/m68hc11.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/mips/mips.c (TARGET_CALLEE_COPIES): New.
              (mips_callee_copies): New.
              * config/mips/mips.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/mmix/mmix.c (TARGET_CALLEE_COPIES): New.
              * config/mmix/mmix.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/mn10300/mn10300.c (TARGET_CALLEE_COPIES): New.
              * config/mn10300/mn10300.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/pa/pa.c (TARGET_CALLEE_COPIES): New.
              * config/pa/pa.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/sh/sh.c (sh_callee_copies): New.
              (TARGET_CALLEE_COPIES): New.
              * config/sh/sh.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * config/v850/v850.c (TARGET_CALLEE_COPIES): New.
              * config/v850/v850.h (FUNCTION_ARG_CALLEE_COPIES): Remove.
              * doc/tm.texi (TARGET_CALLEE_COPIES): Replace documentation
              for FUNCTION_ARG_CALLEE_COPIES.
              * doc/rtl.texi (CALL_INSN_FUNCTION_USAGE): Update.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87195 138bc75d-0d04-0410-961f-82ee72b054a4
      13f08ee7
  7. 25 Aug, 2004 1 commit
    • zack's avatar
      * flags.h (enum debug_info_type): Remove DWARF_DEBUG. · 346e0763
      zack authored
      	* defaults.h (PREFERRED_DEBUGGING_TYPE): Remove check for
      	DWARF_DEBUGGING_INFO from choice-of-definition chain;
      	restructure using C89 features (#elif, #error).
      	* c-lex.c, final.c, opts.c, config/cris/cris.c, config/frv/frv.c
      	* config/sh/sh.h: Remove references to DWARF_DEBUG.
      	* doc/invoke.texi: Remove references to DWARF version 1;
      	clarify why -gdwarf-2<n> doesn't work.
      cp:
      	* class.c, search.c: Remove references to DWARF_DEBUG.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86540 138bc75d-0d04-0410-961f-82ee72b054a4
      346e0763
  8. 20 Jul, 2004 1 commit
    • bonzini's avatar
      2004-07-19 Paolo Bonzini <bonzini@gnu.org> · 67900a4f
      bonzini authored
      	* genattr.c (struct range, struct function_unit,
      	write_units, extend_range, init_range): Remove them.
      	(main): Remove code dealing with DEFINE_FUNCTION_UNIT.
      	Output "#define INSN_SCHEDULING" here.
      	* genattrtab.c (struct range, struct function_unit_op,
      	struct function_unit, struct dimension, enum operator,
      	operate_exp, expand_units, simplify_knowing,
      	encode_units_mask, simplify_by_exploding,
      	find_and_mark_used_attributes, unmark_used_attributes,
      	add_values_to_cover, increment_current_value,
      	test_for_current_value, simplify_with_current_value,
      	simplify_with_current_value_aux, gen_unit,
      	write_unit_name, write_function_unit_info,
      	write_complex_function, write_toplevel_expr,
      	find_single_value, extend_range): Remove.
      	(write_attr_get): Do not handle common_av->value
      	being an FFS.
      	(struct attr_desc): Remove func_units_p and blockage_p.
      	(write_attr_valueq): Do not handle them.
      	(find_attr): Do not clear them.
      	(make_internal_attr): Do not initialize them.
      	(main): Remove code dealing with DEFINE_FUNCTION_UNIT.
      	* sched-vis.c (init_target_units, insn_print_units,
      	init_block_visualization, print_block_visualization,
      	visualize_scheduled_insns, visualize_no_unit,
      	visualize_stall_cycles, visualize_alloc,
      	visualize_free, target_units, get_visual_tbl_length,
      	MAX_VISUAL_LINES, INSN_LEN, n_visual_lines,
      	visual_tbl_line_length, visual_tbl, n_vis_no_unit,
      	MAX_VISUAL_NO_UNIT, vis_no_unit): Remove.
      	* haifa-sched.c (blockage_range, clear_units,
      	schedule_unit, actual_hazard, potential_hazard,
      	insn_unit, unit_last_insn, unit_tick,
      	actual_hazard_this_instance, potential_hazard,
      	schedule_unit, max_insn_queue_index_value): Remove.
      	(MAX_INSN_QUEUE_INDEX): Removed, renamed throughout to
      	max_insn_queue_index.
      	* rtl.def (DEFINE_FUNCTION_UNIT): Remove.
      	* doc/md.texi (Processor pipeline description): Remove
      	references to old pipeline descriptions.
      	(Automaton pipeline description): Merge with the above.
      	(Old pipeline description, Comparison of the two descriptions):
      	Remove.
      
      	* bt-load.c (migrate_btr_def): Remove references to
      	use_pipeline_interface.
      	* haifa-sched.c (insn_cost, schedule_insn,
      	schedule_block, advance_one_cycle, sched_init,
      	queue_to_ready, sched_finish): Likewise.
      	* modulo-sched.c (sms_schedule, advance_one_cycle,
      	ps_has_conflicts): Likewise.
      	* sched-rgn.c (init_ready): Likewise.
      	(debug_dependencies): Likewise, and remove an "if (1)".
      	* target.h (use_dfa_pipeline_interface): Remove.
      	* config/alpha/alpha.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/arc/arc.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/arm/arm.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/c4x/c4x.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/frv/frv.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/i386/i386.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/ia64/ia64.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/iq2000/iq2000.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/m32r/m32r.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/mcore/mcore.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/mips/mips.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/pa/pa.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/rs6000/rs6000.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/s390/s390.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/sh/sh.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/sparc/sparc.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/v850/v850.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* config/xtensa/xtensa.c (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      	* doc/tm.texi (TARGET_USE_DFA_PIPELINE_INTERFACE): Remove.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84944 138bc75d-0d04-0410-961f-82ee72b054a4
      67900a4f
  9. 17 Jul, 2004 1 commit
    • jsm28's avatar
      * langhooks.h (builtin_function): New langhook. · e60d3615
      jsm28 authored
      	* langhooks-def.h (LANG_HOOKS_BUILTIN_FUNCTION): New.
      	(LANG_HOOKS_INITIALIZER): Update.
      	* tree.h (builtin_function): Remove.
      	* doc/tm.texi: Update.
      	* c-tree.h (builtin_function): Declare.
      	* c-common.c, config/alpha/alpha.c, config/arm/arm.c,
      	config/c4x/c4x.c, config/frv/frv.c, config/i386/i386.c,
      	config/ia64/ia64.c, config/iq2000/iq2000.c,
      	config/rs6000/rs6000.c, config/s390/s390.c, config/sh/sh.c,
      	config/stormy16/stormy16.c: All callers of builtin_function
      	changed.
      
      ada:
      	* gigi.h (builtin_function): Declare.
      
      cp:
      	* cp-tree.h (builtin_function): Declare.
      
      fortran:
      	* trans.h (builtin_function): Declare.
      
      java:
      	* java-tree.h (builtin_function): Declare.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84878 138bc75d-0d04-0410-961f-82ee72b054a4
      e60d3615
  10. 14 Jul, 2004 1 commit
    • rth's avatar
      * target.h (struct gcc_target): Add calls.pass_by_reference. · b981d932
      rth authored
      	* target-def.h (TARGET_PASS_BY_REFERENCE): New.
      	* function.c (pass_by_reference): Use the hook.
      	* system.h (FUNCTION_ARG_PASS_BY_REFERENCE): Poison.
      	* targhooks.c, targhooks.h (hook_pass_by_reference_false): New.
      	(hook_pass_by_reference_must_pass_in_stack): New.
      	* config/alpha/alpha.c (function_arg): Don't query pass-by-ref.
      	(alpha_pass_by_reference): New.
      	(TARGET_PASS_BY_REFERENCE): New.
      	* config/alpha/alpha.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/arc/arc.c (arc_pass_by_reference): New.
      	(TARGET_PASS_BY_REFERENCE): New.
      	* config/arc/arc.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	(FUNCTION_ARG_CALLEE_COPIES): True.
      	* config/arm/arm-protos.h (arm_function_arg_pass_by_reference): Remove.
      	* config/arm/arm.c (TARGET_PASS_BY_REFERENCE): New.
      	(arm_pass_by_reference): Rename from arm_function_arg_pass_by_reference.
      	* config/arm/arm.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/c4x/c4x.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/cris/cris.c (cris_pass_by_reference): New.
      	(TARGET_PASS_BY_REFERENCE): New.
      	* config/cris/cris.h (FUNCTION_ARG): Don't query pass-by-ref.
      	(FUNCTION_INCOMING_ARG, FUNCTION_ARG_ADVANCE): Likewise.
      	(FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/fr30/fr30.c (TARGET_PASS_BY_REFERENCE): New.
      	* config/fr30/fr30.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/frv/frv-protos.h (frv_function_arg_pass_by_reference): Kill.
      	* config/frv/frv.c (TARGET_PASS_BY_REFERENCE): New.
      	(frv_function_arg_pass_by_reference): Remove.
      	* config/frv/frv.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/i386/i386-protos.h (function_arg_pass_by_reference): Remove.
      	* config/i386/i386.c (TARGET_PASS_BY_REFERENCE): New.
      	(ix86_pass_by_reference): Rename from function_arg_pass_by_reference.
      	* config/i386/i386.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/ia64/ia64-protos.h (ia64_function_arg_pass_by_reference): Kill.
      	* config/ia64/ia64.c (TARGET_PASS_BY_REFERENCE): New.
      	(ia64_pass_by_reference): Rename from
      	ia64_function_arg_pass_by_reference.
      	* config/ia64/ia64.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/ip2k/ip2k.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/iq2000/iq2000-protos.h (function_arg_pass_by_reference): Kill.
      	* config/iq2000/iq2000.c (TARGET_PASS_BY_REFERENCE): New.
      	(iq2000_pass_by_reference): Rename from function_arg_pass_by_reference.
      	* config/iq2000/iq2000.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	(FUNCTION_ARG_CALLEE_COPIES): Don't reference pass-by-ref.
      	* config/m32r/m32r-protos.h (m32r_pass_by_reference): Remove.
      	* config/m32r/m32r.c (TARGET_PASS_BY_REFERENCE): New.
      	(m32r_pass_by_reference): Adjust prototype.  Make static.
      	Handle mode sizes correctly.
      	* config/m32r/m32r.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c
      	(m68hc11_function_arg_pass_by_reference): Remove.
      	* config/m68hc11/m68hc11.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	(FUNCTION_ARG_CALLEE_COPIES): Don't reference pass-by-ref.
      	* config/mcore/mcore.c (TARGET_PASS_BY_REFERENCE): New.
      	* config/mcore/mcore.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/mips/mips-protos.h (function_arg_pass_by_reference): Remove.
      	* config/mips/mips.c (TARGET_PASS_BY_REFERENCE): New.
      	(mips_va_arg): Use pass_by_reference.
      	(mips_pass_by_reference): Rename from function_arg_pass_by_reference.
      	Handle mode sizes correctly.
      	* config/mips/mips.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
              (FUNCTION_ARG_CALLEE_COPIES): Don't reference pass-by-ref.
      	* config/mmix/mmix-protos.h (mmix_function_arg_pass_by_reference): Kill.
      	* config/mmix/mmix.c (TARGET_PASS_BY_REFERENCE): New.
      	(mmix_pass_by_reference): Rename from
      	mmix_function_arg_pass_by_reference.
      	* config/mmix/mmix.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	(FUNCTION_ARG_CALLEE_COPIES): True.
      	* config/mn10300/mn10300.c (TARGET_PASS_BY_REFERENCE): New.
      	(mn10300_pass_by_reference): New.
      	* config/mn10300/mn10300.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	(FUNCTION_ARG_CALLEE_COPIES): True.
      	* config/pa/pa.c (pa_pass_by_reference): New.
      	(TARGET_PASS_BY_REFERENCE): New.
      	* config/pa/pa.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
              (FUNCTION_ARG_CALLEE_COPIES): True.
      	* config/rs6000/rs6000-protos.h (function_arg_pass_by_reference): Kill.
      	* config/rs6000/rs6000.c (TARGET_PASS_BY_REFERENCE): New.
      	(rs6000_pass_by_reference): Rename from function_arg_pass_by_reference.
      	* config/rs6000/rs6000.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/s390/s390-protos.h (s390_function_arg_pass_by_reference): Kill.
      	* config/s390/s390.c (TARGET_PASS_BY_REFERENCE): New.
      	(s390_pass_by_reference): Rename from
      	s390_function_arg_pass_by_reference.
      	(s390_function_arg_advance): Don't query pass-by-ref.
      	(s390_function_arg): Likewise.
      	(s390_gimplify_va_arg): Use pass_by_reference.
      	(s390_call_saved_register_used): Likewise.
      	* config/s390/s390.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/sh/sh.c (TARGET_PASS_BY_REFERENCE): New.
      	(shcompact_byref, sh_pass_by_reference): New.
      	* config/sh/sh.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	(SHCOMPACT_BYREF): Remove.
      	* config/sparc/sparc-protos.h (function_arg_pass_by_reference): Kill.
      	* config/sparc/sparc.c (TARGET_PASS_BY_REFERENCE): New.
      	(sparc_pass_by_reference): Rename from function_arg_pass_by_reference.
      	(sparc_gimplify_va_arg): Use pass_by_reference.
      	* config/sparc/sparc.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/stormy16/stormy16.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	* config/v850/v850.c (TARGET_PASS_BY_REFERENCE): New.
      	(v850_pass_by_reference): New.
      	* config/v850/v850.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
      	(FUNCTION_ARG_CALLEE_COPIES): True.
      	* doc/tm.texi (TARGET_PASS_BY_REFERENCE): Update from
      	FUNCTION_ARG_PASS_BY_REFERENCE docs.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84672 138bc75d-0d04-0410-961f-82ee72b054a4
      b981d932
  11. 13 Jul, 2004 2 commits
    • rth's avatar
      * builtins.c (std_gimplify_va_arg_expr): Handle types passed · bef380a4
      rth authored
              by reference.
              (ind_gimplify_va_arg_expr): Remove.
              * tree.h (ind_gimplify_va_arg_expr): Remove.
              * config/pa/pa.c (hppa_gimplify_va_arg_expr): Don't use it.
              * config/mmix/mmix.c (mmix_function_arg_pass_by_reference): Allow
              argsp to be null.
      
              * config/arc/arc.c (arc_gimplify_va_arg_expr): Remove.
              (TARGET_GIMPLIFY_VA_ARG_EXPR): Remove.
              * config/cris/cris.c, config/fr30/fr30.c, config/frv/frv.c,
              config/iq2000/iq2000.c, config/m32r/m32r.c, config/mmix/mmix.c,
              config/mn10300/mn10300.c, config/v850/v850.c: Similarly.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84608 138bc75d-0d04-0410-961f-82ee72b054a4
      bef380a4
    • rth's avatar
      * target-def.h (TARGET_MUST_PASS_IN_STACK): New. · 0336f0f0
      rth authored
      	* target.h (struct gcc_target): Add calls.must_pass_in_stack.
      	* expr.h (MUST_PASS_IN_STACK): Remove.
      	* system.h (MUST_PASS_IN_STACK): Poison.
      	* tree.h (must_pass_in_stack_var_size): Declare.
      	(must_pass_in_stack_var_size_or_pad): Declare.
      	* calls.c (must_pass_in_stack_var_size): New.
      	(must_pass_in_stack_var_size_or_pad): Rename from
      	default_must_pass_in_stack.
      	* config/alpha/alpha.c (unicosmk_must_pass_in_stack): New.
      	(TARGET_MUST_PASS_IN_STACK): New.
      	* config/alpha/unicosmk.h (MUST_PASS_IN_STACK): Remove.
      	* config/fr30/fr30.c (fr30_must_pass_in_stack): New.
      	(TARGET_MUST_PASS_IN_STACK): New.
      	* config/fr30/fr30.h (MUST_PASS_IN_STACK): Remove.
      	* config/frv/frv.c (frv_must_pass_in_stack): New.
      	(TARGET_MUST_PASS_IN_STACK): New.
      	* config/frv/frv.h (MUST_PASS_IN_STACK): Remove.
      	* config/i386/i386-protos.h (ix86_must_pass_in_stack): Remove.
      	* config/i386/i386.c (TARGET_MUST_PASS_IN_STACK): New.
      	(ix86_must_pass_in_stack): Make static.
      	* config/i386/i386.h (MUST_PASS_IN_STACK): Remove.
      	* config/ia64/ia64.c (TARGET_MUST_PASS_IN_STACK): New.
      	* config/ia64/ia64.h (MUST_PASS_IN_STACK): Remove.
      	* config/m32r/m32r.c (TARGET_MUST_PASS_IN_STACK): New.
      	* config/m32r/m32r.h (MUST_PASS_IN_STACK): Remove.
      	* config/mcore/mcore-protos.h (mcore_must_pass_on_stack): Remove.
      	* config/mcore/mcore.c (TARGET_MUST_PASS_IN_STACK): New.
      	(mcore_must_pass_on_stack): Remove.
      	* config/mcore/mcore.h (MUST_PASS_IN_STACK): Remove.
      	* config/mips/mips.c (TARGET_MUST_PASS_IN_STACK): New.
      	* config/mips/mips.h (MUST_PASS_IN_STACK): Remove.
      	* config/pa/pa.c (TARGET_MUST_PASS_IN_STACK): New.
      	* config/pa/pa.h (MUST_PASS_IN_STACK): Remove.
      	* config/rs6000/aix.h (MUST_PASS_IN_STACK): Remove.
      	* config/rs6000/linux64.h (MUST_PASS_IN_STACK): Remove.
      	* config/rs6000/rs6000.c (rs6000_must_pass_in_stack): New.
      	(TARGET_MUST_PASS_IN_STACK): New.
      	* config/sh/sh.c (TARGET_MUST_PASS_IN_STACK): New.
      	* config/sh/sh.h (MUST_PASS_IN_STACK): Remove.
      	* config/sparc/sparc.c (TARGET_MUST_PASS_IN_STACK): New.
      	* config/sparc/sparc.h (MUST_PASS_IN_STACK): Remove.
      	* config/xtensa/xtensa.c (TARGET_MUST_PASS_IN_STACK): New.
      	* config/xtensa/xtensa.h (MUST_PASS_IN_STACK): Remove.
      	* doc/tm.texi (TARGET_MUST_PASS_IN_STACK): Update from
      	MUST_PASS_IN_STACK.
      
      	* calls.c, function.c, config/alpha/alpha.c, config/alpha/alpha.h,
      	config/alpha/unicosmk.h, config/alpha/vms.h, config/c4x/c4x.c,
      	config/cris/cris.h, config/fr30/fr30.c, config/fr30/fr30.h,
      	config/frv/frv.c, config/i386/i386.c, config/iq2000/iq2000.c,
      	config/mcore/mcore.c, config/mcore/mcore.h, config/mips/mips.c,
      	config/mmix/mmix.c, config/mmix/mmix.h, config/rs6000/rs6000.c,
      	config/sh/sh.c, config/sh/sh.h, config/stormy16/stormy16.c,
      	config/xtensa/xtensa.c: Use target hook.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84606 138bc75d-0d04-0410-961f-82ee72b054a4
      0336f0f0
  12. 08 Jul, 2004 1 commit
  13. 06 Jul, 2004 1 commit
    • steven's avatar
      * config/alpha/alpha.c (alpha_use_dfa_pipeline_interface): Remove. · 5e611c5f
      steven authored
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      	* config/arm/arm.c (arm_use_dfa_pipeline_interface): Remove.
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      	* config/frv/frv.c (frv_use_dfa_pipeline_interface): Remove.
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      	* config/i386/i386.c (ia32_use_dfa_pipeline_interface): Remove.
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      	* config/ia64/ia64.c (ia64_use_dfa_pipeline_interface): Remove.
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      	* config/pa/pa.c (hhpa_use_dfa_pipeline_interface): Remove.
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      	* config/sparc/sparc.c (sparc_use_dfa_pipeline_interface): Remove.
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      	* config/v850/v850.c (v850_use_dfa_pipeline_interface): Remove.
      	(TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define to hook_int_void_1.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84170 138bc75d-0d04-0410-961f-82ee72b054a4
      5e611c5f
  14. 04 Jul, 2004 1 commit
    • rth's avatar
      * rtl.def (ADDRESSOF): Remove. · e8825bb0
      rth authored
      	* alias.c (rtx_equal_for_memref_p): Don't handle addressof.
      	(find_base_term, memrefs_conflict_p): Likewise.
      	* cse.c (fixed_base_plus_p, find_best_addr: Likewise.
      	(fold_rtx, cse_insn, set_live_p): Likewise.
      	* dwarf2out.c (mem_loc_descriptor): Likewise.
      	(add_location_or_const_value_attribute): Likewise.
      	* emit-rtl.c (copy_insn_1): Likewise.
      	* explow.c (memory_address): Likewise.
      	* expmed.c (store_split_bit_field): Likewise.
      	* expr.c (expand_expr_real_1): Likewise.
      	* function.c (instantiate_decl
      	(instantiate_virtual_regs_1, fix_lexical_addr): Likewise.
      	* genrecog.c (preds, validate_pattern): Likewise.
      	* integrate.c (copy_rtx_and_substitute): Likewise.
      	* recog.c (general_operand, register_operand): Likewise.
      	(memory_address_p): Likwise.
      	* reload1.c (eliminate_regs, elimination_effects): Likewise.
      	* rtl.c (copy_rtx): Likewise.
      	* rtlanal.c (rtx_unstable_p, rtx_varies_p): Likewise.
      	(rtx_addr_can_trap_p, nonzero_address_p, address_cost): Likewise.
      	* rtlhooks.c (gen_lowpart_general): Likewise.
      	* stmt.c (expand_asm_operands): Likewise.
      	* web.c (entry_register, replace_ref, web_main): Likewise.
      	* config/alpha/alpha.c (input_operand, alpha_legitimate_address_p,
      	alpha_expand_block_move, alpha_expand_block_clear): Likewise.
      	* config/arm/arm.c (thumb_rtx_costs): Likewise.
      	* config/c4x/c4x.c (c4x_valid_operands): Likewise.
      	* config/frv/frv.c (move_destination_operand, move_source_operand,
      	condexec_dest_operand, condexec_source_operand,
      	condexec_memory_operand): Likewise.
      	* config/h8300/h8300.h (PREDICATE_CODES): Likewise.
      	* config/ia64/ia64.c (general_xfmode_operand): Likewise.
      	(destination_xfmode_operand): Likewise.
      	* config/mips/mips.h (PREDICATE_CODES): Likewise.
      	* config/mn10300/mn10300.c (mn10300_address_cost_1): Likewise.
      	* config/s390/s390.c (general_s_operand): Likewise.
      	* config/s390/s390.md (mov*): Likewise.
      	* config/sparc/sparc.h (PREDICATE_CODES): Likewise.
      
      	* c-typeck.c (c_mark_addressable): Don't put_var_into_stack.
      	* expr.c (expand_expr_real_1): Likewise.
      	* stmt.c (expand_decl): Likewise.
      	* config/c4x/c4x.c (c4x_expand_builtin): Likewise.
      
      	* function.c (struct fixup_replacement, struct insns_for_mem_entry,
      	postponed_insns, put_var_into_stack, put_reg_into_stack,
      	schedule_fixup_var_refs, fixup_var_refs, find_fixup_replacement,
      	fixup_var_refs_insns, fixup_var_refs_insns_with_hash,
      	fixup_var_refs_insn, fixup_var_refs_1, fixup_memory_subreg,
      	walk_fixup_memory_subreg, fixup_stack_1, optimize_bit_field,
      	gen_mem_addressof, flush_addressof, put_addressof_into_stack,
      	purge_bitfield_addressof_replacements, purge_addressof_replacements,
      	purge_addressof_1, insns_for_mem_hash, insns_for_mem_comp,
      	struct insns_for_mem_walk_info, insns_for_mem_walk,
      	compute_insns_for_mem, is_addressof, purge_addressof, setjmp_protect,
      	setjmp_protect_args): Remove.
      	(push_function_context_to): Don't handle var_refs_queue.
      	(pop_function_context_from, free_after_compilation): Likewise.
      	(instantiate_virtual_regs): Don't handle parm_reg_stack_loc.
      	(assign_parms, allocate_struct_function): Likewise.
      	(use_register_for_decl): New.
      	(expand_function_end): Don't setjmp_protect.
      	* function.h (struct emit_status): Update commentary.
      	(struct function): Remove x_max_parm_reg, x_parm_reg_stack_loc.
      	(max_parm_reg, parm_reg_stack_loc): Remove.
      	* passes.c (DFI_addressof): Remove.
      	(dump_file_info): Remove addressof.
      	(rest_of_handle_addressof): Remove.
      	(rest_of_compilation): Don't call it.
      	* rtl.h (ADDRESSOF_REGNO, ADDRESSOF_DECL): Remove.
      	* stmt.c (expand_decl): Use use_register_for_decl.
      	* tree.h: Update decls.
      	* web.c (mark_addressof): Remove.
      	* doc/invoke.texi (-dF): Remove.
      
      ada/
              * utils2.c (gnat_mark_addressable): Don't put_var_into_stack.
      cp/
              * typeck.c (cxx_mark_addressable): Don't put_var_into_stack.
      fortran/
              * f95-lang.c (gfc_mark_addressable): Don't put_var_into_stack.
      treelang/
              * treetree.c (tree_mark_addressable):  Don't put_var_into_stack.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84072 138bc75d-0d04-0410-961f-82ee72b054a4
      e8825bb0
  15. 02 May, 2004 1 commit
    • aoliva's avatar
      * config/frv/frv-protos.h (frv_expand_epilogue, · d9b1ff5b
      aoliva authored
      frv_expand_fdpic_call): Add bool argument.
      * config/frv/frv.c (frv_function_ok_for_sibcall): New.
      (TARGET_FUNCTION_OK_FOR_SIBCALL): Define to it.
      (frv_expand_epilogue): Use new argument to decide whether to emit
      return instruction or copy the return address to LR.
      (frv_expand_fdpic_call): Inline PLT entry when emitting direct
      sibcalls.
      (sibcall_operand): New.
      * config/frv/frv.h (PREDICATE_CODES): call_operand doesn't match
      PLUS nor LABEL_REF.  Add sibcall_operand.
      * config/frv/frv.md (call, call_value): Pass false to
      frv_expand_fdpic_call.
      (call_fdpicdi, call_value_fdpicdi): Insert %i0 in calll.
      (sibcall, sibcall_internal, sibcall_fdpicdi, sibcall_value,
      sibcall_value_internal, sibcall_value_fdpicdi): New.
      (return_unsigned_true, return_unsigned_false): New.
      (epilogue): Adjust call to frv_expand_epilogue.
      (sibcall_epilogue): New.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81405 138bc75d-0d04-0410-961f-82ee72b054a4
      d9b1ff5b
  16. 30 Apr, 2004 1 commit
    • kazu's avatar
      * bb-reorder.c, c-opts.c, cfglayout.c, cgraph.c, cgraphunit.c, · 7bd28bba
      kazu authored
      	cppfiles.c, fold-const.c, ggc-zone.c, loop-doloop.c, optabs.c,
      	reg-stack.c, varasm.c, config/alpha/ev4.md,
      	config/alpha/ev5.md, config/alpha/ev6.md, config/arm/arm.c,
      	config/c4x/c4x.c, config/c4x/c4x.md, config/cris/cris.c,
      	config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.c,
      	config/frv/frv.h, config/frv/frv.md, config/h8300/h8300.c,
      	config/i386/i386.c, config/i386/i386.md, config/i386/winnt.c,
      	config/ia64/itanium2.md, config/ip2k/ip2k.c,
      	config/mips/mips.c, config/mips/mips.h, config/mips/sr71k.md,
      	config/pa/pa.c, config/s390/s390.c, config/sh/sh.c: Fix
      	comment typos.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81345 138bc75d-0d04-0410-961f-82ee72b054a4
      7bd28bba
  17. 03 Mar, 2004 1 commit
    • bonzini's avatar
      2004-02-07 Paolo Bonzini <bonzini@gnu.org> · 6720e96c
      bonzini authored
      	* alias.c (rtx_equal_for_memref_p): Use predicates
      	to test rtx classes and new rtx class codes, possibly
      	splitting conditionals that tested against '<' and 'o'.
      	* caller-save.c (save_call_clobbered_regs): Likewise.
      	* combine.c (contains_muldiv, find_split_point, subst,
      	combine_simplify_rtx, simplify_if_then_else,
      	simplify_set, simplify_logical, expand_compound_operation,
      	make_compound_operation, if_then_else_cond, known_cond,
      	apply_distributive_law, cached_nonzero_bits,
      	cached_num_sign_bit_copies, simplify_shift_const,
      	gen_binary, simplify_comparison, update_table_tick,
      	record_value_for_reg, get_lsat_value_validate): Likewise.
      	* cse.c (mention_regs, find_best_addr, find_comparison_args,
      	fold_rtx, cse_insn, invalidate_memory, cse_basic_block):
      	Likewise.
      	* emit-rtl.c (copy_insn_1): Likewise.
      	* expr.c (force_operand): Likewise.
      	* final.c (final_scan_insn, get_mem_expr_from_op): Likewise.
      	* flow.c (notice_stack_pointer_modification_1,
      	invalidate_mems_from_autoinc, ior_reg_cond, not_reg_cond,
      	and_reg_cond, elim_reg_cond): Likewise.
      	* function.c (update_epilogue_consts): Likewise.
      	* genattrtab.c (attr_rtx_1): Likewise.
      	* genopinit.c (gen_insn): Likewise.
      	* integrate.c (subst_constants): Likewise.
      	* jump.c (reversed_comparison_code_parts,
      	reversed_comparison_code, delete_related_insns,
      	rtx_renumbered_equal_p): Likewise.
      	* local-alloc.c (block_alloc): Likewise.
      	* loop.c (rtx_equal_for_prefetch_p, maybe_eliminate_biv,
      	canonicalize_condition): Likewise.
      	* loop-iv.c (simplify_using_conditions, iv_number_of_iterations):
      	Likewise.
      	* optabs.c (add_equal_node, expand_binop): Likewise.
      	* predict.c (estimate_probability): Likewise.
      	* ra-debug.c (ra_print_rtx_2op, ra_print_rtx): Likewise.
      	* recog.c (validate_replace_rtx_1, comparison_operator,
      	offsettable_address_p, constrain_operands): Likewise.
      	* reg-stack.c (swap_rtx_condition_1, subst_stack_regs_pat):
      	Likewise.
      	* regclass.c (scan_one_insn): Likewise.
      	* regmove.c (stable_and_no_regs_but_for_p): Likewise.
      	* regrename.c (kill_autoinc_value): Likewise.
      	* reload.c (find_reusable_reload, find_reloads,
      	reg_overlap_mentioned_for_reload_p): Likewise.
      	* reload1.c (gen_reload, delete_address_reloads_1): Likewise.
      	* rtl.c (copy_rtx): Likewise.
      	* rtl.h (CONSTANT_P, INSN_P): Likewise.
      	* rtlanal.c (commutative_operand_precedence): Likewise.
      	* sched-deps.c (conditions_mutex_p): Likewise.
      	* sched-rgn.c (is_cfg_nonregular): Likewise.
      	* simplify-rtx.c (simplify_gen_binary,
      	simplify_gen_relational, simplify_replace_rtx,
      	simplify_unary_operation, simplify_binary_operation,
      	simplify_ternary_operation, simplify_rtx): Likewise.
      	* unroll.c (reg_dead_after_loop): Likewise.
      	* config/alpha/alpha.c (alpha_swapped_comparison_operator,
      	print_operand): Likewise.
      	* config/arc/arc.c (proper_comparison_operator): Likewise.
      	* config/arm/arm.c (arm_arm_address_cost, arm_select_cc_mode):
      	Likewise.
      	* config/avr/avr.c (_reg_unused_after): Likewise.
      	* config/frv/frv.c (frv_ifcvt_modify_tests,
      	frv_ifcvt_modify_insn, frv_pack_insn): Likewise.
      	* config/i386/i386.c (ix86_comparison_operator,
      	ix86_carry_flag_operator, fcmov_comparison_operator,
      	arith_or_logical_operator, print_operand,
      	ix86_expand_binary_operator, ix86_binary_operator_ok):
      	Likewise.
      	* config/i386/i386.md: Likewise.
      	* config/ia64/ia64.c (not_postinc_memory_operand,
      	ia64_print_operand, update_set_flags, errata_emit_nops):
      	Likewise.
      	* config/ia64/ia64.h (PREFERRED_RELOAD_CLASS,
      	CONSTRAINT_OK_FOR_S): Likewise.
      	* config/ip2k/ip2k.c (mdr_resequence_xy_yx,
      	mdr_try_move_dp_reload, ip2k_check_can_adjust_stack_ref,
      	ip2k_xexp_not_uses_reg_for_mem, ip2k_xexp_not_uses_reg_p,
      	ip2k_composite_xexp_not_uses_reg_p, ip2k_unary_operator):
      	Likewise.
      	* config/iq2000/iq2000.c (cmp_op, symbolic_expression_p,
      	eqne_comparison_operator, signed_comparison_operator):
      	Likewise.
      	* config/mips/mips.c (cmp_op, symbolic_expression_p):
      	Likewise.
      	* config/mmix/mmix (mmix_foldable_comparison_operator,
      	mmix_comparison_operator): Likewise.
      	* config/pa/pa.c (hppa_legitimize_address): Likewise.
      	* config/rs6000/rs6000.c (stmw_operation,
      	branch_comparison_operator, trap_comparison_operator,
      	ccr_bit): Likewise.
      	* config/rs6000/rs6000.h (SELECT_CC_MODE): Likewise.
      	* config/s390/s390.c (s390_alc_comparison,
      	s390_slb_comparison):L Likewise.
      	* config/sh/sh.c (gen_block_redirect, reg_unused_after):
      	Likewise.
      	* config/sparc/sparc.c (eq_or_neq, normal_comp_operator,
      	noov_compare_op, noov_compare64_op, v9_regcmp_op,
      	emit_hard_tfmode_operation, reg_unused_after)
      	* doc/md.texi, doc/rtl.texi: Likewise.
      
      	* ra-debug.c: Add 2004 to list of copyright years.
      	* unroll.c: Likewise.
      
      	* combine.c (simplify_logical): Remove dummy test,
      	(apply_distributive_law): Fix typo in comment.
      	GET_CODE (x) == AND so x is a commutative binary op.
      	* jump.c (delete_related_insns): simplify loop
      	condition, move testing of RTX codes inside the loop.
      	(rtx_renumbered_equal_p): do not use RTX_CODE.
      	* rtl.c (rtx_class): Declare as enum rtx_class.
      	* rtl.def (EQ, NE, UNEQ, LTGT, UNORDERED, ORDERED):
      	Move to RTX_COMM_COMPARE class.
      	(HIGH, SYMBOL_REF, LABEL_REF, CONST, CONST_INT, CONST_DOUBLE):
      	Move to RTX_CONST_OBJ class.
      	* rtl.h (enum rtx_class): New declaration,
      	(RTX_OBJ_MASK, RTX_OBJ_RESULT, RTX_COMPARE_MASK,
      	RTX_COMPARE_RESULT, RTX_ARITHMETIC_MASK, RTX_ARITHMETIC_RESULT,
      	RTX_BINARY_MASK, RTX_BINARY_RESULT, RTX_COMMUTATIVE_MASK,
      	RTX_COMMUTATIVE_RESULT, RTX_NON_COMMUTATIVE_RESULT,
      	RTX_EXPR_FIRST, RTX_EXPR_LAST, UNARY_P, BINARY_P,
      	ARITHMETIC_P, COMMUTATIVE_ARITHMETIC_P, COMPARISON_P,
      	SWAPPABLE_OPERANDS_P, NON_COMMUTATIVE_P, COMMUTATIVE_P,
      	OBJECT_P): New macros.
      	* config/sparc/sparc.c (noov_compare_op): Remove register
      	from parameter.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78824 138bc75d-0d04-0410-961f-82ee72b054a4
      6720e96c
  18. 29 Feb, 2004 1 commit
    • kazu's avatar
      gcc/ · 0aee14a5
      kazu authored
      	* passes.c, config/frv/frv.c, config/sh/sh.c: Fix comment
      	typos.
      	* doc/cppopts.texi: Fix a typo.
      
      gcc/cp/
      	* call.c: Fix a comment typo.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78676 138bc75d-0d04-0410-961f-82ee72b054a4
      0aee14a5
  19. 24 Feb, 2004 2 commits
    • rth's avatar
      * toplev.c (dump_file_tbl): Rename from dump_file. · 450d042a
      rth authored
              * bb-reorder.c, bt-load.c, cfgcleanup.c, cfglayout.c, cfgloopanal.c,
              cfgloopmanip.c, cfgrtl.c, config/arm/arm.c, config/frv/frv.c,
              config/i386/i386.c, config/ia64/ia64.c, config/mips/mips.c,
              config/sh/sh.c, cse.c, flow.c, ifcvt.c, loop-iv.c, loop-unroll.c,
              loop-unswitch.c, output.h, predict.c, profile.c, ra-build.c,
              ra-colorize.c, ra-debug.c, ra-rewrite.c, ra.c, regrename.c, reload1.c,
              toplev.c, tracer.c, value-prof.c, var-tracking.c, web.c:
              s/rtl_dump_file/dump_file/g.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78399 138bc75d-0d04-0410-961f-82ee72b054a4
      450d042a
    • aoliva's avatar
      Implement FR-V FDPIC ABI support for frv-uclinux and frv-linux. · 3e7f6cce
      aoliva authored
      2004-02-05  Alexandre Oliva  <aoliva@redhat.com>
      * config/frv/frv.c (frv_emit_movsi): Use GOT relocations for
      symbols in sections named by the user.
      2004-01-30  Alexandre Oliva  <aoliva@redhat.com>
      * config/frv/linux.h (TARGET_OS_CPP_BUILTINS): New.
      2004-01-27  Alexandre Oliva  <aoliva@redhat.com>
      * config.gcc (frv-*-*linux*): Handle like *-*-linux*.
      * config/frv/t-linux (EXTRA_MULTILIB_PARTS): Remove, obviated by
      the above.
      2004-01-20  Alexandre Oliva  <aoliva@redhat.com>
      * config/frv/frv.md (symGOT2reg_hilo, symGOTOFF2reg_hilo): Add
      one more pseudo to further improve code generation.
      2004-01-19  Alexandre Oliva  <aoliva@redhat.com>
      * config/frv/frv.md (movdi_ldd): Introduce explicit indirection
      inside UNSPEC.
      2004-01-16  Alexandre Oliva  <aoliva@redhat.com>
      * config/frv/frv.c (frv_legitimate_address_p): Added
      allow_double_reg_p argument.  Adjust all callers.  Use it to
      decide whether to enable double-register indirect addressing.
      (frv_funcde...
      3e7f6cce
  20. 06 Feb, 2004 1 commit
  21. 03 Feb, 2004 2 commits
    • kazu's avatar
      * config/alpha/alpha.c, config/arm/arm.c, config/c4x/c4x.c, · bcd9bd66
      kazu authored
      	config/fr30/fr30.md, config/frv/frv.c, config/frv/frv.md,
      	config/h8300/h8300.c, config/ia64/ia64.c, config/ip2k/ip2k.md,
      	config/m32r/m32r.md, config/m68hc11/m68hc11.c,
      	config/mips/mips.md, config/mmix/mmix.c,
      	config/mn10300/mn10300.c, config/mn10300/mn10300.md,
      	config/ns32k/ns32k.c, config/pa/pa.md, config/pdp11/pdp11.c,
      	config/rs6000/altivec.md, config/s390/s390.c,
      	config/s390/s390.h, config/s390/s390.md, config/sh/sh.c,
      	config/sh/sh.h, config/sh/sh.md, config/stormy16/stormy16.c:
      	Use const0_rtx instead of GEN_INT (0).  Do the same for other
      	constants that are readily available.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77161 138bc75d-0d04-0410-961f-82ee72b054a4
      bcd9bd66
    • kazu's avatar
      * system.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Poison. · 128c89d3
      kazu authored
      	* config/frv/frv-protos.h: Remove the prototype for
      	frv_function_arg_keep_as_reference.
      	* config/frv/frv.c (frv_function_arg_keep_as_reference):
      	Remove.
      	* config/frv/frv.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Likewise.
      	* config/stormy16/stormy16.h: Remove the commented-out
      	definition of FUNCTION_ARG_KEEP_AS_REFERENCE.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77148 138bc75d-0d04-0410-961f-82ee72b054a4
      128c89d3
  22. 02 Feb, 2004 1 commit
    • kazu's avatar
      * config/arc/arc.md, config/arm/arm.c, config/arm/arm.md, · 29bb088d
      kazu authored
      	config/c4x/c4x.c, config/c4x/c4x.md, config/cris/cris.md,
      	config/frv/frv.c, config/h8300/h8300.c, config/ip2k/ip2k.md,
      	config/iq2000/iq2000.c, config/m32r/m32r.c,
      	config/mcore/mcore.c, config/mips/mips.c, config/mmix/mmix.md,
      	config/mn10300/mn10300.c, config/rs6000/rs6000.c,
      	config/rs6000/rs6000.md, config/sh/sh.c, config/sh/sh.md,
      	config/stormy16/stormy16.c, config/v850/v850.md,
      	config/xtensa/xtensa.c: Replace gen_rtx with gen_rtx_fmt_e*.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77098 138bc75d-0d04-0410-961f-82ee72b054a4
      29bb088d
  23. 01 Feb, 2004 1 commit
    • kazu's avatar
      * config/arm/arm.c, config/arm/arm.h, config/arm/arm.md, · 1a83b3ff
      kazu authored
      	config/arm/linux-gas.h, config/arm/netbsd-elf.h,
      	config/arm/netbsd.h, config/arm/pe.c, config/avr/avr.c,
      	config/avr/avr.h, config/avr/avr.md, config/c4x/c4x.h,
      	config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.c,
      	config/frv/frv.h, config/ip2k/ip2k.c, config/iq2000/iq2000.c,
      	config/iq2000/iq2000.h, config/m32r/m32r.c,
      	config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
      	config/m68hc11/m68hc11.md, config/m68k/m68k.md,
      	config/mcore/mcore.c, config/mcore/mcore.h,
      	config/mcore/mcore.md, config/mips/mips.c,
      	config/ns32k/ns32k.h, config/ns32k/ns32k.md,
      	config/rs6000/rs6000.c, config/s390/s390.c,
      	config/s390/s390.md, config/sparc/sparc.c, config/v850/v850.c,
      	config/xtensa/xtensa.h, config/xtensa/xtensa.md: Replace
      	"gen_rtx (FOO, " with "gen_rtx_FOO (".
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77080 138bc75d-0d04-0410-961f-82ee72b054a4
      1a83b3ff
  24. 29 Jan, 2004 2 commits
  25. 16 Jan, 2004 1 commit
  26. 18 Dec, 2003 1 commit
  27. 13 Dec, 2003 1 commit
    • kazu's avatar
      * config/vxlib.c: Fix comment typos. · efee20da
      kazu authored
      	* config/alpha/alpha.c: Likewise.
      	* config/arm/arm.c: Likewise.
      	* config/arm/arm.md: Likewise.
      	* config/c4x/c4x.c: Likewise.
      	* config/c4x/c4x.md: Likewise.
      	* config/cris/cris.h: Likewise.
      	* config/cris/cris.md: Likewise.
      	* config/fr30/fr30.c: Likewise.
      	* config/fr30/fr30.h: Likewise.
      	* config/fr30/fr30.md: Likewise.
      	* config/frv/frv.c: Likewise.
      	* config/frv/frv.md: Likewise.
      	* config/frv/frvbegin.c: Likewise.
      	* config/i386/athlon.md: Likewise.
      	* config/i386/i386.c: Likewise.
      	* config/i386/i386.md: Likewise.
      	* config/i386/sco5.h: Likewise.
      	* config/ia64/ia64.md: Likewise.
      	* config/ip2k/ip2k.c: Likewise.
      	* config/ip2k/ip2k.md: Likewise.
      	* config/m68hc11/m68hc11.h: Likewise.
      	* config/m68k/m68k.h: Likewise.
      	* config/mips/mips.c: Likewise.
      	* config/rs6000/rs6000.c: Likewise.
      	* config/s390/s390.md: Likewise.
      	* config/sh/sh.h: Likewise.
      	* config/sparc/sparc.md: Likewise.
      	* config/v850/v850.c: Likewise.
      	* config/v850/v850.h: Likewise.
      	* config/v850/v850.md: Likewise.
      	* config/xtensa/xtensa.c: Likewise.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74596 138bc75d-0d04-0410-961f-82ee72b054a4
      efee20da
  28. 11 Dec, 2003 1 commit
    • steven's avatar
      2003-12-11 Steven Bosscher <steven@gcc.gnu.org> · 5496dbfc
      steven authored
      	* basic-block.h (BLOCK_HEAD, BLOCK_END): Remove.
      	(BLOCK_HEAD_TREE, BLOCK_END_TREE): Remove.
      	(basic_block_def): Rename `head' to `head_' and `end' to `end_'.
      	(BB_HEAD, BB_END): New accessor macros for the `head_' and `end_'
      	fields of a basic block.
      	* bb-reorder.c, bt-load.c, caller-save.c, cfg.c, cfganal.c,
      	cfgbuild.c, cfgcleanup.c, cfglayout.c, cfgloop.c, cfgloopanal.c,
      	cfgloopmanip.c, cfgrtl.c, combine.c, conflict.c, df.c, emit-rtl.c,
      	final.c, flow.c, function.c, gcse.c, global.c, graph.c,
      	haifa-sched.c, ifcvt.c, lcm.c, local-alloc.c, loop-unswitch.c,
      	loop.c, postreload.c, predict.c, profile.c, ra-build.c, ra-debug.c,
      	ra-rewrite.c, ra.c, recog.c, reg-stack.c, regclass.c, regmove.c,
      	regrename.c, reload1.c, resource.c, sched-ebb.c, sched-rgn.c,
      	sibcall.c, tracer.c, config/frv/frv.c, config/i386/i386.c,
      	config/ia64/ia64.c: Use the BB_HEAD and BB_END macros instead of
      	accessing the `head' and `end' fields of a basic block directly.
      
      	* gengtype.c: Add missing piece from earlier patch.  Dunno what
      	I was thinking...
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74520 138bc75d-0d04-0410-961f-82ee72b054a4
      5496dbfc
  29. 19 Nov, 2003 1 commit
  30. 14 Nov, 2003 2 commits
  31. 06 Nov, 2003 1 commit
  32. 21 Oct, 2003 1 commit
  33. 14 Oct, 2003 1 commit
    • echristo's avatar
      2003-10-13 Eric Christopher <echristo@redhat.com> · 41dfc620
      echristo authored
      	* config/frv/frv.c (frv_adjust_field_align): Redo check for
      	too wide bitfields.
      	(frv_hard_regno_mode_ok): Add SPR_P and AP_FIRST.
      	* config/frv/frv.h (FUNCTION_PROFILER): Remove abort call.
      	(SBSS_SECTION_ASM_OP): Remove.
      	(EXTRA_SECTIONS): Remove in_sbss.
      	(EXTRA_SECTION_FUNCTIONS): Remove SBSS_SECTION_FUNCTION.
      	(SBSS_SECTION_FUNCTION, sbss_section): Remove.
      	(ASM_OUTPUT_ALIGNED_DECL_LOCAL): Change sbss_section to
      	named_section.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72463 138bc75d-0d04-0410-961f-82ee72b054a4
      41dfc620
  34. 07 Oct, 2003 1 commit
    • zack's avatar
      * libfuncs.h (LTI_extendsfdf2, LTI_extendsfxf2, LTI_extendsftf2) · a7cc195f
      zack authored
      	(LTI_extenddfxf2, LTI_extenddftf2, LTI_truncdfsf2, LTI_truncxfsf2)
      	(LTI_trunctfsf2, LTI_truncxfdf2, LTI_trunctfdf2, LTI_floatsisf)
      	(LTI_floatdisf, LTI_floattisf, LTI_floatsidf, LTI_floatdidf)
      	(LTI_floattidf, LTI_floatsixf, LTI_floatdixf, LTI_floattixf)
      	(LTI_floatsitf, LTI_floatditf, LTI_floattitf, LTI_fixsfsi, LTI_fixsfdi)
      	(LTI_fixsfti, LTI_fixdfsi, LTI_fixdfdi, LTI_fixdfti, LTI_fixxfsi)
      	(LTI_fixxfdi, LTI_fixxfti, LTI_fixtfsi, LTI_fixtfdi, LTI_fixtfti)
      	(LTI_fixunssfsi, LTI_fixunssfdi, LTI_fixunssfti, LTI_fixunsdfsi)
      	(LTI_fixunsdfdi, LTI_fixunsdfti, LTI_fixunsxfsi, LTI_fixunsxfdi)
      	(LTI_fixunsxfti, LTI_fixunstfsi, LTI_fixunstfdi, LTI_fixunstfti)
      	(extendsfdf2_libfunc, extendsfxf2_libfunc, extendsftf2_libfunc)
      	(extenddfxf2_libfunc, extenddftf2_libfunc, truncdfsf2_libfunc)
      	(truncxfsf2_libfunc, trunctfsf2_libfunc, truncxfdf2_libfunc)
      	(trunctfdf2_libfunc, floatsisf_libfunc, floatdisf_libfunc)
      	(floattisf_libfunc, floatsidf_libfunc, floatdidf_libfunc)
      	(floattidf_libfunc, floatsixf_libfunc, floatdixf_libfunc)
      	(floattixf_libfunc, floatsitf_libfunc, floatditf_libfunc)
      	(floattitf_libfunc, fixsfsi_libfunc, fixsfdi_libfunc, fixsfti_libfunc)
      	(fixdfsi_libfunc, fixdfdi_libfunc, fixdfti_libfunc, fixxfsi_libfunc)
      	(fixxfdi_libfunc, fixxfti_libfunc, fixtfsi_libfunc, fixtfdi_libfunc)
      	(fixtfti_libfunc, fixunssfsi_libfunc, fixunssfdi_libfunc)
      	(fixunssfti_libfunc, fixunsdfsi_libfunc, fixunsdfdi_libfunc)
      	(fixunsdfti_libfunc, fixunsxfsi_libfunc, fixunsxfdi_libfunc)
      	(fixunsxfti_libfunc, fixunstfsi_libfunc, fixunstfdi_libfunc)
      	(fixunstfti_libfunc): Delete.
      	* optabs.h (struct optab_handlers): Break out of struct optab.
      	(struct convert_optab, convert_optab, enum convert_optab_index,
      	convert_optab_table, sext_optab, zext_optab, trunc_optab,
      	sfix_optab, ufix_optab, sfixtrunc_optab, ufixtrunc_optab,
      	sfloat_optab, ufloat_optab): New.
      	(set_conv_libfunc): Prototype.
      	(GEN_FCN): Use C90 indirect call syntax, remove unnecessary cast.
      	(trunc_optab): Renamed btrunc_optab.
      	* builtins.c (expand_builtin_mathfn): Update to match.
      	* optabs.c (extendtab, fixtab, fixtrunctab, floattab): Delete.
      	(convert_optab_table, new_convert_optab, init_convert_optab)
      	(init_interclass_conv_libfuncs, init_intraclass_conv_libfuncs)
      	(set_conv_libfunc): New.
      	(can_extend_p, gen_extend_insn, can_fix_p, can_float_p)
      	(expand_float, expand_fix): Use new conversion optabs,
      	not old insn code tables or long chains of ifs.
      	(init_optabs): No need to clear old insn code tables.
      	Initialize the new optabs, not the old libfunc array entries.
      	Don't handle FIXUNS_TRUNC_LIKE_FIX_TRUNC here.
      	* genopinit.c: Initialize conversion optabs, not the
      	former insn code tables.  Remove unnecessary casts.
      	Handle FIXUNS_TRUNC_LIKE_FIX_TRUNC here.
      	* expr.c (convert_move): Remove redundant check that
      	to_real==from_real.  Use the conversion optabs instead
      	of long chains of tests of modes.  Move partial-integer-mode
      	interconversion above all integer conversion.  Do not recurse
      	on a value forced into a register in the original mode.
      
      	* config/gofast.h, config/frv/frv.c, config/ia64/ia64.c
      	* config/mips/mips.c, config/pa/pa.c, config/rs6000/rs6000.c
      	* config/sparc/sparc.c: Use set_conv_libfunc to adjust entries
      	in new conversion optabs; do not reference the old libfunc
      	array entries.  No need to include libfuncs.h.
      
      
      git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72178 138bc75d-0d04-0410-961f-82ee72b054a4
      a7cc195f