aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/critical.go
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2016-04-28 16:52:47 -0700
committerKeith Randall <khr@golang.org>2016-05-05 15:58:59 +0000
commit4fa050024fbdfff9eb43c930c5b1f73b1a16fafa (patch)
treece7071052304a7e11d0fb62b8acef4053ebf136d /src/cmd/compile/internal/ssa/critical.go
parentbcd4b84bc56889b5a9a8a5d457f35fc0188e8315 (diff)
downloadgo-4fa050024fbdfff9eb43c930c5b1f73b1a16fafa.tar.gz
go-4fa050024fbdfff9eb43c930c5b1f73b1a16fafa.zip
cmd/compile: enable constant-time CFG editing
Provide indexes along with block pointers for Preds and Succs arrays. This allows us to splice edges in and out of those arrays in constant time. Fixes worst-case O(n^2) behavior in deadcode and fuse. benchmark old ns/op new ns/op delta BenchmarkFuse1-8 2065 2057 -0.39% BenchmarkFuse10-8 9408 9073 -3.56% BenchmarkFuse100-8 105238 76277 -27.52% BenchmarkFuse1000-8 3982562 1026750 -74.22% BenchmarkFuse10000-8 301220329 12824005 -95.74% BenchmarkDeadCode1-8 1588 1566 -1.39% BenchmarkDeadCode10-8 4333 4250 -1.92% BenchmarkDeadCode100-8 32031 32574 +1.70% BenchmarkDeadCode1000-8 590407 468275 -20.69% BenchmarkDeadCode10000-8 17822890 5000818 -71.94% BenchmarkDeadCode100000-8 1388706640 78021127 -94.38% BenchmarkDeadCode200000-8 5372518479 168598762 -96.86% Change-Id: Iccabdbb9343fd1c921ba07bbf673330a1c36ee17 Reviewed-on: https://go-review.googlesource.com/22589 Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/ssa/critical.go')
-rw-r--r--src/cmd/compile/internal/ssa/critical.go88
1 files changed, 34 insertions, 54 deletions
diff --git a/src/cmd/compile/internal/ssa/critical.go b/src/cmd/compile/internal/ssa/critical.go
index cd6c58b0b1..38cd3cbb29 100644
--- a/src/cmd/compile/internal/ssa/critical.go
+++ b/src/cmd/compile/internal/ssa/critical.go
@@ -40,9 +40,12 @@ func critical(f *Func) {
}
// split input edges coming from multi-output blocks.
- for i := 0; i < len(b.Preds); i++ {
- c := b.Preds[i]
- if c.Kind == BlockPlain {
+ for i := 0; i < len(b.Preds); {
+ e := b.Preds[i]
+ p := e.b
+ pi := e.i
+ if p.Kind == BlockPlain {
+ i++
continue // only single output block
}
@@ -57,10 +60,10 @@ func critical(f *Func) {
// since we're iterating over len(f.Blocks) above, this forces
// the new blocks to be re-examined.
d = f.NewBlock(BlockPlain)
- d.Line = c.Line
+ d.Line = p.Line
blocks[argID] = d
if f.pass.debug > 0 {
- f.Config.Warnl(c.Line, "split critical edge")
+ f.Config.Warnl(p.Line, "split critical edge")
}
} else {
reusedBlock = true
@@ -69,9 +72,9 @@ func critical(f *Func) {
// no existing block, so allocate a new block
// to place on the edge
d = f.NewBlock(BlockPlain)
- d.Line = c.Line
+ d.Line = p.Line
if f.pass.debug > 0 {
- f.Config.Warnl(c.Line, "split critical edge")
+ f.Config.Warnl(p.Line, "split critical edge")
}
}
@@ -80,57 +83,34 @@ func critical(f *Func) {
// corresponding elements from the block
// predecessors and phi args
if reusedBlock {
- d.Preds = append(d.Preds, c)
- b.Preds[i] = nil
+ // Add p->d edge
+ p.Succs[pi] = Edge{d, len(d.Preds)}
+ d.Preds = append(d.Preds, Edge{p, pi})
+
+ // Remove p as a predecessor from b.
+ b.removePred(i)
+
+ // Update corresponding phi args
+ n := len(b.Preds)
phi.Args[i].Uses--
- phi.Args[i] = nil
+ phi.Args[i] = phi.Args[n]
+ phi.Args[n] = nil
+ phi.Args = phi.Args[:n]
+ // splitting occasionally leads to a phi having
+ // a single argument (occurs with -N)
+ if n == 1 {
+ phi.Op = OpCopy
+ }
+ // Don't increment i in this case because we moved
+ // an unprocessed predecessor down into slot i.
} else {
// splice it in
- d.Preds = append(d.Preds, c)
- d.Succs = append(d.Succs, b)
- b.Preds[i] = d
- }
-
- // replace b with d in c's successor list.
- for j, b2 := range c.Succs {
- if b2 == b {
- c.Succs[j] = d
- break
- }
+ p.Succs[pi] = Edge{d, 0}
+ b.Preds[i] = Edge{d, 0}
+ d.Preds = append(d.Preds, Edge{p, pi})
+ d.Succs = append(d.Succs, Edge{b, i})
+ i++
}
}
-
- // clean up phi's args and b's predecessor list
- if phi != nil {
- phi.Args = filterNilValues(phi.Args)
- b.Preds = filterNilBlocks(b.Preds)
- // splitting occasionally leads to a phi having
- // a single argument (occurs with -N)
- if len(phi.Args) == 1 {
- phi.Op = OpCopy
- }
- }
- }
-}
-
-// filterNilValues preserves the order of v, while filtering out nils.
-func filterNilValues(v []*Value) []*Value {
- nv := v[:0]
- for i := range v {
- if v[i] != nil {
- nv = append(nv, v[i])
- }
- }
- return nv
-}
-
-// filterNilBlocks preserves the order of b, while filtering out nils.
-func filterNilBlocks(b []*Block) []*Block {
- nb := b[:0]
- for i := range b {
- if b[i] != nil {
- nb = append(nb, b[i])
- }
}
- return nb
}