1. 31 Aug, 1999 18 commits
    • cse.c (delete_trivially_dead_insns): Do not delete stores to the internal_arg_pointer. · 61c48fbf
      
              * cse.c (delete_trivially_dead_insns): Do not delete stores to
              the internal_arg_pointer.
      
      From-SVN: r29017
      Jeffrey A Law committed
    • backport: Makefile.in (STAGESTUFF): Add *.peephole2. · ede7cd44
              Merge peephole2 from new_ia32_branch:
              * Makefile.in (STAGESTUFF): Add *.peephole2.
              (mostlyclean): Likewise.
              (recog.o): Depend on resource.h.
      
              * final.c (peephole): Conditionalize decl on HAVE_peephole.
              (final_scan_insn): Likewise for the invocation of peephole.
              * genconfig.c (main): Look for peephole and peephole2 patterns.
              Emit HAVE_peephole* accordingly.
              * genpeep.c (main): Conditionalize entire output on HAVE_peephole.
              * flags.h (flag_peephole2): Declare.
              * toplev.c: New pass peephole2.  New flag -fpeephole2.
      
              * genattrtab.c (main): Count DEFINE_PEEPHOLE2.
              * gencodes.c (main): Likewise.
              * genextract.c (main): Likewise.
              * genoutput.c (main): Likewise.
              * genemit.c (max_operand_1): Look for the max scratch operand.
              (gen_rtx_scratch): New.
              (gen_exp): Use it, and pass on new arg subroutine_type.
              (gen_expand): Take max scratch into account.
              (gen_split): Emit peephole2 functions.
              (output_peephole2_scratch): New.
              (main): Include hard-reg-set.h and resource.h.  Handle peephole2.
              * genrecog.c (routine_type): Add PEEPHOLE2.
              (IS_SPLIT): New.
              (make_insn_sequence): Match outer parallel for peep2.  Discard
              top level scratches and dups.
              (add_to_sequence): New args insn_type and top.  Update all callers.
              Handle toplevel peep2 matching insns.
              (write_subroutine): Handle peep2.
              (write_tree_1): Likewise.
              (write_tree): Likewise.
              (main): Likewise.
              (change_state): New arg afterward.  Update all callers.
              Handle matching separate insns.
              * recog.c (recog_next_insn): New.
              (peephole2_optimize): New.
              * rtl.def (DEFINE_PEEPHOLE2): New.
              * resource.c (find_free_register): New argument last_insn.  Use it
              to find a register available through the entire span.
              * resource.h (find_free_register): Update prototype.
      
      From-SVN: r29015
      Richard Henderson committed
    • * getpwd.c: Check HAVE_GETCWD before defining it away. · 4dfeccf9
      From-SVN: r29013
      Richard Henderson committed
    • i386.c (output_strlen_unroll): Don't write xops[7] label if it wasn't set. · 8fd8d061
              * config/i386/i386.c (output_strlen_unroll): Don't write xops[7]
              label if it wasn't set.
      
      From-SVN: r29010
      Jim Kingdon committed
    • cpplib.c (struct directive): Const-ify name pointer and function pointer prototype. · 2ac9349e
      1999-08-31 12:44 -0700  Zack Weinberg  <zack@bitmover.com>
      
      	* cpplib.c (struct directive): Const-ify name pointer and
      	function pointer prototype.
      	(validate_else, do_define, do_line, do_include, do_undef,
      	do_error, do_pragma, do_ident, do_if, do_xifdef, do_else,
      	do_elif, do_endif, do_sccs, do_assert, do_unassert,
      	do_warning): Const-ify second arg.
      	(directive_table): Mark const.  Reorder entries by frequency
      	of usage, record statistics.
      
      From-SVN: r29009
      Zack Weinberg committed
    • rtl.h (RTL_CHECK1, RTL_CHECK2): New macros which type- and bounds- check RTL… · ef178af3
      rtl.h (RTL_CHECK1, RTL_CHECK2): New macros which type- and bounds- check RTL accesses if --enable-checking.
      
      1999-08-31 12:20 -0700 Zack Weinberg <zack@bitmover.com>
      
      	* rtl.h (RTL_CHECK1, RTL_CHECK2): New macros which type- and
      	bounds- check RTL accesses if --enable-checking.
      	(RTVEC_ELT): Bounds check if --enable-checking.
      	(XWINT, XINT, XSTR, XEXP, XVEC, XMODE, XBITMAP, XTREE,
      	XBBDEF): Use RTL_CHECK1/RTL_CHECK2 as appropriate.
      	(XVECEXP, XVECLEN): Define in terms of XVEC, RTVEC_ELT, and
      	GET_NUM_ELEM.
      	(X0WINT, X0INT, X0STR, X0EXP, X0VEC, X0MODE, X0BITMAP, X0TREE,
      	X0BBDEF, X0ADVFLAGS):  New macros for accessing '0' slots of RTXes.
      
      	(ADDR_DIFF_VEC_FLAGS): Use X0ADVFLAGS.
      	(NOTE_SOURCE_FILE): Use X0STR.
      	(NOTE_BLOCK_NUMBER, NOTE_EH_HANDLER, LABEL_NUSES,
      	MEM_ALIAS_SET): Use X0INT.
      	(NOTE_RANGE_INFO, NOTE_LIVE_INFO, NOTE_BASIC_BLOCK,
      	JUMP_LABEL, LABEL_REFS, LABEL_NEXTREF, CONTAINING_INSN):
      	Use X0EXP.
      	* real.h (CONST_DOUBLE_CHAIN): Use X0EXP.
      	* rtl.c (copy_rtx, copy_most_rtx): Copy '0' slots with X0WINT.
      	(rtl_check_failed_bounds, rtl_check_failed_type1,
      	rtl_check_failed_type2, rtvec_check_failed_bounds): New
      	functions.
      	(fancy_abort): Fix comment.
      
      	* cse.c (canon_hash): Read CONST_DOUBLE data slots with XWINT.
      	(cse_insn): Decrement LABEL_NUSES for jump target before
      	deleting jump insn.
      	* emit-rtl.c (gen_rtx_CONST_DOUBLE): Use X0EXP for slot 1.
      	* final.c (alter_subreg): Compute regno before changing x to
      	REG; set REGNO(x) after changing it.
      	* flow.c (count_basic_blocks): Use XWINT to inspect EH_REGION
      	notes containing CONST_INTs.
      	(delete_eh_regions): Use NOTE_EH_HANDLER.
      	* function.c (put_reg_into_stack): Make reg a MEM before
      	initializing it.
      	(fixup_var_refs_insns):  Save REG_NOTES (insn) in case we
      	delete insn.
      	(gen_mem_addressof): Make reg a MEM before initializing it.
      	* integrate.c (copy_rtx_and_substitute): Copy '0' slots with
      	X0WINT.
      	* local-alloc.c (update_equiv_regs): Zap REG_NOTES before
      	deleting an insn, not after.
      	(block_alloc): Only look at PATTERN(insn) if we have to, and
      	only if it's format class 'i'.
      	* loop.c (check_dbra_loop): Check bl->biv->add_val is a
      	CONST_INT before using its INTVAL.
      	* print-rtl.c (print_rtx): Use X0STR.
      	* regmove.c (fixup_match_1): Don't look at PATTERN of
      	non-class-'i' insn chain elements.
      	* reload.c (loc_mentioned_in_p): Take address of
      	in->fld[1].rtx directly.
      	* reload1.c (reload): Change reg to a MEM before initializing
      	it.
      	* varasm.c (mark_constant_pool): Skip CONST_DOUBLES, which
      	have no names.
      	* config/i386/i386.md (decrement_and_branch_if_zero): Fix typo.
      
      From-SVN: r29008
      Zack Weinberg committed
    • mips.c (machine_dependent_reorg): Force a barrier to output the local constant pool if... · 82305258
      Fri Aug 20 13:43:41 1999  Andrew Haley  <aph@cygnus.com>
      
      	* config/mips/mips.c (machine_dependent_reorg): Force a
      	barrier to output the local constant pool if a barrier hasn't
      	been found at a natural point in the instruction stream.
      
      From-SVN: r29004
      Andrew Haley committed
    • Daily bump. · 04b9e2bf
      From-SVN: r29003
      Jeff Law committed
    • Fix thinko in last change. · 6f573a73
      From-SVN: r29002
      Jeff Law committed
    • emit-rtl.c (copy_rtx_if_shared): A MEM which references virtual_stack_vars_rtx… · 83512665
      emit-rtl.c (copy_rtx_if_shared): A MEM which references virtual_stack_vars_rtx or virtual_incoming_args_rtx can...
      
              * emit-rtl.c (copy_rtx_if_shared): A MEM which references
              virtual_stack_vars_rtx or virtual_incoming_args_rtx can not
              be shared.
      
      From-SVN: r29001
      Jeffrey A Law committed
    • c-parse.in (language_string): Constify. · f425a887
      	* c-parse.in (language_string): Constify.
      
      	* dwarf2out.c (language_string): Remove declaration.
      
      	* dwarfout.c (language_string): Likewise.
      
      	* toplev.c (language_string, init_parse, finish_parse): Likewise.
      
      	* tree.h (language_string, init_parse, finish_parse): Declare.
      
      	* i386/sun386.h (language_string): Remove declaration.
      
      	* mips.h (language_string): Likewise.
      
      	* nextstep.h (language_string): Likewise.
      
      	* nextstep21.h (language_string): Likewise.
      
      	* rs6000.c (language_string): Likewise.
      
      In ch:
      	* parse.c (language_string): Constify.
      In cp:
      	* parse.y (language_string): Constify.
      In f:
      	* com.c (language_string): Constify.
      In java:
      	* lang.c (language_string): Constify.
      
      From-SVN: r29000
      Kaveh R. Ghazi committed
    • Makefile.in (OBJS, PROTO_OBJS): Remove getpwd.o. · a2957e1d
      	* Makefile.in (OBJS, PROTO_OBJS): Remove getpwd.o.
      	(getpwd.o): Remove target.
      
      	* getpwd.c: Delete file.  Its in libiberty now.
      
      	* dbxout.c (getpwd): Don't prototype.
      	* dwarf2out.c (getpwd): Likewise
      	* dwarfout.c (getpwd): Likewise
      	* final.c (getpwd): Likewise.
      	* protoize.c (getpwd): Likewise.
      
      From-SVN: r28999
      Kaveh R. Ghazi committed
    • repo.c (getpwd): Don't prototype. · 1fdf491e
      	* repo.c (getpwd): Don't prototype.
      	* xref.c (getpwd): Likewise
      
      From-SVN: r28998
      Kaveh R. Ghazi committed
    • * libiberty.h (getpwd): Prototype. · 25c29e1e
      From-SVN: r28997
      Kaveh R. Ghazi committed
    • Makefile.in (CFILES): Add calloc.c and getpwd.c. · 4ac3cb83
      	* Makefile.in (CFILES): Add calloc.c and getpwd.c.
      	(REQUIRED_OFILES): Add getpwd.o.
      	(getpwd.o): Add target.
      
      	* configure.in (AC_PREREQ): Bump to 2.13.
      	(AC_CHECK_HEADERS): Add check for <sys/stat.h>.
      
      	* getpwd.c: New file, moved here from gcc.
      
      From-SVN: r28996
      Kaveh R. Ghazi committed
    • Makefile.in (LIBS): Fix definition so we link with $(CLIB). · 00d30284
      	* Makefile.in (LIBS): Fix definition so we link with $(CLIB).
      	Remove hacks for stuff which comes from libiberty.
      
      	* Make-lang.in: Likewise.
      
      From-SVN: r28995
      Kaveh R. Ghazi committed
    • Makefile.in (LIBS, LIBDEPS): Link with & depend on libiberty.a. · 7d12830c
      	* Makefile.in (LIBS, LIBDEPS): Link with & depend on libiberty.a.
      	Remove hacks for stuff which now comes from libiberty.
      
      From-SVN: r28994
      Kaveh R. Ghazi committed
    • * cse.c: (fold_rtx): Cast to HOST_WIDE_INT in left shift. · 5c45a8ac
      From-SVN: r28993
      Kaveh R. Ghazi committed
  2. 30 Aug, 1999 14 commits
  3. 29 Aug, 1999 8 commits