1. 23 Mar, 2005 23 commits
  2. 22 Mar, 2005 17 commits
    • tree.h (DECL_IGNORED_P, [...]): Clarify comments. · 4aa708ba
      * tree.h (DECL_IGNORED_P, DECL_IN_SYSTEM_HEADER): Clarify comments.
      
      Also fix a typo in a previous ChangeLog
      
      From-SVN: r96903
      Tobias Schlüter committed
    • c-opts.c (c_common_parse_file): Only start/end main source file if debug hooks… · 9e9945c5
      c-opts.c (c_common_parse_file): Only start/end main source file if debug hooks says the writer wants it.
      
      2005-03-22  Daniel Berlin  <dberlin@dberlin.org>
      
      	* c-opts.c (c_common_parse_file): Only start/end main source file
      	if debug hooks says the writer wants it.
      	* dbxout.c (dbx_debug_hooks): Add start_end_main_source_file
      	member.
      	(xcoff_debug_hooks): Ditto.
      	* debug.c (do_nothing_hooks): Ditto.
      	* debug.h (gcc_debug_hooks): Ditto.
      	* dwarf2out.c (dwarf2_debug_hooks): Ditto.
      	* sdbout.c (sdb_debug_hooks): Ditto.
      	* vmsdbgout.c (vmsdbg_debug_hooks): Ditto.
      
      From-SVN: r96902
      Daniel Berlin committed
    • extend.texi: Deprecate C++ min/max operators. · 8ff24a79
      	* doc/extend.texi: Deprecate C++ min/max operators.
      
      	* parser.c (cp_parser_warn_min_max): New function.
      	(cp_parser_binary_expression): Use it.
      	(cp_parser_assignment_operator_opt): Likewise.
      	(cp_parser_operator): Likewise.
      
      	* g++.dg/opt/max1.C: Run with -Wno-deprecated.
      	* g++.dg/opt/pr7503-2.C: Likewise.
      	* g++.dg/opt/pr7503-3.C: Likewise.
      	* g++.dg/opt/pr7503-4.C: Likewise.
      	* g++.dg/opt/pr7503-5.C: Likewise.
      	* g++.dg/warn/minmax.C: New test.
      
      From-SVN: r96899
      Mark Mitchell committed
    • tree-ssa-loop-ivopts.c (determine_iv_cost): Do not try to preserve artificial original candidates. · cf5d1802
      	* tree-ssa-loop-ivopts.c (determine_iv_cost): Do not try to preserve
      	artificial original candidates.
      
      From-SVN: r96894
      Zdenek Dvorak committed
    • Makefile.am: Added new files. · f77b6ca3
              * Makefile.am: Added new files.
              * Makefile.in: Regenerate.
              * aclocal.m4: Regenerate.
              * configure.ac: add checks for signal.h headers file, as well as
              following functions: chdir, strerror, getlogin, gethostname, kill,
              link, symlink, perror, sleep, time.
              * configure: Regenerate.
              * intrinsics/chdir.c, intrinsics/gerror.c, intrinsics/getlog.c,
              intrinsics/hostnm.c, intrinsics/ierrno.c, intrinsics/kill.c,
              intrinsics/link.c, intrinsics/perror.c, intrinsics/rename.c,
              intrinsics/sleep.c, intrinsics/symlnk.c, intrinsics/time.c: Newly
              implementend g77 intrinsics.
      
              * check.c (gfc_check_chdir, gfc_check_chdir_sub, gfc_check_kill,
              gfc_check_kill_sub, gfc_check_link, gfc_check_link_sub,
              gfc_check_symlnk, gfc_check_symlnk_sub, gfc_check_rename,
              gfc_check_rename_sub, gfc_check_sleep_sub, gfc_check_gerror,
              gfc_check_getlog, gfc_check_hostnm, gfc_check_hostnm_sub,
              gfc_check_perror): new functions to check newly implemented
              g77 intrinsics.
              * gfortran.h: adding symbols for new intrinsics.
              * intrinsic.c (add_functions): adding new intrinsics.
              (add_subroutines): adding new intrinsics.
              * intrinsic.h: prototype for all checking and resolving
              functions.
              * iresolve.c (gfc_resolve_chdir, gfc_resolve_chdir_sub,
              gfc_resolve_hostnm, gfc_resolve_ierrno, gfc_resolve_kill,
              gfc_resolve_link, gfc_resolve_rename, gfc_resolve_symlnk,
              gfc_resolve_time, gfc_resolve_time8, gfc_resolve_rename_sub,
              gfc_resolve_kill_sub, gfc_resolve_link_sub,
              gfc_resolve_symlnk_sub, gfc_resolve_sleep_sub,
              gfc_resolve_gerror, gfc_resolve_getlog, gfc_resolve_hostnm_sub,
              gfc_resolve_perror): new functions to resolve intrinsics.
              * trans-intrinsic.c (gfc_conv_intrinsic_function): add case
              for new symbols.
      
              * g77_intrinsics_funcs.f: New test.
              * g77_intrinsics_sub.f: New test.
      
      From-SVN: r96893
      François-Xavier Coudert committed
    • cgraphunit.c (cgraph_estimate_size_after_inlining): Compute call cost based on argument sizes. · e5c4f28a
      
      	* cgraphunit.c (cgraph_estimate_size_after_inlining): Compute
      	call cost based on argument sizes.
      	(cgraph_mark_inline_edge): Avoid inline unit from shringking by
      	inlining.
      	* params.def: (max-inline-inssn-single): Set to 450.
      	(max-inline-insns-auto): Set to 90.
      	(max-inline-insns-recursive): Set to 450
      	(max-inline-insns-recursive-auto): Set to 450.
      	(large-function-insns): Set to 2700.
      	(inline-call-cost): New parameter.
      	* tree-inline.c (estimate_move_cost): New function.
      	(estimate_num_insns_1): Compute move sizes costs by estimate_move_cost
      	for non-gimple-regs, set cost to 0 for gimple-regs.  Compute call size
      	based on arguments.
      	* tree-inline.h (estimate_move_cost): Declare.
      	* invoke.texi: (max-inline-inssn-single): Change default to 450.
      	(max-inline-insns-auto): Change default to 90.
      	(max-inline-insns-recursive): Change default to 450
      	(max-inline-insns-recursive-auto): Change default to 450.
      	(large-function-insns): Change default to 2700.
      	(inline-call-cost): Document new parameter.
      
      	* gcc.dg/winline-6.c: Modify so inlined function have nonzero cost.
      
      Co-Authored-By: Jan Hubicka <jh@suse.cz>
      
      From-SVN: r96892
      Richard Guenther committed
    • * stacktrace.cc: Delete unused _Jv_FindCallingClassState. · b360e193
      From-SVN: r96891
      Mike Stump committed
    • posix.h: .dylib is used on all Apple MACH platforms. · 4148df12
              * include/posix.h: .dylib is used on all Apple MACH platforms.
              * java/lang/ieeefp.h: ppc64 is also __IEEE_BIG_ENDIAN.
      
      From-SVN: r96889
      Mike Stump committed
    • * config/i860/i860.h (target_flags, TARGET_XP, TARGET_SWITCHES) · 9ea1c2f6
      	(TARGET_DEFAULT): Delete.
      	* config/i860/i860.opt: New file.
      
      From-SVN: r96884
      Richard Sandiford committed
    • * config/frv/frv-protos.h (frv_branch_cost_string, frv_branch_cost_int) · 0b2c18fe
      	(frv_cpu_string, frv_condexec_insns_str, frv_condexec_insns)
      	(frv_condexec_temps_str, frv_condexec_temps, frv_sched_lookahead_str)
      	(frv_sched_lookahead): Delete.
      	* config/frv/frv.h (MASK_DEFAULT_ALLOC_CC): Move to frv.c.
      	(target_flags, MASK_GPR_32, MASK_FPR_32, MASK_SOFT_FLOAT)
      	(MASK_ALLOC_CC, MASK_DWORD, MASK_DOUBLE, MASK_MEDIA, MASK_MULADD)
      	(MASK_LIBPIC, MASK_ACC_4,  MASK_PACK, MASK_LONG_CALLS)
      	(MASK_ALIGN_LABELS, MASK_LINKED_FP, MASK_BIG_TLS, MASK_DEBUG_ARG)
      	(MASK_DEBUG_ADDR, MASK_DEBUG_STACK, MASK_DEBUG, MASK_DEBUG_LOC)
      	(MASK_DEBUG_COND_EXEC, MASK_NO_COND_MOVE, MASK_NO_SCC)
      	(MASK_NO_COND_EXEC, MASK_NO_VLIW_BRANCH, MASK_NO_MULTI_CE)
      	(MASK_FDPIC, MASK_INLINE_PLT, MASK_GPREL_RO, MASK_DEFAULT)
      	(TARGET_GPR_32, TARGET_FPR_32, TARGET_SOFT_FLOAT, TARGET_ALLOC_CC)
      	(TARGET_DWORD, TARGET_DOUBLE, TARGET_MEDIA, TARGET_MULADD)
      	(TARGET_LIBPIC, TARGET_ACC_4, TARGET_DEBUG_ARG, TARGET_DEBUG_ADDR)
      	(TARGET_DEBUG_STACK, TARGET_DEBUG, TARGET_DEBUG_LOC)
      	(TARGET_DEBUG_COND_EXEC, TARGET_NO_COND_MOVE, TARGET_NO_SCC)
      	(TARGET_NO_COND_EXEC, TARGET_NO_VLIW_BRANCH, TARGET_NO_MULTI_CE)
      	(TARGET_NO_NESTED_CE, TARGET_FDPIC, TARGET_INLINE_PLT, TARGET_BIG_TLS)
      	(TARGET_GPREL_RO, TARGET_PACK, TARGET_LONG_CALLS, TARGET_ALIGN_LABELS)
      	(TARGET_LINKED_FP, TARGET_GPR_64, TARGET_FPR_64, TARGET_HARD_FLOAT)
      	(TARGET_FIXED_CC, TARGET_COND_MOVE, TARGET_SCC, TARGET_COND_EXEC)
      	(TARGET_VLIW_BRANCH, TARGET_MULTI_CE, TARGET_NESTED_CE, TARGET_ACC_8)
      	(TARGET_SWITCHES, TARGET_OPTIONS, DEFAULT_CONDEXEC_TEMPS)
      	(DEFAULT_BRANCH_COST, DEFAULT_CONDEXEC_INSNS): Delete.
      	* config/frv/frv.c (frv_branch_cost_string, frv_branch_cost_int)
      	(frv_cpu_string, frv_condexec_insns_str, frv_condexec_insns)
      	(frv_condexec_temps_str, frv_condexec_temps, frv_sched_lookahead_str)
      	(frv_sched_lookahead): Delete.
      	(MASK_DEFAULT_ALLOC_CC): Moved from frv.h.
      	(TARGET_DEFAULT_TARGET_FLAGS, TARGET_HANDLE_OPTION): Override defaults.
      	(frv_handle_option): New function.  Move -mcpu= handling from...
      	(frv_override_options): ...here.  Remove handling of other
      	TARGET_OPTIONS.
      	(frv_ifcvt_modify_tests): Check !TARGET_COND_EXEC instead of
      	TARGET_NO_COND_EXEC and !TARGET_NESTED_CE to TARGET_NO_NESTED_CE.
      	(frv_ifcvt_modify_multiple_tests): Likewise !TARGET_MULTI_CE
      	and TARGET_NO_MULTI_CE.
      	(frv_for_each_packet): Likewise TARGET_NO_VLIW_BRANCH and
      	!TARGET_VLIW_BRANCH.
      	* config/frv/frv.opt: New file.
      
      From-SVN: r96883
      Richard Sandiford committed
    • fold-const.c (fold_build1, [...]): New. · ba199a53
      	* fold-const.c (fold_build1, fold_build2, fold_build3): New.
      	* tree.h: Add corresponding prototypes.
      
      From-SVN: r96881
      Kazu Hirata committed
    • fold-const.c (fold_ternary): Take decomposed arguments of CALL_EXPR. · 7cf57259
      	* fold-const.c (fold_ternary): Take decomposed arguments of
      	CALL_EXPR.
      	(fold): Update a call to fold_ternary.
      
      From-SVN: r96880
      Kazu Hirata committed
    • * gnu/gcj/tools/gcj_dbtool/Main.java (usage): Fixed output. · 4c8fa2e5
      From-SVN: r96879
      Tom Tromey committed
    • re PR c++/19980 (ICE on invalid template declaration) · 11e97737
      	PR c++/19980
      	* decl.c (start_preparsed_function): Robustify.
      
      	* g++.dg/template/redecl3.C: New test.
      
      From-SVN: r96872
      Volker Reichelt committed
    • re PR c++/20499 (ICE on duplicate class definition) · 0f3744f8
      	PR c++/20499
      	* parser.c (cp_parser_class_head): Return NULL_TREE when
      	encountering a redefinition.
      
      	* g++.dg/parse/error16.C: Tweak error markers.
      
      From-SVN: r96870
      Volker Reichelt committed