1. 31 Jul, 2000 22 commits
  2. 30 Jul, 2000 18 commits
    • Makefile.in (OBJS): Add doloop.o. · 5527bf14
      	* Makefile.in (OBJS): Add doloop.o.
      	* doloop.c: New file.
      
      	* final.c (insn_current_reference_address): Return 0 before final.
      	* flags.h (flag_branch_on_count_reg): Fix typos in commentary.
      	* jump.c (any_uncondjump_p): Likewise.
      	* loop.c (indirect_jump_in_function): Make static.
      	(strength_reduce): Call doloop_optimize.
      	(insert_bct, instrument_loop_bct): Remove.
      	* loop.h (doloop_optimize): Prototype.
      	* recog.c (split_all_insns): Split all INSN_P.
      	* toplev.c (flag_branch_on_count_reg): Default on.
      
      	* config/c4x/c4x.c (c4x_optimization_options): Don't set
      	flag_branch_on_count_reg.
      	* config/i386/i386.c (override_options): Likewise.
      	* config/rs6000/rs6000.c (optimization_options): Likewise.
      
      	* config/i386/i386.md (decrement_and_branch_on_count): Remove.
      	(doloop_end): New.
      	(dbra_ge): Remove, as well as all it's splitters.
      
      	* config/rs6000/rs6000.md (decrement_and_branch_on_count): Remove.
      	(doloop_end): New.
      
      	* config/ia64/ia64-protos.h (ar_lc_reg_operand): Declare.
      	(ia64_register_move_cost): Declare.
      	* config/ia64/ia64.c (ar_lc_reg_operand): New.
      	(struct ia64_frame_info): Add ar_size.
      	(ia64_compute_frame_size): Set it.
      	(save_restore_insns): Save and restore ar.lc.
      	(ia64_register_move_cost): New, moved from header file.  Handle
      	application registers.
      	(REG_AR_PFS, REG_AR_EC): Remove.  Replace with AR_*_REGNUM numbers.
      	(emit_insn_group_barriers): Special case doloop_end_internal.
      	(ia64_epilogue_uses): Mark ar.lc live at end.
      	* config/ia64/ia64.h (AR_CCV_REGNUM, AR_LC_REGNUM): New registers.
      	(AR_EC_REGNUM, AR_PFS_REGNUM): New registers.
      	(FIRST_PSEUDO_REGISTER): Make room.
      	(AR_M_REGNO_P, AR_I_REGNO_P, AR_REGNO_P): New.
      	(FIXED_REGISTERS, CALL_USED_REGISTERS): Update.
      	(REG_ALLOC_ORDER): Update.
      	(HARD_REGNO_MODE_OK): Update.
      	(REGISTER_NAMES): Update.
      	(enum reg_class): Add AR_M_REGS and AR_I_REGS.
      	(REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update.
      	(REGNO_REG_CLASS): Update.
      	(LEGITIMATE_ADDRESS_DISP): Displacement range is 9 bits, not 10.
      	(REGISTER_MOVE_COST): Move out of line.
      	(PREDICATE_CODES): Update.
      	* config/ia64/ia64.md (movdi patterns): Handle ar register classes.
      	(addsi3_plus1_alt, adddi3_plus1_alt): New.
      	(shladd_elim splitter): Allow constants in the predicate.
      	(doloop_end, doloop_end_internal): New.
      
      From-SVN: r35358
      Richard Henderson committed
    • c90-digraph-1.c: Don't xfail. · 1cf0acdd
              * gcc.dg/c90-digraph-1.c: Don't xfail.
              * gcc.dg/compare2.c (case 10): Xfail.
              * gcc.dg/noncompile/redecl-1.c: Fix expected error message.
      
      From-SVN: r35357
      Richard Henderson committed
    • genattrtab.c (struct insn_def): Add lineno member. · a4cad544
              * genattrtab.c (struct insn_def): Add lineno member.
              (struct insn_ent): Likewise.
              (struct attr_desc): Likewise.
              (struct delay_desc): Likewise.
              (struct function_unit_op): Likewise.
              (struct function_unit): Likewise.
              (check_attr_value): Use message_with_line.
              (check_defs): Likewise.
              (expand_units): Likewise.
              (check_attr_test): Take a lineno argument.
              (gen_attr): Likewise.
              (gen_insn): Likewise.
              (gen_delay): Likewise.
              (gen_unit): Likewise.
              (main): Give it to them.
              (convert_set_attr_alternative): Take an insn_def argument
              instead of num_alt and insn_index.
              (convert_set_attr): Likewise.
              (write_test_expr): Protect INSN_ADDRESSES load
              with INSN_ADDRESSES_SET_P.
      
      From-SVN: r35356
      Richard Henderson committed
    • mangle.c (DECL_TEMPLATE_ID_P): Remove. · 722bed0f
      	* mangle.c (DECL_TEMPLATE_ID_P): Remove.
      	(CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
      	ascertaining primaryness.
      	(G): Remove template_args.
      	(decl_is_template_id): New function.
      	(write_encoding): Use decl_is_template_id.
      	(write_name): Likewise.  Handle type_decls.  Get main variant of
      	type decls.
      	(write_nested_name): Likewise.
      	(write_prefix): Likewise.
      	(write_template_prefix): Likewise.
      	(write_special_name_constructor): Remove defunct production from
      	comment.
      	(write_bare_function_type): Remove comment about absent parameter.
      	(write_template_template_arg): Add missing grammar production to
      	comment.
      
      From-SVN: r35355
      Alex Samuel committed
    • Container.java (remove(int)): Wrote. · 4e07a9ea
      	* java/awt/Container.java (remove(int)): Wrote.
      	(remove(Component)): Wrote.
      	(add(Component)): Wrote.
      	(add(Component,int)): Wrote.
      	(removeAll): Wrote.
      	(addNotify): Set our own peer.
      	* java/awt/Scrollbar.java (listeners): Changed type.
      	(Scrollbar): Don't initialize listeners.
      	(addNotify): Wrote.
      	(setValue): Call setValues.
      	(setMinimum): Likewise.
      	(setMaxPriority): Likewise.
      	(setVisibleAmount): Likewise.
      	(setValues): Wrote.
      	(setUnitIncrement): Forward to peer.
      	(setLineIncrement): Call setUnitIncrement.
      	(setPageIncrement): Call setBlockIncrement.
      	(setBlockIncrement): Forward to peer.
      	(addAdjustmentListener): Rewrote.
      	(removeAdjustmentListener): Rewrote.
      	(processAdjustmentEvent): Rewrote.
      	(paramString): Wrote.
      	* Makefile.in: Rebuilt.
      	* Makefile.am (awt_java_source_files): Added Button.java.
      	* java/awt/Button.java: New file.
      	* java/awt/Toolkit.java (createLabel): Declare.
      	(createButton): Likewise.
      	(createScrollbar): Likewise.
      	(createContainer): Likewise.
      	* java/awt/Label.java (addNotify): Wrote.
      	(setAlignment): Call setAlignment in the peer.
      	(setText): Call setText in the peer.
      
      From-SVN: r35354
      Tom Tromey committed
    • * flow.c (init_propagate_block_info): Use pc_set. · 3a8c5c77
      From-SVN: r35353
      Richard Henderson committed
    • Test case for gcj/295. · 9145715c
      From-SVN: r35352
      Anthony Green committed
    • * i386.md (*lea_general_[123]) New insns and splits. · 58787064
      	(addsi3 to lea splitter): Handle other modes too.
      	(shlsi3 to lea splitter): Likewise.
      	(addhi_1_lea, shlhi_1_lea): New patterns.
      	(addhi_1, shlhi_1): Conditionize by PARTIAL_REG_STALL.
      
      From-SVN: r35351
      Jan Hubicka committed
    • recog.c (general_operand, [...]): Accept any mode for VOIDmode CONSTANT_P operands. · 8acb2f24
      
      	* recog.c (general_operand, nonimmediate_operand): Accept
      	any mode for VOIDmode CONSTANT_P operands.
      
      From-SVN: r35350
      Jan Hubicka committed
    • gcse.c (try_replace_reg): Use validate_replace_rtx_subexp instead of replace_rtx. · e251e2a2
      
      	* gcse.c (try_replace_reg): Use validate_replace_rtx_subexp
      	instead of replace_rtx.
      	* recog.c (validate_replace_rtx_subexp): New function.
      	* recog.h (validate_replace_rtx_subexp): Declare.
      
      From-SVN: r35349
      Jan Hubicka committed
    • combine.c (simplify_set, [...]): Use full mask instead of GET_MODE_MASK (mode)… · e8dc6d50
      combine.c (simplify_set, [...]): Use full mask instead of GET_MODE_MASK (mode) as force_to_mode argument.
      
      	* combine.c (simplify_set, make_extraction, make_compound_operation
      	make_field_assignment): Use full mask instead of GET_MODE_MASK (mode)
      	as force_to_mode argument.
      
      From-SVN: r35348
      Jan Hubicka committed
    • combine.c (record_promoted_value): Allow bitsize of mode to be equivalent to… · 25af74a0
      combine.c (record_promoted_value): Allow bitsize of mode to be equivalent to HOST_BITS_PER_WISE_INT.
      
      
      	* combine.c (record_promoted_value):  Allow bitsize of mode
      	to be equivalent to HOST_BITS_PER_WISE_INT.
      
      From-SVN: r35346
      Jan Hubicka committed
    • function.c (assign_stack_local_1, [...]): Do not call gen_mode_alignment when mode is BLKmode. · dbab7b72
      	* function.c (assign_stack_local_1, assign_stack_temp_for_type):
      	Do not call gen_mode_alignment when mode is BLKmode.
      
      From-SVN: r35345
      Jan Hubicka committed
    • * loop.c (express_from_1): Fix call of simplify_gen_binary. · 0ca90ba6
      From-SVN: r35344
      Jan Hubicka committed
    • simplify-rtx.c (simplify_relational_operation): Verify that mode == VOIDmode… · 47b1e19b
      simplify-rtx.c (simplify_relational_operation): Verify that mode == VOIDmode implies both operands to be VOIDmode.
      
      
      	* simplify-rtx.c (simplify_relational_operation): Verify that mode ==
      	VOIDmode implies both operands to be VOIDmode.
      	(simplify_ternary_operation): Compute properly the mode of comparison.
      	* combine.c (combine_simplify_rtx): Likewise.
      
      From-SVN: r35343
      Jan Hubicka committed
    • basic-block.h (struct loops): New field rc_order. · c34d5374
      	* basic-block.h (struct loops): New field rc_order.
      	* flow.c (flow_loops_cfg_dump): Dump rc_order if computed.
      	(flow_loops_free): Free rc_order.
      	(flow_depth_first_order_compute): New parameter rc_order.
      	(flow_loops_find): Allocate rc_order and swap usage with
       	dfs_order.
      
      From-SVN: r35342
      Michael Hayes committed
    • c4x.md (set_ldp_prologue): Add for RTL prologue/epilogue. · 52695ce0
      	* config/c4x/c4x.md (set_ldp_prologue): Add for RTL prologue/epilogue.
      	(push_st, push_dp, pop_st, pop_dp, popqi_unspec): Likewise.
      	(nodb_call, return_from_epilogue): Likewise.
      	(return_from_interrupt_epilogue, prologue, epilogue): Likewise.
      	* config/c4x/c4x.c (c4x_expand_prologue, c4x_expand_eplilogue): Add.
      	* config/c4x/c4x-protos.h (c4x_interrupt_function_p): Add.
      	(c4x_expand_prologue, c4x_expand_epilogue): Likewise.
      	(c4x_valid_type_attribute_p): Likewise.
      	* config/c4x/c4x.h (FUNCTION_PROLOGUE, FUNCTION_EPILOGUE): Delete.
      	(FUNCTION_BLOCK_PROFILER_EXIT): Convert to emit RTL.
      
      Co-Authored-By: Michael Hayes <m.hayes@elec.canterbury.ac.nz>
      
      From-SVN: r35341
      Herman A.J. ten Brugge committed