]> Cypherpunks.ru repositories - gostls13.git/commit
[dev.regabi] cmd/compile: convert OPANIC argument to interface{} during typecheck
authorMatthew Dempsky <mdempsky@google.com>
Mon, 18 Jan 2021 00:14:48 +0000 (16:14 -0800)
committerMatthew Dempsky <mdempsky@google.com>
Mon, 18 Jan 2021 05:55:08 +0000 (05:55 +0000)
commit6113db0bb47706b8b5f65b67b87f8277432ca4d2
tree8f4503c322fdb43f1dde6a97aebe19ab32abb81a
parent4c835f9169e2b1f98a9755724d1f46bf50566003
[dev.regabi] cmd/compile: convert OPANIC argument to interface{} during typecheck

Currently, typecheck leaves arguments to OPANIC as their original
type. This CL changes it to insert implicit OCONVIFACE operations to
convert arguments to `interface{}` like how any other function call
would be handled.

No immediate benefits, other than getting to remove a tiny bit of
special-case logic in order.go's handling of OPANICs. Instead, the
generic code path for handling OCONVIFACE is used, if necessary.
Longer term, this should be marginally helpful for #43753, as it
reduces the number of cases where we need values to be addressable for
runtime calls.

However, this does require adding some hacks to appease existing
tests:

1. We need yet another kludge in inline budgeting, to ensure that
reflect.flag.mustBe stays inlinable for cmd/compile/internal/test's
TestIntendedInlining.

2. Since the OCONVIFACE expressions are now being introduced during
typecheck, they're now visible to escape analysis. So expressions like
"panic(1)" are now seen as "panic(interface{}(1))", and escape
analysis warns that the "interface{}(1)" escapes to the heap. These
have always escaped to heap, just now we're accurately reporting about
it.

(Also, unfortunately fmt.go hides implicit conversions by default in
diagnostics messages, so instead of reporting "interface{}(1) escapes
to heap", it actually reports "1 escapes to heap", which is
confusing. However, this confusing messaging also isn't new.)

Change-Id: Icedf60e1d2e464e219441b8d1233a313770272af
Reviewed-on: https://go-review.googlesource.com/c/go/+/284412
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Trust: Matthew Dempsky <mdempsky@google.com>
src/cmd/compile/internal/inline/inl.go
src/cmd/compile/internal/typecheck/func.go
src/cmd/compile/internal/walk/order.go
test/closure3.dir/main.go
test/escape2.go
test/escape2n.go
test/escape4.go
test/fixedbugs/issue13799.go
test/fixedbugs/issue7921.go