compiler: speed up variable initializer sorting
authorIan Lance Taylor <ian@gcc.gnu.org>
Thu, 7 Jun 2018 16:56:09 +0000 (16:56 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Thu, 7 Jun 2018 16:56:09 +0000 (16:56 +0000)
commitdc23fb4d72eed9ea09fbf4704b26e0e36414a57a
tree81494302b4f5708ad6c96bad6ecfd9c109574c38
parentfa725532c41ae543fd0078263ea348aa5af3997d
compiler: speed up variable initializer sorting

    The compiler used to do variable initializer sorting by looping
    through all the initialized variables and, for each one, looping
    through all the initialized variables and checking for a dependency.
    For very large packages with thousands of initialized global
    variables, this quadratic loop could take quite a long time.

    Change the approach to first loop through all the initialized
    variables and fetch all the references to other variables from the
    initialization code.  Then, loop through them again and this time add
    a dependency for each referenced, initialized, variable, while
    checking for initialization loops.  We still have a nested loop, but
    this time the inner loop should normally be short--just the list of
    referenced variables, not the list of all variables.

    Reviewed-on: https://go-review.googlesource.com/116816

From-SVN: r261284
gcc/go/gofrontend/MERGE
gcc/go/gofrontend/gogo.cc