1. 06 Feb, 2007 19 commits
    • extc++.h: Guard include files that assume iconv support is present from precompilation... · 0469f461
      2007-02-06  Benjamin Kosnik  <bkoz@redhat.com>
                  Marco Trudel  <mtrudel@gmx.ch>
      
      	* include/precompiled/extc++.h: Guard include files that assume
      	iconv support is present from precompilation via
      	_GLIBCXX_HAVE_ICONV.
      
      From-SVN: r121656
      Benjamin Kosnik committed
    • extc++.h: Guard include files that assume iconv support is present from precompilation... · bdbccd1c
      2007-02-06  Benjamin Kosnik  <bkoz@redhat.com>
                  Marco Trudel  <mtrudel@gmx.ch>
      
      	* include/precompiled/extc++.h: Guard include files that assume
      	iconv support is present from precompilation via
      	_GLIBCXX_HAVE_ICONV.
      
      
      Co-Authored-By: Marco Trudel <mtrudel@gmx.ch>
      
      From-SVN: r121655
      Benjamin Kosnik committed
    • ChangeLog: Doh! · c1fdb082
      
      	* ChangeLog: Doh! Missed in the last commit.
      
      From-SVN: r121654
      Roger Sayle committed
    • rs6000.md (popcount<mode>2): Rewrite. · 565ef4ba
      
      	* config/rs6000/rs6000.md (popcount<mode>2): Rewrite.
      	(parity<mode>2): New define_expand using rs6000_emit_parity.
      	* config/rs6000/rs6000.c (rs6000_emit_popcount,
      	rs6000_emit_parity): New functions.
      	* config/rs6000/rs6000-protos.h (rs6000_emit_popcount,
      	rs6000_emit_parity): Prototype here.
      
      	* gcc.target/powerpc/popcount-1.c: New test case.
      	* gcc.target/powerpc/parity-1.c: Likewise.
      
      From-SVN: r121653
      Roger Sayle committed
    • lower-subreg.c (simple_move_operand): Reject CONST. · 7e0c3f57
      	* lower-subreg.c (simple_move_operand): Reject CONST.
      	(resolve_clobber): Call validate_change rather than directly
      	assigning to XEXP (pat, 0).
      
      From-SVN: r121652
      Ian Lance Taylor committed
    • makemake.tcl (emit_bc_rule): Set the source filename. · 44fb8659
      2007-02-06  Andrew Haley  <aph@redhat.com>
      
              * scripts/makemake.tcl (emit_bc_rule): Set the source filename.
              * sources.am: Rebuild.
      
      From-SVN: r121651
      Andrew Haley committed
    • Makefile.in (tree-ssa-loop-ivopts.o): Add pointer-set.h dependency. · 15814ba0
      2006-02-06  Paolo Bonzini  <bonzini@gnu.org>
      
      	* Makefile.in (tree-ssa-loop-ivopts.o): Add pointer-set.h dependency.
      	(tree-ssa-reassoc.o): Add pointer-set.h dependency.
      	(tree-cfg.o): Remove hashtab.h dependency.
      
      	* tree-ssa-loop-ivopts.c: Include pointer-set.h.
      	(struct ivopts_data): Change niters to pointer_map_t.
      	(struct nfe_cache_elt, nfe_hash, nfe_eq): Delete.
      	(niter_for_exit): Create pointer_map on demand.  Change for
      	pointer_map API.
      	(tree_ssa_iv_optimize_init): Initialize data->niters to NULL.
      	(free_loop_data): Destroy data->niters if created and reset field.
      	(tree_ssa_iv_optimize_finalize): Don't delete data->niters here.
      	(tree_ssa_iv_optimize_loop): Check for presence of stale data.
      
      	* tree-ssa-reassoc.c: Include pointer-set.h.
      	(bb_rank): Change to long *.
      	(operand_rank): Change to pointer_map_t.
      	(find_operand_rank): Return long, -1 if not found.  Declare as inline.
      	(insert_operand_rank): Accept long.
      	(operand_entry_hash, operand_entry_eq): Remove.
      	(get_rank): Return long.  Adjust for changes above.
      	(init_reassoc): Change rank type to long.  Adjust creation of bb_rank
      	and operand_rank.
      	(fini_reassoc): Delete operand_rank with pointer_map_destroy.
      
      	* tree-ssa-structalias.c (vi_for_tree): Change to pointer_map.
      	(struct tree_vi, tree_vi_t, tree_vi_hash, tree_vi_eq): Delete.
      	(insert_vi_for_tree): Rewrite for pointer_map API.  Assert argument
      	is not NULL.
      	(lookup_vi_for_tree): Rewrite for pointer_map API.  Return varinfo_t
      	directly since it cannot be NULL.
      	(get_vi_for_tree): Rewrite for pointer_map API.
      	(find_what_p_points_to): Adjust for change to lookup_vi_for_tree.
      	(init_alias_vars): Create vi_for_tree as pointer_map.
      	(delete_points_to_sets): Delete vi_for_tree using pointer_map_destroy.
      
      	* tree-cfg.c: Don't include hashtab.h.
      	(edge_to_cases): Declare as pointer_map.
      	(struct edge_to_cases_elt, edge_to_cases_hash, edge_to_cases_eq):
      	Delete.
      	(edge_to_cases_cleanup): Rewrite as pointer_map_traverse callback.
      	(start_recording_case_labels): Create edge_to_cases as pointer_map.
      	(end_recoding_case_labels): Cleanup edge_to_cases manually before
      	destroying it.
      	(record_switch_edge): Delete.
      	(get_cases_for_edge): Adjust for pointer_map API, inline
      	record_switch_edge (rewritten for new API), remove goto.
      
      From-SVN: r121648
      Paolo Bonzini committed
    • tree.c (tree_int_map_hash, [...]): Remove prototypes and make them non-static. · 0802f6a2
      gcc:
      2007-02-06  Paolo Bonzini  <bonzini@gnu.org>
      
      	* tree.c (tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p):
      	Remove prototypes and make them non-static.
      	(struct tree_int_map): Remove.
      	* tree.h (struct tree_int_map): Move here, turning TO into an
      	unsigned int.
      	(tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p): Declare.
      
      	* tree.h (TREE_COMPLEXITY): Remove.
      	(struct tree_exp): Remove complexity field.
      	* tree.c (build1_stat): Don't set it.
      
      gcc/ada:
      2007-02-06  Paolo Bonzini  <bonzini@gnu.org>
      
      	* Make-lang.in (ada/decl.o): Add gt-ada-decl.h dependency.
      	* decl.c: Include gt-ada-decl.h.
      	(annotate_value_cache): New.
      	(annotate_value): Use it instead of TREE_COMPLEXITY.
      
      From-SVN: r121647
      Paolo Bonzini committed
    • texi2pod.pl: Handle @multitable. · 427e84f7
      contrib/
      	* texi2pod.pl: Handle @multitable.
      
      From-SVN: r121646
      Richard Sandiford committed
    • re PR middle-end/27302 (Fold does not fold (i < j) == (j > i) to 1) · 56826557
      2007-02-06  Richard Guenther  <rguenther@suse.de>
      
              PR middle-end/27302
              * gcc.dg/torture/pr27302-2.c: New testcase.
      
      From-SVN: r121644
      Richard Guenther committed
    • tree-vectorizer.c (vect_is_simple_use): Support induction. · fbf798fc
      2007-02-06  Dorit Nuzman  <dorit@il.ibm.com>
                  Victor Kaplansky  <victork@il.ibm.com>
      
              * tree-vectorizer.c (vect_is_simple_use): Support induction.
              (vect_is_simple_reduction): Support reduction with induction as
              one of the operands.
              (vect_is_simple_iv_evolution): Fix formatting.
              * tree-vect-analyze.c (vect_mark_stmts_to_be_vectorized): Fix
              formatting.  Don't mark induction phis for vectorization.
              (vect_analyze_scalar_cycles): Analyze all inductions, then reductions.
              * tree-vect-transform.c (get_initial_def_for_induction): New function.
              (vect_get_vec_def_for_operand): Support induction.
              (vect_get_vec_def_for_stmt_copy): Fix formatting and add check for
              induction case.
              (vectorizable_reduction): Support reduction with induction as one of
              the operands.
              (vectorizable_type_demotion): Use def-type of stmt argument rather
              than dummy def-type.
      
              * tree-ssa-loop.c (gate_scev_const_prop): Return the value of
              flag_tree_scev_cprop.
              * common.opt (tree-scev-cprop): New flag.
      
              * tree-vect-transform.c (vect_create_destination_var): Use 'kind' in
              call to vect_get_new_vect_var.
      
      
      Co-Authored-By: Victor Kaplansky <victork@il.ibm.com>
      
      From-SVN: r121643
      Dorit Nuzman committed
    • re PR cp-tools/30706 (gjavah incompatible with sun javah and gcjh) · 426147a1
      2007-02-05  Andrew Haley  <aph@redhat.com>
      
              PR cp-tools/30706
              * tools/gnu/classpath/tools/javah/JniIncludePrinter.java:
              (printClass): Replace '/' in filenames with '_'.
              * tools/gnu/classpath/tools/javah/JniStubPrinter.java
              (printClass): Likewise.
      
      From-SVN: r121641
      Andrew Haley committed
    • tree-vect-patterns.c (vect_recog_widen_mult_pattern): Check that vectype is not NULL. · 03d3e953
      	* tree-vect-patterns.c (vect_recog_widen_mult_pattern): Check that 
      	vectype is not NULL.
      	(vect_pattern_recog_1): Likewise.
      
      From-SVN: r121640
      Ira Rosen committed
    • fold-const.c (negate_expr_p): Handle CONJ_EXPR. · 8fbbe90b
      	* fold-const.c (negate_expr_p): Handle CONJ_EXPR.
      	(fold_negate_expr): Likewise.
      	
      testsuite:
      	* gcc.dg/builtins-20.c: Add more cases.
      
      From-SVN: r121639
      Kaveh R. Ghazi committed
    • re PR debug/30189 (ICE on modified_type_die) · 792eaee2
      gcc/ChangeLog:
      PR debug/30189
      * dwarf2out.c (modified_type_die): Follow DECL_ORIGINAL_TYPE
      even if cv-qualification is the same.
      gcc/testsuite/ChangeLog:
      PR debug/30189
      * gcc.dg/pr30189.c: New test.
      
      From-SVN: r121638
      Alexandre Oliva committed
    • check in required changes for base/sys/sysmacros.h · 613698c0
      From-SVN: r121636
      Bruce Korb committed
    • darwin-tramp.asm (__trampoline_setup): Call __enable_execute_stack on completion. · 9be75e44
      	* config/rs6000/darwin-tramp.asm (__trampoline_setup): Call
      	__enable_execute_stack on completion.
      
      From-SVN: r121633
      Geoffrey Keating committed
    • Add the PR number to my previous ChangeLog entries. · 9ca6a963
      From-SVN: r121632
      Steven G. Kargl committed
    • Daily bump. · 52cc2c1b
      From-SVN: r121629
      GCC Administrator committed
  2. 05 Feb, 2007 21 commits