combine.c (get_undo_marker): New function.
authorSegher Boessenkool <segher@kernel.crashing.org>
Tue, 12 May 2015 13:37:53 +0000 (15:37 +0200)
committerSegher Boessenkool <segher@gcc.gnu.org>
Tue, 12 May 2015 13:37:53 +0000 (15:37 +0200)
* combine.c (get_undo_marker): New function.
(undo_to_marker): New function, largely factored out from ...
(undo_all): ... this.  Adjust.

From-SVN: r223066

gcc/ChangeLog
gcc/combine.c

index d3739c2..58b5fc3 100644 (file)
@@ -1,3 +1,9 @@
+2015-05-12  Segher Boessenkool  <segher@kernel.crashing.org>
+
+       * combine.c (get_undo_marker): New function.
+       (undo_to_marker): New function, largely factored out from ...
+       (undo_all): ... this.  Adjust.
+
 2015-05-12  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/66101
index 274a2d9..4b6e39f 100644 (file)
@@ -4673,15 +4673,25 @@ try_combine (rtx_insn *i3, rtx_insn *i2, rtx_insn *i1, rtx_insn *i0,
     return newi2pat ? i2 : i3;
 }
 \f
-/* Undo all the modifications recorded in undobuf.  */
+/* Get a marker for undoing to the current state.  */
+
+static void *
+get_undo_marker (void)
+{
+  return undobuf.undos;
+}
+
+/* Undo the modifications up to the marker.  */
 
 static void
-undo_all (void)
+undo_to_marker (void *marker)
 {
   struct undo *undo, *next;
 
-  for (undo = undobuf.undos; undo; undo = next)
+  for (undo = undobuf.undos; undo != marker; undo = next)
     {
+      gcc_assert (undo);
+
       next = undo->next;
       switch (undo->kind)
        {
@@ -4705,7 +4715,15 @@ undo_all (void)
       undobuf.frees = undo;
     }
 
-  undobuf.undos = 0;
+  undobuf.undos = (struct undo *) marker;
+}
+
+/* Undo all the modifications recorded in undobuf.  */
+
+static void
+undo_all (void)
+{
+  undo_to_marker (0);
 }
 
 /* We've committed to accepting the changes we made.  Move all