1. 27 Jun, 2003 4 commits
    • stmt.c (do_jump_if_equal): Return 0 earlier if OP1 and OP2 are known to be not equivalent. · d51d146f
      	* stmt.c (do_jump_if_equal): Return 0 earlier if OP1 and
      	OP2 are known to be not equivalent.
      
      From-SVN: r68557
      Kazu Hirata committed
    • final.c (debug_flush_symbol_queue): New function. · 6a08f7b3
              * final.c (debug_flush_symbol_queue): New function.
              (debug_queue_symbol): New function.
              (debug_free_queue): New function.
              (debug_nesting): New variable.
              (symbol_queue): New variable.
              (symbol_queue_index): Same.
              (symbol_queue_size): Same.
              * debug.h (debug_flush_symbol_queue): New.
              (debug_queue_symbol): New.
              (debug_free_queue): New.
              (debug_nesting): New.
              (symbol_queue_index): New.
              * dbxout.c (DBXOUT_DECR_NESTING): New macro.
              (DBXOUT_DECR_NESTING_AND_RETURN): New macro.
              (dbxout_init): Delay symbol output.
              (dbxout_global_decl): Save, set and reset TREE_USED bit around dbxout_symbol()
              call.
              (dbxout_begin_function): Same.
              (dbxout_finish): Free symbol queue.
              (dbxout_type): Put appropriate symbols in queue.
              (dbxout_symbol): Put info for symbol's type in queue. Decrement/Increment
              nesting counts flush symbol queue appropriately.
              (dbxout_parms): Increment dbxout nesting.
              (dbxout_reg_parms): Same.
              * flags.h (flag_debug_only_used_symbols): New.
              * toplev.c (flag_debug_only_used_symbols): New variable.
              (lang_independent_options): Add entries for new option -feliminate-unused-debug-symbols.
              * common.opt: Add entry for -feliminate-unused-debug-symbols.
              * opts.c (common_handle_options): Same.
              * config/rs6000/darwin.h (CC1_SPEC): Interpret -gused as -feliminate-unused-debug-symbols.
              * doc/invoke.texi (Debugging Options): Document -feliminate-unused-debug-symbols.
      
      From-SVN: r68556
      Devang Patel committed
    • builtins.c (expand_builtin_sprintf): Use c_getstr and strlen to obtain the… · 6ba701c8
      builtins.c (expand_builtin_sprintf): Use c_getstr and strlen to obtain the format string instead of using...
      
      
      	* builtins.c (expand_builtin_sprintf): Use c_getstr and strlen to
      	obtain the format string instead of using TREE_STRING_POINTER and
      	TREE_STRING_LENGTH.  Only optimize sprintf(dst,"%s",src) when the
      	return value is unused or the length of src is a known constant.
      
      	* gcc.c-torture/execute/string-opt-16.c: Remove test for disabled
      	sprintf(dst,"%s",src) optimization.
      	* gcc.c-torture/execute/20030626-1.c: New test case.
      	* gcc.c-torture/execute/20030626-2.c: New test case.
      
      Co-Authored-By: Jakub Jelinek <jakub@redhat.com>
      
      From-SVN: r68555
      Roger Sayle committed
    • Daily bump. · 34cd7ff6
      From-SVN: r68552
      GCC Administrator committed
  2. 26 Jun, 2003 35 commits
  3. 25 Jun, 2003 1 commit
    • extend.texi: Document new builtin functions for Intel Prescott New Intrunctions. · 22c7c85e
      2003-06-25  H.J. Lu <hongjiu.lu@intel.com>
      
      	* doc/extend.texi: Document new builtin functions for Intel
      	Prescott New Intrunctions.
      
      	* doc/invoke.texi: Document new command-line options, -mpni and
      	-mno-pni, for Intel Prescott New Intrunctions.
      
      	* config.gcc (extra_headers): Add pmmintrin.h for i[34567]86-*-*.
      
      	* config/i386/i386.c (override_options): Turn on MASK_SSE2
      	for -mpni. Turn on MASK_SSE for -msse2.
      	(bdesc_2arg): Add PNI builtins with 2 args.
      	(bdesc_1arg): Add PNI builtins with 1 arg.
      	(ix86_init_mmx_sse_builtins): Handle PNI builtins.
      	(ix86_expand_builtin): Likewise.
      
      	* config/i386/i386.h (MASK_3DNOW, MASK_3DNOW_A,
      	MASK_128BIT_LONG_DOUBLE, MASK_64BIT, MASK_MS_BITFIELD_LAYOUT,
      	MASK_TLS_DIRECT_SEG_REFS): Renumbered.
      	(TARGET_PNI): New.
      	(TARGET_SWITCHES): Don't enable MASK_SSE for -msse2 here. Add
      	-mpni and -mno-pni.
      	(TARGET_CPU_CPP_BUILTINS): Defined __PNI__ for PNI.
      	(ix86_builtins): Add PNI builtins.
      	(config/i386/i386.md): Add PNI patterns.
      
      	* config/i386/pmmintrin.h: New file.
      
      From-SVN: r68502
      H.J. Lu committed