]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1.10] cmd/compile: reset branch prediction when deleting a branch
authorKeith Randall <khr@google.com>
Mon, 22 Jan 2018 17:43:27 +0000 (09:43 -0800)
committerIan Lance Taylor <iant@golang.org>
Thu, 9 Aug 2018 21:44:22 +0000 (21:44 +0000)
When we go from a branch block to a plain block, reset the
branch prediction bit. Downstream passes asssume that if the
branch prediction is set, then the block has 2 successors.

Fixes #23504
Fixes #26851

Change-Id: I2898ec002228b2e34fe80ce420c6939201c0a5aa
Reviewed-on: https://go-review.googlesource.com/88955
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
(cherry picked from commit 4313d7767d830e863e8f8b53a2b48ca8d0bf0a79)
Reviewed-on: https://go-review.googlesource.com/128855
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
src/cmd/compile/internal/ssa/check.go
src/cmd/compile/internal/ssa/fuse.go
test/fixedbugs/issue23504.go [new file with mode: 0644]

index 1c2fcd7948b691629f6a7505b0fbf7be63049274..f2d7c9e22025e93a71303c3f42dee35ee058a144 100644 (file)
@@ -102,7 +102,7 @@ func checkFunc(f *Func) {
                                f.Fatalf("plain/dead block %s has a control value", b)
                        }
                }
-               if len(b.Succs) > 2 && b.Likely != BranchUnknown {
+               if len(b.Succs) != 2 && b.Likely != BranchUnknown {
                        f.Fatalf("likeliness prediction %d for block %s with %d successors", b.Likely, b, len(b.Succs))
                }
 
index f00356a7b23b37042bed4a59df31646ea9456aba..45b13a050d939c71364315dba0edadd5948b041c 100644 (file)
@@ -92,6 +92,7 @@ func fuseBlockIf(b *Block) bool {
                b.removeEdge(1)
        }
        b.Kind = BlockPlain
+       b.Likely = BranchUnknown
        b.SetControl(nil)
 
        // Trash the empty blocks s0 & s1.
diff --git a/test/fixedbugs/issue23504.go b/test/fixedbugs/issue23504.go
new file mode 100644 (file)
index 0000000..77f3184
--- /dev/null
@@ -0,0 +1,15 @@
+// compile
+
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package p
+
+func f() {
+       var B bool
+       B2 := (B || B && !B) && !B
+       B3 := B2 || B
+       for (B3 || B2) && !B2 && B {
+       }
+}