OSDN Git Service

2007-10-08 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
index 8c6c773..5fed689 100644 (file)
@@ -1,3 +1,115 @@
+2007-10-08  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
+
+       * doc/invoke.texi (Wall): fix formatting issues.
+       
+2007-10-07  Richard Sandiford  <rsandifo@nildram.co.uk>
+
+       * simplify-rtx.c (simplify_binary_operation_1): Canonicalize
+       truncated shift counts.
+
+2007-10-07  Kazu Hirata  <kazu@codesourcery.com>
+
+       * config/m68k/m68k.c, config/m68k/m68k.md: Use the assembly
+       syntax for ASSEMBLER_DIALECT.
+       * config/m68k/m68k.h (ASSEMBLER_DIALECT): New.
+
+2007-10-06  Eric Botcazou  <ebotcazou@adacore.com>
+            Nathan Froyd  <froydnj@codesourcery.com>
+
+       * dwarf2out.c (dwarf2out_frame_init): Check for DWARF2_FRAME_INFO
+       when determining whether to record INCOMING_RETURN_ADDR_RTX.
+
+2007-10-06  Eric Botcazou  <ebotcazou@adacore.com>
+
+       Revert:
+       2007-02-12  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * tree.h (DECL_IGNORED_P): Document further effect for FUNCTION_DECL.
+       * cgraphunit.c (cgraph_expand_function): If DECL_IGNORED_P is set on
+       the function, temporarily point the debug interface to the null one.
+
+2007-10-06  Alexandre Oliva  <aoliva@redhat.com>
+
+       PR tree-optimization/33655
+       * tree-sra.c (bitfield_overlaps_p): Handle array and complex
+       elements.
+
+2007-10-06  Alexandre Oliva  <aoliva@redhat.com>
+
+       PR tree-optimization/33572
+       * tree-cfg.c (verify_stmts): Check for missing PHI defs.
+       * tree-inline.c (update_ssa_across_eh_edges): Renamed to...
+       (update_ssa_across_abnormal_edges): ... this.  Set slots in the
+       return PHI node.
+       (copy_edges_for_bb): Handle nonlocal label edges.
+       (make_nonlocal_label_edges): Deleted.
+       (optimize_inline_calls): Don't call it.
+
+2007-10-05  Hans-Peter Nilsson  <hp@axis.com>
+
+       * gthr-single.h: Revert last change.
+
+2007-10-05  Michael Matz  <matz@suse.de>
+
+       PR middle-end/33667
+       * lower-subreg.c (decompose_multiword_subregs): Use
+       validate_unshare_change().
+
+2007-10-05  Peter Bergner  <bergner@vnet.ibm.com>
+
+       * ra-conflict.c: Include "sparseset.h".
+       (conflicts): Change to HOST_WIDEST_FAST_INT.
+       (allocnos_live): Redefine variable as a sparseset.
+       (SET_ALLOCNO_LIVE, CLEAR_ALLOCNO_LIVE, GET_ALLOCNO_LIVE): Delete macros.
+       (allocno_row_words): Removed global variable.
+       (partial_bitnum, max_bitnum, adjacency_pool, adjacency): New variables.
+       (CONFLICT_BITNUM, CONFLICT_BITNUM_FAST): New defines.
+       (conflict_p, set_conflict_p, set_conflicts_p): New functions.
+       (record_one_conflict_between_regnos): Cache allocno values and reuse.
+       Use set_conflict_p.
+       (record_one_conflict): Update uses of allocnos_live to use
+       the sparseset routines.  Use set_conflicts_p.
+       (mark_reg_store): Likewise.
+       (set_reg_in_live): Likewise.
+       (global_conflicts): Update uses of allocnos_live.
+       Use the new adjacency list to visit an allocno's neighbors
+       rather than iterating over all possible allocnos.
+       Call set_conflicts_p to setup conflicts rather than adding
+       them manually.
+       * global.c: Comments updated.  
+       (CONFLICTP): Delete define.
+       (regno_compare): New function.  Add prototype.
+       (global_alloc): Sort the allocno to regno mapping according to
+       which basic blocks the regnos are referenced in.  Modify the
+       conflict bit matrix to a compressed triangular bitmatrix.
+       Only allocate the conflict bit matrix and adjacency lists if
+       we are actually going to allocate something.
+       (expand_preferences): Use conflict_p.  Update uses of allocnos_live.
+       (prune_preferences): Use the FOR_EACH_CONFLICT macro to visit an
+       allocno's neighbors rather than iterating over all possible allocnos.
+       (mirror_conflicts): Removed function.
+       (dump_conflicts): Iterate over regnos rather than allocnos so
+       that all dump output will be sorted by regno number.
+       Use the FOR_EACH_CONFLICT macro.
+       * ra.h: Comments updated.
+       (conflicts): Update prototype to HOST_WIDEST_FAST_INT.
+       (partial_bitnum, max_bitnum, adjacency, adjacency_pool): Add prototypes.
+       (ADJACENCY_VEC_LENGTH, FOR_EACH_CONFLICT): New defines.
+       (adjacency_list_d, adjacency_iterator_d): New types.
+       (add_neighbor, adjacency_iter_init, adjacency_iter_done,
+       adjacency_iter_next, regno_basic_block): New static inline functions.
+       (EXECUTE_IF_SET_IN_ALLOCNO_SET): Removed define.
+       (conflict_p): Add function prototype.
+       * sparseset.h, sparseset.c: New files.
+       * Makefile.in (OBJS-common): Add sparseset.o.
+       (sparseset.o): New rule.
+
+2007-10-05  Richard Guenther  <rguenther@suse.de>
+
+       PR middle-end/33666
+       * fold-const.c (fold_unary): Do not fold (long long)(int)ptr
+       to (long long)ptr.
+
 2007-10-05  Michael Matz  <matz@suse.de>
 
        PR inline-asm/33600