• Keith Randall's avatar
    cmd/compile: enable constant-time CFG editing · 4fa05002
    Keith Randall authored
    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...
    4fa05002
phiopt.go 3.02 KB