1. 25 May, 2004 1 commit
    • Makefile.in (OBJS): Add rtlhooks.o. · 2f93eea8
      2004-05-25  Paolo Bonzini  <bonzini@gnu.org>
      
      	* Makefile.in (OBJS): Add rtlhooks.o.
      	(rtlanal.o): Depend on function.h.
      	(cse.o): Depend on rtlhooks-def.h.
      	(combine.o): Depend on rtlhooks-def.h.
      	(rtlhooks.o): New rule.
      	* combine.c: Include rtlhooks-def.h.
      	(nonzero_bits, cached_nonzero_bits, nonzero_bits1,
      	num_sign_bit_copies, cached_num_sign_bit_copies,
      	num_sign_bit_copies1): Move most of the code to rtlanal.c.
      	(reg_nonzero_bits_for_combine,
      	reg_num_sign_bit_copies_for_combine): New functions holding
      	the remnants of the above.
      	(combine_rtl_hooks): New.
      	(combine_instructions): Set rtl_hooks instead of gen_lowpart.
      	* cse.c: Include rtlhooks-def.h.
      	(cse_rtl_hooks): New.
      	(cse_main): Set rtl_hooks instead of gen_lowpart.
      	* emit-rtl.c (gen_lowpart): Remove.
      	(gen_lowpart_general): Move to rtlhooks.c.
      	* rtl.h (nonzero_bits, num_sign_bit_copies,
      	struct rtl_hooks, rtl_hooks, general_rtl_hooks): New.
      	(gen_lowpart_general): Remove.
      	(gen_lowpart): Temporarily redefine as a macro.
      	* rtlanal.c: Include function.h.
      	(nonzero_bits, cached_nonzero_bits, nonzero_bits1,
      	num_sign_bit_copies, cached_num_sign_bit_copies,
      	num_sign_bit_copies1): New, from combine.c.
      	* rtlhooks.c: New file.
      
      From-SVN: r82234
      Paolo Bonzini committed
  2. 13 May, 2004 1 commit
  3. 29 Apr, 2004 1 commit
    • combine.c (combine_simplify_rtx): Adjust call to use simplify_relational_operation. · c6fb08ad
      2004-04-29  Paolo Bonzini  <bonzini@gnu.org>
      
              * combine.c (combine_simplify_rtx): Adjust call to use
              simplify_relational_operation.  Do not use SELECT_CC_MODE
              when a comparison already has a MODE_CC mode.
              (simplify_set): simplify_relational_operation may now
              return another relational expression.
              * cse.c (fold_rtx): simplify_relational_operation now
              takes of computing the comparison mode.
              * dojump.c (compare_from_rtx): Use simplify_relational_operation,
              remove dead code.
              (do_compare_rtx_and_jump): Likewise.
              * integrate.c (subst_constants): simplify_relational_operation
              may now return another relational expression.
              * simplify-rtx.c (simplify_gen_relational): Move most code to
              the new simplify_relational_operation and
              simplify_relational_operation_1 functions.
              (simplify_relational_operation): Rewritten.
              (simplify_relational_operation_1): New function.
              (simplify_ternary_operation): simplify_relational_operation
              may now return another relational expression.
              (simplify_rtx): Remove unnecessary temp variable.
      
      From-SVN: r81282
      Paolo Bonzini committed
  4. 04 Apr, 2004 1 commit
  5. 20 Mar, 2004 2 commits
  6. 11 Mar, 2004 1 commit
    • c-typeck.c, [...]: Fix comment typos and formatting. · 71cc389b
      	* c-typeck.c, combine.c, cse.c, dominance.c, et-forest.h,
      	ggc-page.c, var-tracking.c, config/fp-bit.c, config/c4x/c4x.c,
      	config/cris/cris.c, config/i386/ppro.md, config/i860/i860.c,
      	config/i860/i860.h, config/m32r/m32r.h, config/m32r/xm-m32r.h,
      	config/m68hc11/m68hc11.h, config/m68hc11/m68hc11.md,
      	config/mips/mips.c, config/mmix/mmix.c, config/ns32k/ns32k.h,
      	config/pa/pa.c, config/pa/pa32-regs.h, config/pa/pa64-regs.h,
      	config/pdp11/pdp11.h, config/rs6000/rs6000.c,
      	config/stormy16/stormy16.c: Fix comment typos and formatting.
      
      From-SVN: r79303
      Kazu Hirata committed
  7. 09 Mar, 2004 1 commit
    • simplify-rtx.c (simplify_const_relational_operation): New function renamed from… · 7ce3e360
      simplify-rtx.c (simplify_const_relational_operation): New function renamed from simplify_relational_operation.
      
      
      	* simplify-rtx.c (simplify_const_relational_operation): New function
      	renamed from simplify_relational_operation.
      	(simplify_relational_operation): Change prototype to accept an
      	additional mode argument.  Call simplify_const_relational_operation.
      	(simplify_gen_relational): Update simplify_relational_operation call.
      	(simplify_ternary_operation): Update simplify_relational_operation
      	subroutine call to use simplify_const_relational_operation instead.
      
      	* rtl.h (simplify_const_relational_operation): Prototype here.
      	(simplify_relational_operation): Add addtional mode argument.
      
      	* combine.c (combine_simplify_rtx): Update calls to
      	simplify_relational_operation.
      	(simplify_set): Likewise.
      	(gen_binary): Likewise.
      	* cse.c (fold_rtx): Likewise.
      	* dojump.c (compare_from_rtx): Likewise.
      	(do_compare_rtx_and_jump): Likewise.
      	* integrate.c (subst_constants): Likewise.
      	* unroll.c (simplify_cmp_and_jump_insns): Likewise.
      
      From-SVN: r79187
      Roger Sayle committed
  8. 05 Mar, 2004 2 commits
    • rtlanal.c: Include target.h and output.h. · f894b69b
      2004-03-05  Paolo Bonzini  <bonzini@gnu.org>
      
              * rtlanal.c: Include target.h and output.h.
              (rtx_cost, address_cost, default_address_cost): Move from...
              * cse.c (rtx_cost, address_cost, default_address_cost):
              ... this file.
              * rtl.h (rtx_cost, address_cost): Move under rtlanal.c.
              * Makefile.in: Adjust dependencies.
      
      From-SVN: r78961
      Paolo Bonzini committed
    • cse.c (cse_end_of_basic_block): Make static. · 86caf04d
      2004-02-18  Paolo Bonzini <bonzini@gnu.org>
      
      	* cse.c (cse_end_of_basic_block): Make static.
      	* local-alloc.c (function_invariant_p): Move to
      	reload1.c.
      	* loop.c (libcall_other_reg, record_excess_regs):
      	Make static.
      	* reload1.c (function_invariant_p): Moved here
      	from local-alloc.c, made static.
      	* rtl.h (cse_end_of_basic_block, function_invariant_p,
      	libcall_other_reg, record_excess_regs): Remove
      	declarations.
      
      From-SVN: r78960
      Paolo Bonzini committed
  9. 03 Mar, 2004 1 commit
    • alias.c (rtx_equal_for_memref_p): Use predicates to test rtx classes and new rtx class codes... · ec8e098d
      2004-02-07  Paolo Bonzini  <bonzini@gnu.org>
      
      	* 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.
      
      From-SVN: r78824
      Paolo Bonzini committed
  10. 01 Mar, 2004 1 commit
  11. 25 Feb, 2004 1 commit
  12. 24 Feb, 2004 1 commit
    • toplev.c (dump_file_tbl): Rename from dump_file. · c263766c
              * toplev.c (dump_file_tbl): Rename from dump_file.
              * 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.
      
      From-SVN: r78399
      Richard Henderson committed
  13. 16 Feb, 2004 1 commit
  14. 08 Feb, 2004 1 commit
    • c-objc-common.c (): Fix a typo in a warning. · 56ae04af
      	* c-objc-common.c (): Fix a typo in a warning.
      	* cse.c (preferrable): Change to preferable. Update all of its
      	callers.
      	* genautomata.c (ainsn): Change
      	first_ainsn_with_given_equialence_num to
      	first_ainsn_with_given_equivalence_num.  Update all of its
      	references.
      
      From-SVN: r77497
      Kazu Hirata committed
  15. 02 Feb, 2004 1 commit
    • alias.c (record_set): Use hard_regno_nregs. · 66fd46b6
      	* alias.c (record_set): Use hard_regno_nregs.
      	* bt-load.c (find_btr_reference, note_btr_set): Likewise.
      	* builtins.c (apply_args_size): Likewise.
      	* caller-save.c (setup_save_areas, save_call_clobbered_regs,
      	mark_set_regs, add_stored_regs, mark_referenced_regs,
      	insert_restore, insert_save, insert_one_insn): Likewise.
      	* cfgcleanup.c: Include regs.h
      	(mark_effect, mentions_nonequal_regs): Likewise.
      	* cfgrtl.c (mark_killed_regs): Likewise
      	* combine.c (update_table_tick, record_value_for_reg,
      	record_dead_and_set_regs, get_last_value_validate, use_crosses_set_p,
      	reg_dead_at_p_1, reg_dead_at_p, mark_used_regs_combine, move_deaths,
      	reg_bitfield_target_p, distribute_notes): Likewise.
      	* cse.c (mention_regs, insert, invalidate, invalidate_for_call,
      	exp_equiv_p, cse_insn): Likewise.
      	* cselib.c (cselib_lookup): Likewise.
      	(cselib_invalidate_regno, cselib_record_set): Likewise.
      	* df.c (df_ref_record): Likewise.
      	* dwarf2out.c (reg_loc_descriptor, multiple_reg_loc_descriptor):
      	Likewise.
      	* flow.c (mark_reg, insn_dead_p, mark_set_1, mark_used_reg,
      	count_or_remove_death_notes_bb): Likewise.
      	* function.c (aggregate_value_p, keep_stack_depressed): Likewise.
      	* gloval.c (global_alloc, find_reg, mark_reg_store, mark_reg_conflicts,
      	mark_reg_death, set_preference, reg_becomes_live, reg_dies): Likewise.
      	* integrate.c (mark_stores): Likewise.
      	* jump.c (delete_prior_computation): Likewise.
      	* lcm.c (reg_dies, reg_becomes_live): Likewise.
      	* local-alloc.c (combine_regs, find_free_reg, post_mark_life): Likewise.
      	* loop.c (LOOP_REGNO_NREGS): Likewise.
      	* postreload.c (reload_combine, reload_combine_note_store,
      	reload_combine_note_use, reload_cse_move2add, move2add_note_store): Likewise.
      	* ra-colorize.c (combine, color_usable_p, get_free_reg,
      	calculate_dont_begin, calculate_dont_begin, colorize_one_web,
      	try_recolor_web, insert_coalesced_conflicts, check_colors,
      	break_precolored_alias): Likewise.
      	* ra-debug.c: Include regs.h
      	(ra_print_rtx_object): Likewise.
      	* ra-rewrite (choose_spill_colors): Likewise.
      	(spill_same_color_p, update_spill_colors, spill_is_free): Likewise.
      	* ra.c (init_ra): Likewise.
      	* recog.c (reg_fits_class_p, peep2_reg_dead_p,
      	peep2_find_free_register): Likewise.
      	* reg-stack.c (subst_stack_regs_pat, convert_regs_exit): Likewise.
      	* regclass.c (hard_regno_nregs): New array.
      	(init_reg_modes_once): Initialize it.
      	(choose_hard_reg_mode): Use it.
      	(record_reg_classes): Likewise.
      	* regmove.c (mark_flags_life_zones): Likewise.
      	* regrename.c (note_sets, clear_dead_regs, regrename_optimize,
      	scan_rtx_reg, dump_def_use_chain, kill_value, set_value_regno,
      	copy_value, maybe_mode_change, find_oldest_value_reg,
      	copyprop_hardreg_forward_1):
      	* regs.h (hard_regno_nregs): Declare.
      	* realod.c (reload_inner_reg_of_subreg): Use it.
      	(push_reload, combine_reloads, find_dummy_reload,
      	hard_reg_set_here_p, operands_match_p, decompose, find_reloads,
      	refers_to_regno_for_reload_p, find_equiv_reg, regno_clobbered_p,
      	reload_adjust_reg_for_mode): Likewise.
      	* reload1.c (compute_use_by_pseudos, count_pseudo,
      	count_spilled_pseudo, find_reg, find_reload_regs, mark_home_live,
      	spill_hard_reg, forget_old_reloads_1, mark_reload_reg_in_use,
      	clear_reload_reg_in_use, reload_reg_free_for_value_p, free_for_value_p
      	allocate_reload_reg, choose_reload_regs, emit_reload_insns,
      	delete_output_reload): Likewise.
      	* resource.c (update_live_status, mark_referenced_resources,
      	mark_set_resources, mark_target_live_regs): Likewise.
      	* rtlanal.c:  Include regs.h
      	(refers_to_regno_p, reg_overlap_mentioned_p, dead_or_set_p,
      	dead_or_set_regno_p, find_regno_note, find_reg_fusage,
      	subreg_regno_offset, subreg_offset_representable_p,
      	hoist_test_store): Likewise.
      	* sched-deps.c (sched_analyze_1, sched_analyze_2): Likewise.
      	* sched-rgn.c (check_live_1, update_live_1): Likewise.
      	* stmt.c: Include regs.h
      	(decl_conflicts_with_clobbers_p): Likewise.
      	* varasm.c (make_decl_rtl): Likewise.
      	* Makefile.in (cfgcleanup.o, rtlanal.o, ra-debug.o): Add regs.h dependnecy.
      
      From-SVN: r77088
      Jan Hubicka committed
  16. 31 Jan, 2004 1 commit
    • combine.c (cse_main): Set gen_lowpart to gen_lowpart_for_combine and restore it to... · 4de249d9
      2004-01-31  Paolo Bonzini  <bonzini@gnu.org>
      
       	* combine.c (cse_main): Set gen_lowpart to gen_lowpart_for_combine
      	and restore it to gen_lowpart_general on exit.
      	(gen_lowpart_for_combine): Adjust all callers to go through
      	gen_lowpart.
      	* cse.c (cse_main): Set gen_lowpart to gen_lowpart_if_possible
      	and restore it to gen_lowpart_general on exit.
      	(gen_lowpart_if_possible): Adjust all callers to go through
      	gen_lowpart.
      	* emit-rtl.c (gen_lowpart_general): New name of gen_lowpart.
      	(gen_lowpart): Declare as pointer to function, initialized to
      	gen_lowpart_general.
      	* rtl.h (gen_lowpart): Declare as pointer to function.
      
      From-SVN: r77026
      Paolo Bonzini committed
  17. 24 Jan, 2004 2 commits
  18. 23 Jan, 2004 2 commits
    • re PR target/1532 (-O3 generates (obviously) redundant tests and jumps) · e129d93a
      	PR gcc/1532
      	* cse.c (cse_change_cc_mode): New static function.
      	(cse_change_cc_mode_insns, cse_cc_succs): Likewise.
      	(cse_condition_code_reg): New function.
      	* rtl.h (cse_condition_code_reg): Declare.
      	* toplev.c (rest_of_handle_cse2): Call cse_condition_code_reg.
      	* target.h (struct gcc_target): Add fixed_condition_code_regs and
      	cc_modes_compatible.
      	* target-def.h (TARGET_FIXED_CONDITION_CODE_REGS): Define.
      	(TARGET_CC_MODES_COMPATIBLE): Define.
      	(TARGET_INITIALIZER): Add new initializers.
      	* targhooks.c (default_cc_modes_compatible): New function.
      	* targhooks.c (default_cc_modes_compatible): Declare.
      	* hooks.c (hook_bool_intp_intp_false): New function.
      	* hooks.h (hook_bool_intp_intp_false): Declare.
      	* config/i386/i386.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
      	(TARGET_CC_MODES_COMPATIBLE): Define.
      	(ix86_fixed_condition_code_regs): New static function.
      	(ix86_cc_modes_compatible): Likewise.
      	* doc/tm.texi (Condition Code): Document new hooks.
      
      From-SVN: r76454
      Ian Lance Taylor committed
    • re PR rtl-optimization/13724 (Bad code generated for unsigned int -> long long multiplication) · 4c442790
      2004-01-22  Paolo Bonzini  <bonzini@gnu.org>
      
      	PR optimization/13724
      	* cse.c (fold_rtx) <SUBREG>:  Fold a SUBREG to zero if it
      	represents the zero bits produced by a ZERO_EXTEND operation.
      
      From-SVN: r76394
      Paolo Bonzini committed
  19. 20 Jan, 2004 1 commit
  20. 12 Jan, 2004 1 commit
    • alias.c: Invlude varray.h · 9ddb66ca
      	* alias.c:  Invlude varray.h
      	(alias_sets): Turn into varray.
      	(get_alias_set_entry): Use VARRAY; mark inline.
      	(mems_in_disjoint_alias_sets_p): Mark inline.
      	(record_alias_subset): Use varray.
      	(init_alias_once): Initialize varray.
      	(new_alias_set): Grow array.
      	* varray.c: Make VARRAY_GENERIC_PTR non GTYized.
      
      From-SVN: r75711
      Jan Hubicka committed
  21. 03 Dec, 2003 1 commit
  22. 27 Nov, 2003 1 commit
  23. 18 Oct, 2003 1 commit
  24. 11 Oct, 2003 1 commit
    • cse.c (constant_pool_entries_regcost): New global variable to hold the register… · dd0ba281
      cse.c (constant_pool_entries_regcost): New global variable to hold the register cost component of...
      
      
      	* cse.c (constant_pool_entries_regcost): New global variable to
      	hold the register cost component of constant_pool_entries_cost.
      	(fold_rtx): Calculate constant_pool_entries_regcost at the same
      	time as constant_pool_entries_cost.
      	(cse_insn): Set both src_folded_cost and src_folded_regcost from
      	constant_pool_entries_cost and constant_pool_entries_regcost.
      	(cse_main): Initialize constant_pool_entries_regcost to zero.
      
      	* optabs.c (expand_unop): Attach a REG_EQUAL note describing
      	the semantics of the sequence of bit operations used to negate
      	a floating-point value.
      	(expand_abs_nojump): Likewise attach a REG_EQUAL note describing
      	the semantics of the bit operations used to abs a floating point
      	value.
      
      From-SVN: r72326
      Roger Sayle committed
  25. 08 Oct, 2003 1 commit
    • re PR rtl-optimization/12142 (-fnon-call-exceptions generates incorrect code) · 9ab81df2
      	PR optimization/12142
      	* cse.c (count_reg_usage): In a SET with a REG SET_DEST, count the
      	uses of the register in the SET_SRC.  Remove unnecessary argument.
      	* pa.c (legitimize_pic_address): Before reload, use a scratch register
      	for the intermediate result in loading the address of a SYMBOL_REF.
      	Set the MEM_NOTRAP_P flag for the MEM.  Add a REG_EQUAL to the insn
      	which loads the SYMBOL_REF address.
      
      From-SVN: r72234
      John David Anglin committed
  26. 06 Oct, 2003 1 commit
  27. 26 Jul, 2003 1 commit
  28. 19 Jul, 2003 1 commit
    • alias.c [...]: Remove unnecessary casts. · 703ad42b
      	* alias.c alloc-pool.c bitmap.c bitmap.h bt-load.c builtins.c
      	c-common.c c-decl.c c-incpath.c c-lex.c c-opts.c c-parse.in
      	c-pragma.c c-typeck.c calls.c cfg.c cfganal.c cfgloop.c cfgrtl.c
      	collect2.c combine.c conflict.c coverage.c cppexp.c cppfiles.c
      	cpphash.c cppinit.c cpplex.c cpplib.c cppmacro.c cppspec.c
      	cpptrad.c cse.c cselib.c dbxout.c defaults.h df.c dominance.c
      	dwarf2out.c dwarfout.c emit-rtl.c except.c expmed.c expr.c final.c
      	fix-header.c flow.c fold-const.c function.c gcc.c gccspec.c gcov.c
      	gcse.c genattr.c genattrtab.c genautomata.c genconditions.c
      	genemit.c genextract.c genoutput.c genrecog.c gensupport.c
      	ggc-page.c ggc-simple.c global.c graph.c haifa-sched.c hashtable.c
      	integrate.c jump.c langhooks.c lcm.c line-map.c local-alloc.c
      	loop.c mips-tdump.c mips-tfile.c mkdeps.c optabs.c params.c
      	postreload.c prefix.c print-tree.c protoize.c ra-build.c
      	ra-colorize.c ra-rewrite.c ra.c recog.c reg-stack.c regclass.c
      	regmove.c regrename.c reload.c reload1.c reorg.c resource.c
      	sbitmap.c sched-deps.c sched-rgn.c sched-vis.c sdbout.c
      	simplify-rtx.c ssa-ccp.c ssa.c stmt.c stor-layout.c timevar.c
      	tlink.c toplev.c tree-dump.c tree.c unroll.c unwind-dw2-fde.c
      	varasm.c varray.c vmsdbgout.c xcoffout.c: Remove unnecessary
      	casts.
      
      From-SVN: r69587
      Kaveh R. Ghazi committed
  29. 18 Jul, 2003 1 commit
  30. 01 Jul, 2003 1 commit
    • combine.c (distribute_notes): Don't bother REG_WAS_0. · 6001794d
      	* combine.c (distribute_notes): Don't bother REG_WAS_0.
      	* cse.c (cse_insn): Likewise.
      	* final.c (final_scan_insn): Likewise.
      	* jump.c (duplicate_loop_exit_test): Likewise.
      	* rtl.c (reg_note_name): Remove REG_WAS_0.
      	* rtl.h (REG_WAS_0): Remove.
      	* unroll.c (final_reg_note_copy): Don't bother REG_WAS_0.
      	* config/avr/avr.c (output_movqi): Don't use reg_was_0.
      	(output_movhi): Likewise.
      	(output_movsisf): Likewise.
      	(reg_was_0): Remove.
      	* config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Don't use
      	REG_WAS_0.
      	(m68hc11_gen_movqi): Likewise.
      	* config/vax/vax-protos.h: Remove the prototype for
      	reg_was_0_p.
      	* config/vax/vax.c (follows_p): Remove.
      	(reg_was_0_p): Likewise.
      	* config/vax/vax.md (movsi): Don't use reg_was_0_p.
      	(movhi): Likewise.
      	(movqi): Likewise.
      	* doc/rtl.texi (REG_WAS_0): Remove.
      
      From-SVN: r68753
      Kazu Hirata committed
  31. 29 Jun, 2003 2 commits
    • cse.c: Convert prototypes to ISO C90. · 7080f735
      	* cse.c: Convert prototypes to ISO C90.
      	* cselib.c: Likewise.
      	* cselib.h: Likewise.
      	* dbxout.c: Likewise.
      	* debug.c: Likewise.
      	* df.c: Likewise.
      	* df.h: Likewise.
      	* dojump.c: Likewise.
      	* doloop.c: Likewise.
      	* dominance.c: Likewise.
      	* dwarf2asm.c: Likewise.
      	* dwarf2out.c: Likewise.
      	* dwarf2out.h: Likewise.
      	* dwarfout.c: Likewise.
      
      From-SVN: r68673
      Andreas Jaeger committed
    • alloc-pool.c: Fix comment formatting. · f9da5064
      	* alloc-pool.c: Fix comment formatting.
      	* bitmap.c: Likewise.
      	* bitmap.h: Likewise.
      	* bt-load.c: Likewise.
      	* builtins.c: Likewise.
      	* caller-save.c: Likewise.
      	* cfganal.c: Likewise.
      	* cfgrtl.c: Likewise.
      	* collect2.c: Likewise.
      	* cse.c: Likewise.
      	* df.c: Likewise.
      	* diagnostic.c: Likewise.
      	* dwarf2out.c: Likewise.
      	* dwarfout.c: Likewise.
      	* expmed.c: Likewise.
      	* final.c: Likewise.
      	* flags.h: Likewise.
      	* fold-const.c: Likewise.
      	* gcc.c: Likewise.
      	* gcov-io.h: Likewise.
      	* gcov.c: Likewise.
      	* genattrtab.c: Likewise.
      	* genautomata.c: Likewise.
      	* libgcov.c: Likewise.
      	* mips-tfile.c: Likewise.
      	* optabs.c: Likewise.
      	* prefix.c: Likewise.
      	* rtlanal.c: Likewise.
      	* stmt.c: Likewise.
      	* stor-layout.c: Likewise.
      	* toplev.c: Likewise.
      	* varasm.c: Likewise.
      	* vmsdbgout.c: Likewise.
      
      From-SVN: r68672
      Kazu Hirata committed
  32. 27 Jun, 2003 1 commit
  33. 04 Jun, 2003 2 commits
  34. 30 May, 2003 1 commit
    • cse.c (cse_insn): Simplify REG_EQUAL note on libcalls when making a substitution. · 0c19a26f
      	* cse.c (cse_insn): Simplify REG_EQUAL note on libcalls when
      	making a substitution.
      	(dead_libcall_p): If directly replacing a libcall with a
      	constant value produces an invalid instruction, also try forcing
      	the constant into the constant pool.
      	* expr.c (emit_move_insn): Add a REG_EQUAL note when it is not
      	obvious that the source is a constant.
      	(compress_float_constant): Use set_unique_reg_note to place
      	REG_EQUAL notes on instructions.
      
      From-SVN: r67247
      Roger Sayle committed