]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: only inline method wrapper if method don't contain closures
authorCuong Manh Le <cuong.manhle.vn@gmail.com>
Mon, 29 Aug 2022 03:48:28 +0000 (10:48 +0700)
committerCuong Manh Le <cuong.manhle.vn@gmail.com>
Tue, 30 Aug 2022 18:02:22 +0000 (18:02 +0000)
CL 327871 changes methodWrapper to always perform inlining after global
escape analysis. However, inlining the method may reveal closures, which
require walking all function bodies to decide whether to capture free
variables by value or by ref.

To fix it, just not doing inline if the method contains any closures.

Fixes #53702

Change-Id: I4b0255b86257cc6fe7e5fafbc545cc5cff9113e1
Reviewed-on: https://go-review.googlesource.com/c/go/+/426334
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
src/cmd/compile/internal/reflectdata/reflect.go
test/run.go

index 16b7a3a6df0c3dc7c982102e2cd345995665cf55..0f0c4051672a044a8e86a8f1f4dcea46bacfa6e2 100644 (file)
@@ -1904,14 +1904,14 @@ func methodWrapper(rcvr *types.Type, method *types.Field, forItab bool) *obj.LSy
        // the TOC to the appropriate value for that module. But if it returns
        // directly to the wrapper's caller, nothing will reset it to the correct
        // value for that function.
+       var call *ir.CallExpr
        if !base.Flag.Cfg.Instrumenting && rcvr.IsPtr() && methodrcvr.IsPtr() && method.Embedded != 0 && !types.IsInterfaceMethod(method.Type) && !(base.Ctxt.Arch.Name == "ppc64le" && base.Ctxt.Flag_dynlink) && !generic {
-               call := ir.NewCallExpr(base.Pos, ir.OCALL, dot, nil)
+               call = ir.NewCallExpr(base.Pos, ir.OCALL, dot, nil)
                call.Args = ir.ParamNames(fn.Type())
                call.IsDDD = fn.Type().IsVariadic()
                fn.Body.Append(ir.NewTailCallStmt(base.Pos, call))
        } else {
                fn.SetWrapper(true) // ignore frame for panic+recover matching
-               var call *ir.CallExpr
 
                if generic && dot.X != nthis {
                        // If there is embedding involved, then we should do the
@@ -1996,7 +1996,22 @@ func methodWrapper(rcvr *types.Type, method *types.Field, forItab bool) *obj.LSy
        typecheck.Stmts(fn.Body)
 
        if AfterGlobalEscapeAnalysis {
-               inline.InlineCalls(fn)
+               // Inlining the method may reveal closures, which require walking all function bodies
+               // to decide whether to capture free variables by value or by ref. So we only do inline
+               // if the method do not contain any closures, otherwise, the escape analysis may make
+               // dead variables resurrected, and causing liveness analysis confused, see issue #53702.
+               var canInline bool
+               switch x := call.X.(type) {
+               case *ir.Name:
+                       canInline = len(x.Func.Closures) == 0
+               case *ir.SelectorExpr:
+                       if x.Op() == ir.OMETHEXPR {
+                               canInline = x.FuncName().Func != nil && len(x.FuncName().Func.Closures) == 0
+                       }
+               }
+               if canInline {
+                       inline.InlineCalls(fn)
+               }
                escape.Batch([]*ir.Func{fn}, false)
        }
 
index 58d09b6b59f0db5779e7aff72486cceee04cc552..3d59e4e523add7317c99e2ba2dbb14ad92b8a5d7 100644 (file)
@@ -535,10 +535,6 @@ func (ctxt *context) match(name string) bool {
 
 func init() {
        checkShouldTest()
-       // TODO(cuonglm): remove once we fix non-unified frontend or when it gone.
-       if optimizationOff() {
-               delete(go118Failures, "fixedbugs/issue53702.go")
-       }
 }
 
 // goGcflags returns the -gcflags argument to use with go build / go run.
@@ -1986,7 +1982,6 @@ var types2Failures32Bit = setOf(
 )
 
 var go118Failures = setOf(
-       "fixedbugs/issue53702.go",  // 1.18 compiler failed with "Value live at entry" error
        "fixedbugs/issue54343.go",  // 1.18 compiler assigns receiver parameter to global variable
        "typeparam/nested.go",      // 1.18 compiler doesn't support function-local types with generics
        "typeparam/issue51521.go",  // 1.18 compiler produces bad panic message and link error