re PR rtl-optimization/81025 (gcc ICE while building glibc for MIPS soft-float multi...
authorJeff Law <law@redhat.com>
Wed, 3 Apr 2019 16:03:37 +0000 (10:03 -0600)
committerJeff Law <law@gcc.gnu.org>
Wed, 3 Apr 2019 16:03:37 +0000 (10:03 -0600)
        PR rtl-optimization/81025
        * reorg.c (skip_consecutive_labels): Do not skip past a BARRIER.

From-SVN: r270129

gcc/ChangeLog
gcc/reorg.c

index 9149d9c9a9eeeabb604979ba8dd64f9e4118fcb1..0d7c206de907d77de330a2fbbbe35f5b0ec61af8 100644 (file)
@@ -1,3 +1,8 @@
+2019-04-03  Jeff Law  <law@redhat.com>
+
+       PR rtl-optimization/81025
+       * reorg.c (skip_consecutive_labels): Do not skip past a BARRIER.
+
 2019-04-03  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/84101
index 84128a4fe9e8e9453d8627dc2c4fe138ad338047..81349382b81963f350b504920295a77d4b626150 100644 (file)
@@ -137,7 +137,20 @@ skip_consecutive_labels (rtx label_or_return)
 
   rtx_insn *label = as_a <rtx_insn *> (label_or_return);
 
-  for (insn = label; insn != 0 && !INSN_P (insn); insn = NEXT_INSN (insn))
+  /* __builtin_unreachable can create a CODE_LABEL followed by a BARRIER.
+
+     Since reaching the CODE_LABEL is undefined behavior, we can return
+     any code label and we're OK at runtime.
+
+     However, if we return a CODE_LABEL which leads to a shrinked wrapped
+     epilogue, but the path does not have a prologue, then we will trip
+     a sanity check in the dwarf2 cfi code which wants to verify that
+     the CFIs are all the same on the traces leading to the epilogue.
+
+     So we explicitly disallow looking through BARRIERS here.  */
+  for (insn = label;
+       insn != 0 && !INSN_P (insn) && !BARRIER_P (insn);
+       insn = NEXT_INSN (insn))
     if (LABEL_P (insn))
       label = insn;