]> Cypherpunks.ru repositories - gostls13.git/commit
cmd/compile: check labels and branches during parse time
authorRobert Griesemer <gri@golang.org>
Fri, 7 Apr 2017 22:41:45 +0000 (15:41 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 19 Apr 2017 00:36:34 +0000 (00:36 +0000)
commit912a638b0c759fdd6c04d3c3a426157d2285a855
treefcb8f8c28ff5728c3a2d66ec5fd8c9d91011403e
parent1e3570ac86f6aeb7f8ce70b5ad236a5dd92ec804
cmd/compile: check labels and branches during parse time

Instead of a separate check control flow pass (checkcfg.go)
operating on nodes, perform this check at parse time on the
new syntax tree. Permits this check to be done concurrently,
and doesn't depend on the specifics of the symbol's dclstack
implementation anymore. The remaining dclstack uses will be
removed in a follow-up change.

- added CheckBranches Mode flag (so we can turn off the check
  if we only care about syntactic correctness, e.g. for tests)

- adjusted test/goto.go error messages: the new branches
  checker only reports if a goto jumps into a block, but not
  which block (we may want to improve this again, eventually)

- also, the new branches checker reports one variable that
  is being jumped over by a goto, but it may not be the first
  one declared (this is fine either way)

- the new branches checker reports additional errors for
  fixedbugs/issue14006.go (not crucial to avoid those errors)

- the new branches checker now correctly reports only
  variable declarations being jumped over, rather than
  all declarations (issue 8042). Added respective tests.

Fixes #8042.

Change-Id: I53b6e1bda189748e1e1fb5b765a8a64337c27d40
Reviewed-on: https://go-review.googlesource.com/39998
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
src/cmd/compile/internal/gc/checkcfg.go [deleted file]
src/cmd/compile/internal/gc/noder.go
src/cmd/compile/internal/gc/pgen.go
src/cmd/compile/internal/syntax/branches.go [new file with mode: 0644]
src/cmd/compile/internal/syntax/parser.go
src/cmd/compile/internal/syntax/syntax.go
test/fixedbugs/issue14006.go
test/fixedbugs/issue8042.go [new file with mode: 0644]
test/goto.go