]> Cypherpunks.ru repositories - gostls13.git/commit
cmd/compile: detect and diagnose invalid //go: directive placement
authorRuss Cox <rsc@golang.org>
Wed, 1 Apr 2020 19:51:08 +0000 (15:51 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 21 Apr 2020 16:47:01 +0000 (16:47 +0000)
commit768201729df89a28aae2cc5e41a33ffcb759c113
tree212e9376ed8948f04fb2bedaa712313396ac149a
parent4f27e1d7aadba639cceaa93f77ec0c7ee3fee01b
cmd/compile: detect and diagnose invalid //go: directive placement

Thie CL changes cmd/compile/internal/syntax to give the gc half of
the compiler more control over pragma handling, so that it can prepare
better errors, diagnose misuse, and so on. Before, the API between
the two was hard-coded as a uint16. Now it is an interface{}.
This should set us up better for future directives.

In addition to the split, this CL emits a "misplaced compiler directive"
error for any directive that is in a place where it has no effect.
I've certainly been confused in the past by adding comments
that were doing nothing and not realizing it. This should help
avoid that kind of confusion.

The rule, now applied consistently, is that a //go: directive
must appear on a line by itself immediately before the declaration
specifier it means to apply to. See cmd/compile/doc.go for
precise text and test/directive.go for examples.

This may cause some code to stop compiling, but that code
was broken. For example, this code formerly applied the
//go:noinline to f (not c) but now will fail to compile:

//go:noinline
const c = 1

func f() {}

Change-Id: Ieba9b8d90a27cfab25de79d2790a895cefe5296f
Reviewed-on: https://go-review.googlesource.com/c/go/+/228578
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
src/cmd/compile/doc.go
src/cmd/compile/internal/gc/lex.go
src/cmd/compile/internal/gc/noder.go
src/cmd/compile/internal/gc/syntax.go
src/cmd/compile/internal/syntax/nodes.go
src/cmd/compile/internal/syntax/parser.go
src/cmd/compile/internal/syntax/scanner.go
src/cmd/compile/internal/syntax/syntax.go
src/go/types/stdlib_test.go
test/directive.go [new file with mode: 0644]