]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/live.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / live.go
index 18611f5113d634bfc79805931770015d944bc62f..6badb011b006a39ab77639e57b6a9fbe56c46ee3 100644 (file)
@@ -1,7 +1,11 @@
 // errorcheckwithauto -0 -l -live -wb=0 -d=ssa/insert_resched_checks/off
-// +build !ppc64,!ppc64le
+
+//go:build !ppc64 && !ppc64le && !goexperiment.regabiargs
+
 // ppc64 needs a better tighten pass to make f18 pass
 // rescheduling checks need to be turned off because there are some live variables across the inserted check call
+//
+// For register ABI, liveness info changes slightly. See live_regabi.go.
 
 // Copyright 2014 The Go Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style
@@ -32,9 +36,9 @@ func printbytepointer(*byte)
 func printint(int)
 
 func f1() {
-       var x *int
-       printpointer(&x) // ERROR "live at call to printpointer: x$"
+       var x *int       // ERROR "stack object x \*int$"
        printpointer(&x) // ERROR "live at call to printpointer: x$"
+       printpointer(&x)
 }
 
 func f2(b bool) {
@@ -42,9 +46,9 @@ func f2(b bool) {
                printint(0) // nothing live here
                return
        }
-       var x *int
-       printpointer(&x) // ERROR "live at call to printpointer: x$"
+       var x *int       // ERROR "stack object x \*int$"
        printpointer(&x) // ERROR "live at call to printpointer: x$"
+       printpointer(&x)
 }
 
 func f3(b1, b2 bool) {
@@ -60,15 +64,15 @@ func f3(b1, b2 bool) {
        }
 
        if b2 {
-               var x *int
-               printpointer(&x) // ERROR "live at call to printpointer: x$"
+               var x *int       // ERROR "stack object x \*int$"
                printpointer(&x) // ERROR "live at call to printpointer: x$"
+               printpointer(&x)
        } else {
-               var y *int
-               printpointer(&y) // ERROR "live at call to printpointer: y$"
+               var y *int       // ERROR "stack object y \*int$"
                printpointer(&y) // ERROR "live at call to printpointer: y$"
+               printpointer(&y)
        }
-       printint(0) // ERROR "f3: x \(type \*int\) is ambiguously live$" "f3: y \(type \*int\) is ambiguously live$" "live at call to printint: x y$"
+       printint(0) // nothing is live here
 }
 
 // The old algorithm treated x as live on all code that
@@ -83,7 +87,7 @@ func f4(b1, b2 bool) { // x not live here
                return
        }
        var z **int
-       x := new(int)
+       x := new(int) // ERROR "stack object x \*int$"
        *x = 42
        z = &x
        printint(**z) // ERROR "live at call to printint: x$"
@@ -99,15 +103,15 @@ func f4(b1, b2 bool) { // x not live here
 func f5(b1 bool) {
        var z **int
        if b1 {
-               x := new(int)
+               x := new(int) // ERROR "stack object x \*int$"
                *x = 42
                z = &x
        } else {
-               y := new(int)
+               y := new(int) // ERROR "stack object y \*int$"
                *y = 54
                z = &y
        }
-       printint(**z) // ERROR "f5: x \(type \*int\) is ambiguously live$" "f5: y \(type \*int\) is ambiguously live$" "live at call to printint: x y$"
+       printint(**z) // nothing live here
 }
 
 // confusion about the _ result used to cause spurious "live at entry to f6: _".
@@ -119,7 +123,7 @@ func f6() (_, y string) {
 
 // confusion about addressed results used to cause "live at entry to f7: x".
 
-func f7() (x string) {
+func f7() (x string) { // ERROR "stack object x string"
        _ = &x
        x = "hello"
        return
@@ -141,8 +145,8 @@ var i9 interface{}
 func f9() bool {
        g8()
        x := i9
-       y := interface{}(str()) // ERROR "live at call to convT2Estring: .autotmp_[0-9]+ x.data$" "live at call to str: x.data$"
-       i9 = y                  // make y escape so the line above has to call convT2E
+       y := interface{}(g18()) // ERROR "live at call to convT: x.data$" "live at call to g18: x.data$" "stack object .autotmp_[0-9]+ \[2\]string$"
+       i9 = y                  // make y escape so the line above has to call convT
        return x != y
 }
 
@@ -163,7 +167,7 @@ var b bool
 
 // this used to have a spurious "live at entry to f11a: ~r0"
 func f11a() *int {
-       select { // ERROR "live at call to selectgo: .autotmp_[0-9]+$"
+       select { // ERROR "stack object .autotmp_[0-9]+ \[2\]runtime.scase$"
        case <-c:
                return nil
        case <-c:
@@ -178,7 +182,7 @@ func f11b() *int {
                // get to the bottom of the function.
                // This used to have a spurious "live at call to printint: p".
                printint(1) // nothing live here!
-               select {    // ERROR "live at call to selectgo: .autotmp_[0-9]+$"
+               select {    // ERROR "stack object .autotmp_[0-9]+ \[2\]runtime.scase$"
                case <-c:
                        return nil
                case <-c:
@@ -198,7 +202,7 @@ func f11c() *int {
                // Unlike previous, the cases in this select fall through,
                // so we can get to the println, so p is not dead.
                printint(1) // ERROR "live at call to printint: p$"
-               select {    // ERROR "live at call to selectgo: .autotmp_[0-9]+ p$"
+               select {    // ERROR "live at call to selectgo: p$" "stack object .autotmp_[0-9]+ \[2\]runtime.scase$"
                case <-c:
                case <-c:
                }
@@ -233,8 +237,8 @@ func h13(string, string) string
 // more incorrectly placed VARDEF.
 
 func f14() {
-       x := g14()
-       printstringpointer(&x) // ERROR "live at call to printstringpointer: x$"
+       x := g14() // ERROR "stack object x string$"
+       printstringpointer(&x)
 }
 
 func g14() string
@@ -254,10 +258,10 @@ func iface() interface{}
 
 func f16() {
        if b {
-               delete(mi, iface()) // ERROR "live at call to mapdelete: .autotmp_[0-9]+$"
+               delete(mi, iface()) // ERROR "stack object .autotmp_[0-9]+ interface \{\}$"
        }
-       delete(mi, iface()) // ERROR "live at call to mapdelete: .autotmp_[0-9]+$"
-       delete(mi, iface()) // ERROR "live at call to mapdelete: .autotmp_[0-9]+$"
+       delete(mi, iface())
+       delete(mi, iface())
 }
 
 var m2s map[string]*byte
@@ -300,10 +304,10 @@ func f18() {
        // temporary introduced by orderexpr.
        var z *byte
        if b {
-               z = m2[g18()] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
+               z = m2[g18()] // ERROR "stack object .autotmp_[0-9]+ \[2\]string$"
        }
-       z = m2[g18()] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
-       z = m2[g18()] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
+       z = m2[g18()]
+       z = m2[g18()]
        printbytepointer(z)
 }
 
@@ -317,9 +321,9 @@ func f19() {
        var z *byte
 
        if b {
-               z = <-ch // ERROR "live at call to chanrecv1: .autotmp_[0-9]+$"
+               z = <-ch // ERROR "stack object .autotmp_[0-9]+ \*byte$"
        }
-       z = <-ch // ERROR "live at call to chanrecv1: .autotmp_[0-9]+$"
+       z = <-ch
        z = <-ch // ERROR "live at call to chanrecv1: .autotmp_[0-9]+$"
        printbytepointer(z)
 }
@@ -327,20 +331,20 @@ func f19() {
 func f20() {
        // src temporary for channel send
        if b {
-               ch <- byteptr() // ERROR "live at call to chansend1: .autotmp_[0-9]+$"
+               ch <- byteptr() // ERROR "stack object .autotmp_[0-9]+ \*byte$"
        }
-       ch <- byteptr() // ERROR "live at call to chansend1: .autotmp_[0-9]+$"
-       ch <- byteptr() // ERROR "live at call to chansend1: .autotmp_[0-9]+$"
+       ch <- byteptr()
+       ch <- byteptr()
 }
 
 func f21() {
        // key temporary for mapaccess using array literal key.
        var z *byte
        if b {
-               z = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
+               z = m2[[2]string{"x", "y"}] // ERROR "stack object .autotmp_[0-9]+ \[2\]string$"
        }
-       z = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
-       z = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
+       z = m2[[2]string{"x", "y"}]
+       z = m2[[2]string{"x", "y"}]
        printbytepointer(z)
 }
 
@@ -349,10 +353,10 @@ func f23() {
        var z *byte
        var ok bool
        if b {
-               z, ok = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess2: .autotmp_[0-9]+$"
+               z, ok = m2[[2]string{"x", "y"}] // ERROR "stack object .autotmp_[0-9]+ \[2\]string$"
        }
-       z, ok = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess2: .autotmp_[0-9]+$"
-       z, ok = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess2: .autotmp_[0-9]+$"
+       z, ok = m2[[2]string{"x", "y"}]
+       z, ok = m2[[2]string{"x", "y"}]
        printbytepointer(z)
        print(ok)
 }
@@ -361,22 +365,25 @@ func f24() {
        // key temporary for map access using array literal key.
        // value temporary too.
        if b {
-               m2[[2]string{"x", "y"}] = nil // ERROR "live at call to mapassign: .autotmp_[0-9]+$"
+               m2[[2]string{"x", "y"}] = nil // ERROR "stack object .autotmp_[0-9]+ \[2\]string$"
        }
-       m2[[2]string{"x", "y"}] = nil // ERROR "live at call to mapassign: .autotmp_[0-9]+$"
-       m2[[2]string{"x", "y"}] = nil // ERROR "live at call to mapassign: .autotmp_[0-9]+$"
+       m2[[2]string{"x", "y"}] = nil
+       m2[[2]string{"x", "y"}] = nil
 }
 
-// defer should not cause spurious ambiguously live variables
-
+// Non-open-coded defers should not cause autotmps.  (Open-coded defers do create extra autotmps).
 func f25(b bool) {
-       defer g25()
+       for i := 0; i < 2; i++ {
+               // Put in loop to make sure defer is not open-coded
+               defer g25()
+       }
        if b {
                return
        }
        var x string
        x = g14()
        printstring(x)
+       return
 }
 
 func g25()
@@ -387,10 +394,10 @@ func g25()
 
 func f26(b bool) {
        if b {
-               print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "live at call to print26: .autotmp_[0-9]+$"
+               print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "stack object .autotmp_[0-9]+ \[3\]interface \{\}$"
        }
-       print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "live at call to print26: .autotmp_[0-9]+$"
-       print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "live at call to print26: .autotmp_[0-9]+$"
+       print26((*int)(nil), (*int)(nil), (*int)(nil))
+       print26((*int)(nil), (*int)(nil), (*int)(nil))
        printnl()
 }
 
@@ -402,10 +409,10 @@ func print26(...interface{})
 func f27(b bool) {
        x := 0
        if b {
-               call27(func() { x++ }) // ERROR "live at call to call27: .autotmp_[0-9]+$"
+               call27(func() { x++ }) // ERROR "stack object .autotmp_[0-9]+ struct \{"
        }
-       call27(func() { x++ }) // ERROR "live at call to call27: .autotmp_[0-9]+$"
-       call27(func() { x++ }) // ERROR "live at call to call27: .autotmp_[0-9]+$"
+       call27(func() { x++ })
+       call27(func() { x++ })
        printnl()
 }
 
@@ -414,20 +421,21 @@ func f27(b bool) {
 func f27defer(b bool) {
        x := 0
        if b {
-               defer call27(func() { x++ }) // ERROR "live at call to deferproc: .autotmp_[0-9]+$" "live at call to deferreturn: .autotmp_[0-9]+$"
+               defer call27(func() { x++ }) // ERROR "stack object .autotmp_[0-9]+ struct \{"
        }
-       defer call27(func() { x++ }) // ERROR "f27defer: .autotmp_[0-9]+ \(type struct { F uintptr; x \*int }\) is ambiguously live$" "live at call to deferproc: .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to deferreturn: .autotmp_[0-9]+ .autotmp_[0-9]+$"
-       printnl()                    // ERROR "live at call to printnl: .autotmp_[0-9]+ .autotmp_[0-9]+$"
-} // ERROR "live at call to deferreturn: .autotmp_[0-9]+ .autotmp_[0-9]+$"
+       defer call27(func() { x++ }) // ERROR "stack object .autotmp_[0-9]+ struct \{"
+       printnl()                    // ERROR "live at call to printnl: .autotmp_[0-9]+ .autotmp_[0-9]+"
+       return                       // ERROR "live at indirect call: .autotmp_[0-9]+"
+}
 
 // and newproc (go) escapes to the heap
 
 func f27go(b bool) {
        x := 0
        if b {
-               go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newproc: &x$"
+               go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newobject: &x .autotmp_[0-9]+$" "live at call to newproc: &x$" // allocate two closures, the func literal, and the wrapper for go
        }
-       go call27(func() { x++ }) // ERROR "live at call to newobject: &x$"
+       go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newobject: .autotmp_[0-9]+$" // allocate two closures, the func literal, and the wrapper for go
        printnl()
 }
 
@@ -440,17 +448,17 @@ var s1, s2, s3, s4, s5, s6, s7, s8, s9, s10 string
 
 func f28(b bool) {
        if b {
-               printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10) // ERROR "live at call to concatstrings: .autotmp_[0-9]+$" "live at call to printstring: .autotmp_[0-9]+$"
+               printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10) // ERROR "stack object .autotmp_[0-9]+ \[10\]string$"
        }
-       printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10) // ERROR "live at call to concatstrings: .autotmp_[0-9]+$" "live at call to printstring: .autotmp_[0-9]+$"
-       printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10) // ERROR "live at call to concatstrings: .autotmp_[0-9]+$" "live at call to printstring: .autotmp_[0-9]+$"
+       printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
+       printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
 }
 
 // map iterator should die on end of range loop
 
 func f29(b bool) {
        if b {
-               for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$"
+               for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$" "stack object .autotmp_[0-9]+ runtime.hiter$"
                        printstring(k) // ERROR "live at call to printstring: .autotmp_[0-9]+$"
                }
        }
@@ -465,7 +473,7 @@ func f29(b bool) {
 // copy of array of pointers should die at end of range loop
 var pstructarr [10]pstruct
 
-// Struct size choosen to make pointer to element in pstructarr
+// Struct size chosen to make pointer to element in pstructarr
 // not computable by strength reduction.
 type pstruct struct {
        intp *int
@@ -473,20 +481,19 @@ type pstruct struct {
 }
 
 func f30(b bool) {
-       // two live temps during printintpointer(p):
-       // in the copy of p.intp and
+       // live temp during printintpointer(p):
        // the internal iterator pointer if a pointer to pstruct in pstructarr
        // can not be easily computed by strength reduction.
        if b {
-               for _, p := range pstructarr {
-                       printintpointer(p.intp) // ERROR "live at call to printintpointer: .autotmp_[0-9]+ .autotmp_[0-9]+$"
+               for _, p := range pstructarr { // ERROR "stack object .autotmp_[0-9]+ \[10\]pstruct$"
+                       printintpointer(p.intp) // ERROR "live at call to printintpointer: .autotmp_[0-9]+$"
                }
        }
        for _, p := range pstructarr {
-               printintpointer(p.intp) // ERROR "live at call to printintpointer: .autotmp_[0-9]+ .autotmp_[0-9]+$"
+               printintpointer(p.intp) // ERROR "live at call to printintpointer: .autotmp_[0-9]+$"
        }
        for _, p := range pstructarr {
-               printintpointer(p.intp) // ERROR "live at call to printintpointer: .autotmp_[0-9]+ .autotmp_[0-9]+$"
+               printintpointer(p.intp) // ERROR "live at call to printintpointer: .autotmp_[0-9]+$"
        }
 }
 
@@ -494,13 +501,13 @@ func f30(b bool) {
 
 func f31(b1, b2, b3 bool) {
        if b1 {
-               g31(str()) // ERROR "live at call to convT2Estring: .autotmp_[0-9]+$" "live at call to g31: .autotmp_[0-9]+$"
+               g31(g18()) // ERROR "stack object .autotmp_[0-9]+ \[2\]string$"
        }
        if b2 {
-               h31(str()) // ERROR "live at call to convT2Estring: .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to h31: .autotmp_[0-9]+$" "live at call to newobject: .autotmp_[0-9]+$"
+               h31(g18()) // ERROR "live at call to convT: .autotmp_[0-9]+$" "live at call to newobject: .autotmp_[0-9]+$"
        }
        if b3 {
-               panic(str()) // ERROR "live at call to convT2Estring: .autotmp_[0-9]+$" "live at call to gopanic: .autotmp_[0-9]+$"
+               panic(g18())
        }
        print(b3)
 }
@@ -520,10 +527,10 @@ var t32 T32
 
 func f32(b bool) {
        if b {
-               call32(t32.Inc) // ERROR "live at call to call32: .autotmp_[0-9]+$"
+               call32(t32.Inc) // ERROR "stack object .autotmp_[0-9]+ struct \{"
        }
-       call32(t32.Inc) // ERROR "live at call to call32: .autotmp_[0-9]+$"
-       call32(t32.Inc) // ERROR "live at call to call32: .autotmp_[0-9]+$"
+       call32(t32.Inc)
+       call32(t32.Inc)
 }
 
 //go:noescape
@@ -535,7 +542,7 @@ func call32(func())
 var m33 map[interface{}]int
 
 func f33() {
-       if m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
+       if m33[byteptr()] == 0 { // ERROR "stack object .autotmp_[0-9]+ interface \{\}$"
                printnl()
                return
        } else {
@@ -545,7 +552,7 @@ func f33() {
 }
 
 func f34() {
-       if m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
+       if m33[byteptr()] == 0 { // ERROR "stack object .autotmp_[0-9]+ interface \{\}$"
                printnl()
                return
        }
@@ -553,7 +560,8 @@ func f34() {
 }
 
 func f35() {
-       if m33[byteptr()] == 0 && m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$" "f35: .autotmp_[0-9]+ \(type interface \{\}\) is ambiguously live$"
+       if m33[byteptr()] == 0 && // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
+               m33[byteptr()] == 0 { // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
                printnl()
                return
        }
@@ -561,7 +569,8 @@ func f35() {
 }
 
 func f36() {
-       if m33[byteptr()] == 0 || m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$" "f36: .autotmp_[0-9]+ \(type interface \{\}\) is ambiguously live$"
+       if m33[byteptr()] == 0 || // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
+               m33[byteptr()] == 0 { // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
                printnl()
                return
        }
@@ -569,7 +578,9 @@ func f36() {
 }
 
 func f37() {
-       if (m33[byteptr()] == 0 || m33[byteptr()] == 0) && m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$" "f37: .autotmp_[0-9]+ \(type interface \{\}\) is ambiguously live$"
+       if (m33[byteptr()] == 0 || // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
+               m33[byteptr()] == 0) && // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
+               m33[byteptr()] == 0 {
                printnl()
                return
        }
@@ -589,14 +600,14 @@ func f38(b bool) {
        // we care that the println lines have no live variables
        // and therefore no output.
        if b {
-               select { // ERROR "live at call to selectgo:( .autotmp_[0-9]+)+$"
+               select { // ERROR "live at call to selectgo:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ \[4\]runtime.scase$"
                case <-fc38():
                        printnl()
-               case fc38() <- *fi38(1): // ERROR "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$"
+               case fc38() <- *fi38(1): // ERROR "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ string$"
                        printnl()
-               case *fi38(2) = <-fc38(): // ERROR "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$"
+               case *fi38(2) = <-fc38(): // ERROR "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ string$"
                        printnl()
-               case *fi38(3), *fb38() = <-fc38(): // ERROR "live at call to fb38:( .autotmp_[0-9]+)+$" "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$"
+               case *fi38(3), *fb38() = <-fc38(): // ERROR "stack object .autotmp_[0-9]+ string$" "live at call to f[ibc]38:( .autotmp_[0-9]+)+$"
                        printnl()
                }
                printnl()
@@ -655,15 +666,17 @@ func bad40() {
 }
 
 func good40() {
-       ret := T40{}
-       ret.m = make(map[int]int) // ERROR "live at call to fastrand: .autotmp_[0-9]+ ret$"
+       ret := T40{}              // ERROR "stack object ret T40$"
+       ret.m = make(map[int]int) // ERROR "live at call to fastrand: .autotmp_[0-9]+$" "stack object .autotmp_[0-9]+ runtime.hmap$"
        t := &ret
-       printnl() // ERROR "live at call to printnl: .autotmp_[0-9]+ ret$"
-       useT40(t) // ERROR "live at call to useT40: .autotmp_[0-9]+ ret$"
+       printnl() // ERROR "live at call to printnl: ret$"
+       // Note: ret is live at the printnl because the compiler moves &ret
+       // from before the printnl to after.
+       useT40(t)
 }
 
 func ddd1(x, y *int) { // ERROR "live at entry to ddd1: x y$"
-       ddd2(x, y) // ERROR "live at call to ddd2: .autotmp_[0-9]+$"
+       ddd2(x, y) // ERROR "stack object .autotmp_[0-9]+ \[2\]\*int$"
        printnl()
        // Note: no .?autotmp live at printnl.  See issue 16996.
 }
@@ -676,16 +689,37 @@ type T struct{}
 
 func (*T) Foo(ptr *int) {}
 
-type R struct{ *T } // ERRORAUTO "live at entry to \(\*R\)\.Foo: \.this ptr" "live at entry to R\.Foo: \.this ptr"
+type R struct{ *T }
 
 // issue 18860: output arguments must be live all the time if there is a defer.
 // In particular, at printint r must be live.
 func f41(p, q *int) (r *int) { // ERROR "live at entry to f41: p q$"
        r = p
-       defer func() { // ERROR "live at call to deferproc: q r$" "live at call to deferreturn: r$"
+       defer func() {
                recover()
        }()
-       printint(0) // ERROR "live at call to printint: q r$"
+       printint(0) // ERROR "live at call to printint: .autotmp_[0-9]+ q r$"
        r = q
-       return // ERROR "live at call to deferreturn: r$"
+       return // ERROR "live at call to f41.func1: .autotmp_[0-9]+ r$"
+}
+
+func f42() {
+       var p, q, r int
+       f43([]*int{&p, &q, &r}) // ERROR "stack object .autotmp_[0-9]+ \[3\]\*int$"
+       f43([]*int{&p, &r, &q})
+       f43([]*int{&q, &p, &r})
+}
+
+//go:noescape
+func f43(a []*int)
+
+// Assigning to a sub-element that makes up an entire local variable
+// should clobber that variable.
+func f44(f func() [2]*int) interface{} { // ERROR "live at entry to f44: f"
+       type T struct {
+               s [1][2]*int
+       }
+       ret := T{} // ERROR "stack object ret T"
+       ret.s[0] = f()
+       return ret
 }