github.com/riscv/riscv-go@v0.0.0-20200123204226-124ebd6fcc8e/test/live.go (about)

     1  // errorcheckwithauto -0 -l -live -wb=0 -d=ssa/insert_resched_checks/off
     2  // +build !ppc64,!ppc64le
     3  // ppc64 needs a better tighten pass to make f18 pass
     4  // rescheduling checks need to be turned off because there are some live variables across the inserted check call
     5  
     6  // Copyright 2014 The Go Authors. All rights reserved.
     7  // Use of this source code is governed by a BSD-style
     8  // license that can be found in the LICENSE file.
     9  
    10  // liveness tests with inlining disabled.
    11  // see also live2.go.
    12  
    13  package main
    14  
    15  func printnl()
    16  
    17  //go:noescape
    18  func printpointer(**int)
    19  
    20  //go:noescape
    21  func printintpointer(*int)
    22  
    23  //go:noescape
    24  func printstringpointer(*string)
    25  
    26  //go:noescape
    27  func printstring(string)
    28  
    29  //go:noescape
    30  func printbytepointer(*byte)
    31  
    32  func printint(int)
    33  
    34  func f1() {
    35  	var x *int
    36  	printpointer(&x) // ERROR "live at call to printpointer: x$"
    37  	printpointer(&x) // ERROR "live at call to printpointer: x$"
    38  }
    39  
    40  func f2(b bool) {
    41  	if b {
    42  		printint(0) // nothing live here
    43  		return
    44  	}
    45  	var x *int
    46  	printpointer(&x) // ERROR "live at call to printpointer: x$"
    47  	printpointer(&x) // ERROR "live at call to printpointer: x$"
    48  }
    49  
    50  func f3(b1, b2 bool) {
    51  	// Here x and y are ambiguously live. In previous go versions they
    52  	// were marked as live throughout the function to avoid being
    53  	// poisoned in GODEBUG=gcdead=1 mode; this is now no longer the
    54  	// case.
    55  
    56  	printint(0)
    57  	if b1 == false {
    58  		printint(0)
    59  		return
    60  	}
    61  
    62  	if b2 {
    63  		var x *int
    64  		printpointer(&x) // ERROR "live at call to printpointer: x$"
    65  		printpointer(&x) // ERROR "live at call to printpointer: x$"
    66  	} else {
    67  		var y *int
    68  		printpointer(&y) // ERROR "live at call to printpointer: y$"
    69  		printpointer(&y) // ERROR "live at call to printpointer: y$"
    70  	}
    71  	printint(0) // ERROR "f3: x \(type \*int\) is ambiguously live$" "f3: y \(type \*int\) is ambiguously live$" "live at call to printint: x y$"
    72  }
    73  
    74  // The old algorithm treated x as live on all code that
    75  // could flow to a return statement, so it included the
    76  // function entry and code above the declaration of x
    77  // but would not include an indirect use of x in an infinite loop.
    78  // Check that these cases are handled correctly.
    79  
    80  func f4(b1, b2 bool) { // x not live here
    81  	if b2 {
    82  		printint(0) // x not live here
    83  		return
    84  	}
    85  	var z **int
    86  	x := new(int)
    87  	*x = 42
    88  	z = &x
    89  	printint(**z) // ERROR "live at call to printint: x$"
    90  	if b2 {
    91  		printint(1) // x not live here
    92  		return
    93  	}
    94  	for {
    95  		printint(**z) // ERROR "live at call to printint: x$"
    96  	}
    97  }
    98  
    99  func f5(b1 bool) {
   100  	var z **int
   101  	if b1 {
   102  		x := new(int)
   103  		*x = 42
   104  		z = &x
   105  	} else {
   106  		y := new(int)
   107  		*y = 54
   108  		z = &y
   109  	}
   110  	printint(**z) // ERROR "f5: x \(type \*int\) is ambiguously live$" "f5: y \(type \*int\) is ambiguously live$" "live at call to printint: x y$"
   111  }
   112  
   113  // confusion about the _ result used to cause spurious "live at entry to f6: _".
   114  
   115  func f6() (_, y string) {
   116  	y = "hello"
   117  	return
   118  }
   119  
   120  // confusion about addressed results used to cause "live at entry to f7: x".
   121  
   122  func f7() (x string) {
   123  	_ = &x
   124  	x = "hello"
   125  	return
   126  }
   127  
   128  // ignoring block returns used to cause "live at entry to f8: x, y".
   129  
   130  func f8() (x, y string) {
   131  	return g8()
   132  }
   133  
   134  func g8() (string, string)
   135  
   136  // ignoring block assignments used to cause "live at entry to f9: x"
   137  // issue 7205
   138  
   139  var i9 interface{}
   140  
   141  func f9() bool {
   142  	g8()
   143  	x := i9
   144  	y := interface{}(str()) // ERROR "live at call to convT2E: .autotmp_[0-9]+ x.data x.type$" "live at call to str: x.data x.type$"
   145  	i9 = y                  // make y escape so the line above has to call convT2E
   146  	return x != y
   147  }
   148  
   149  // liveness formerly confused by UNDEF followed by RET,
   150  // leading to "live at entry to f10: ~r1" (unnamed result).
   151  
   152  func f10() string {
   153  	panic(1)
   154  }
   155  
   156  // liveness formerly confused by select, thinking runtime.selectgo
   157  // can return to next instruction; it always jumps elsewhere.
   158  // note that you have to use at least two cases in the select
   159  // to get a true select; smaller selects compile to optimized helper functions.
   160  
   161  var c chan *int
   162  var b bool
   163  
   164  // this used to have a spurious "live at entry to f11a: ~r0"
   165  func f11a() *int {
   166  	select { // ERROR "live at call to newselect: .autotmp_[0-9]+$" "live at call to selectgo: .autotmp_[0-9]+$"
   167  	case <-c: // ERROR "live at call to selectrecv: .autotmp_[0-9]+$"
   168  		return nil
   169  	case <-c: // ERROR "live at call to selectrecv: .autotmp_[0-9]+$"
   170  		return nil
   171  	}
   172  }
   173  
   174  func f11b() *int {
   175  	p := new(int)
   176  	if b {
   177  		// At this point p is dead: the code here cannot
   178  		// get to the bottom of the function.
   179  		// This used to have a spurious "live at call to printint: p".
   180  		printint(1) // nothing live here!
   181  		select {    // ERROR "live at call to newselect: .autotmp_[0-9]+$" "live at call to selectgo: .autotmp_[0-9]+$"
   182  		case <-c: // ERROR "live at call to selectrecv: .autotmp_[0-9]+$"
   183  			return nil
   184  		case <-c: // ERROR "live at call to selectrecv: .autotmp_[0-9]+$"
   185  			return nil
   186  		}
   187  	}
   188  	println(*p)
   189  	return nil
   190  }
   191  
   192  var sink *int
   193  
   194  func f11c() *int {
   195  	p := new(int)
   196  	sink = p // prevent stack allocation, otherwise p is rematerializeable
   197  	if b {
   198  		// Unlike previous, the cases in this select fall through,
   199  		// so we can get to the println, so p is not dead.
   200  		printint(1) // ERROR "live at call to printint: p$"
   201  		select {    // ERROR "live at call to newselect: .autotmp_[0-9]+ p$" "live at call to selectgo: .autotmp_[0-9]+ p$"
   202  		case <-c: // ERROR "live at call to selectrecv: .autotmp_[0-9]+ p$"
   203  		case <-c: // ERROR "live at call to selectrecv: .autotmp_[0-9]+ p$"
   204  		}
   205  	}
   206  	println(*p)
   207  	return nil
   208  }
   209  
   210  // similarly, select{} does not fall through.
   211  // this used to have a spurious "live at entry to f12: ~r0".
   212  
   213  func f12() *int {
   214  	if b {
   215  		select {}
   216  	} else {
   217  		return nil
   218  	}
   219  }
   220  
   221  // incorrectly placed VARDEF annotations can cause missing liveness annotations.
   222  // this used to be missing the fact that s is live during the call to g13 (because it is
   223  // needed for the call to h13).
   224  
   225  func f13() {
   226  	s := g14()
   227  	s = h13(s, g13(s)) // ERROR "live at call to g13: s.ptr$"
   228  }
   229  
   230  func g13(string) string
   231  func h13(string, string) string
   232  
   233  // more incorrectly placed VARDEF.
   234  
   235  func f14() {
   236  	x := g14()
   237  	printstringpointer(&x) // ERROR "live at call to printstringpointer: x$"
   238  }
   239  
   240  func g14() string
   241  
   242  func f15() {
   243  	var x string
   244  	_ = &x
   245  	x = g15()      // ERROR "live at call to g15: x$"
   246  	printstring(x) // ERROR "live at call to printstring: x$"
   247  }
   248  
   249  func g15() string
   250  
   251  // Checking that various temporaries do not persist or cause
   252  // ambiguously live values that must be zeroed.
   253  // The exact temporary names are inconsequential but we are
   254  // trying to check that there is only one at any given site,
   255  // and also that none show up in "ambiguously live" messages.
   256  
   257  var m map[string]int
   258  
   259  // str is used to ensure that a temp is required for runtime calls below.
   260  func str() string
   261  
   262  func f16() {
   263  	if b {
   264  		delete(m, str()) // ERROR "live at call to mapdelete: .autotmp_[0-9]+$"
   265  	}
   266  	delete(m, str()) // ERROR "live at call to mapdelete: .autotmp_[0-9]+$"
   267  	delete(m, str()) // ERROR "live at call to mapdelete: .autotmp_[0-9]+$"
   268  }
   269  
   270  var m2s map[string]*byte
   271  var m2 map[[2]string]*byte
   272  var x2 [2]string
   273  var bp *byte
   274  
   275  func f17a(p *byte) { // ERROR "live at entry to f17a: p$"
   276  	if b {
   277  		m2[x2] = p // ERROR "live at call to mapassign: p$"
   278  	}
   279  	m2[x2] = p // ERROR "live at call to mapassign: p$"
   280  	m2[x2] = p // ERROR "live at call to mapassign: p$"
   281  }
   282  
   283  func f17b(p *byte) { // ERROR "live at entry to f17b: p$"
   284  	// key temporary
   285  	if b {
   286  		m2s[str()] = p // ERROR "live at call to mapassign: p .autotmp_[0-9]+$" "live at call to str: p$"
   287  	}
   288  	m2s[str()] = p // ERROR "live at call to mapassign: p .autotmp_[0-9]+$" "live at call to str: p$"
   289  	m2s[str()] = p // ERROR "live at call to mapassign: p .autotmp_[0-9]+$" "live at call to str: p$"
   290  }
   291  
   292  func f17c() {
   293  	// key and value temporaries
   294  	if b {
   295  		m2s[str()] = f17d() // ERROR "live at call to f17d: .autotmp_[0-9]+$" "live at call to mapassign: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   296  	}
   297  	m2s[str()] = f17d() // ERROR "live at call to f17d: .autotmp_[0-9]+$" "live at call to mapassign: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   298  	m2s[str()] = f17d() // ERROR "live at call to f17d: .autotmp_[0-9]+$" "live at call to mapassign: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   299  }
   300  
   301  func f17d() *byte
   302  
   303  func g18() [2]string
   304  
   305  func f18() {
   306  	// key temporary for mapaccess.
   307  	// temporary introduced by orderexpr.
   308  	var z *byte
   309  	if b {
   310  		z = m2[g18()] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   311  	}
   312  	z = m2[g18()] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   313  	z = m2[g18()] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   314  	printbytepointer(z)
   315  }
   316  
   317  var ch chan *byte
   318  
   319  // byteptr is used to ensure that a temp is required for runtime calls below.
   320  func byteptr() *byte
   321  
   322  func f19() {
   323  	// dest temporary for channel receive.
   324  	var z *byte
   325  
   326  	if b {
   327  		z = <-ch // ERROR "live at call to chanrecv1: .autotmp_[0-9]+$"
   328  	}
   329  	z = <-ch // ERROR "live at call to chanrecv1: .autotmp_[0-9]+$"
   330  	z = <-ch // ERROR "live at call to chanrecv1: .autotmp_[0-9]+$"
   331  	printbytepointer(z)
   332  }
   333  
   334  func f20() {
   335  	// src temporary for channel send
   336  	if b {
   337  		ch <- byteptr() // ERROR "live at call to chansend1: .autotmp_[0-9]+$"
   338  	}
   339  	ch <- byteptr() // ERROR "live at call to chansend1: .autotmp_[0-9]+$"
   340  	ch <- byteptr() // ERROR "live at call to chansend1: .autotmp_[0-9]+$"
   341  }
   342  
   343  func f21() {
   344  	// key temporary for mapaccess using array literal key.
   345  	var z *byte
   346  	if b {
   347  		z = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   348  	}
   349  	z = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   350  	z = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   351  	printbytepointer(z)
   352  }
   353  
   354  func f23() {
   355  	// key temporary for two-result map access using array literal key.
   356  	var z *byte
   357  	var ok bool
   358  	if b {
   359  		z, ok = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess2: .autotmp_[0-9]+$"
   360  	}
   361  	z, ok = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess2: .autotmp_[0-9]+$"
   362  	z, ok = m2[[2]string{"x", "y"}] // ERROR "live at call to mapaccess2: .autotmp_[0-9]+$"
   363  	printbytepointer(z)
   364  	print(ok)
   365  }
   366  
   367  func f24() {
   368  	// key temporary for map access using array literal key.
   369  	// value temporary too.
   370  	if b {
   371  		m2[[2]string{"x", "y"}] = nil // ERROR "live at call to mapassign: .autotmp_[0-9]+$"
   372  	}
   373  	m2[[2]string{"x", "y"}] = nil // ERROR "live at call to mapassign: .autotmp_[0-9]+$"
   374  	m2[[2]string{"x", "y"}] = nil // ERROR "live at call to mapassign: .autotmp_[0-9]+$"
   375  }
   376  
   377  // defer should not cause spurious ambiguously live variables
   378  
   379  func f25(b bool) {
   380  	defer g25()
   381  	if b {
   382  		return
   383  	}
   384  	var x string
   385  	_ = &x
   386  	x = g15()      // ERROR "live at call to g15: x$"
   387  	printstring(x) // ERROR "live at call to printstring: x$"
   388  } // ERROR "live at call to deferreturn: x$"
   389  
   390  func g25()
   391  
   392  // non-escaping ... slices passed to function call should die on return,
   393  // so that the temporaries do not stack and do not cause ambiguously
   394  // live variables.
   395  
   396  func f26(b bool) {
   397  	if b {
   398  		print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "live at call to print26: .autotmp_[0-9]+$"
   399  	}
   400  	print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "live at call to print26: .autotmp_[0-9]+$"
   401  	print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "live at call to print26: .autotmp_[0-9]+$"
   402  	printnl()
   403  }
   404  
   405  //go:noescape
   406  func print26(...interface{})
   407  
   408  // non-escaping closures passed to function call should die on return
   409  
   410  func f27(b bool) {
   411  	x := 0
   412  	if b {
   413  		call27(func() { x++ }) // ERROR "live at call to call27: .autotmp_[0-9]+$"
   414  	}
   415  	call27(func() { x++ }) // ERROR "live at call to call27: .autotmp_[0-9]+$"
   416  	call27(func() { x++ }) // ERROR "live at call to call27: .autotmp_[0-9]+$"
   417  	printnl()
   418  }
   419  
   420  // but defer does escape to later execution in the function
   421  
   422  func f27defer(b bool) {
   423  	x := 0
   424  	if b {
   425  		defer call27(func() { x++ }) // ERROR "live at call to deferproc: .autotmp_[0-9]+$" "live at call to deferreturn: .autotmp_[0-9]+$"
   426  	}
   427  	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]+$"
   428  	printnl()                    // ERROR "live at call to printnl: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   429  } // ERROR "live at call to deferreturn: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   430  
   431  // and newproc (go) escapes to the heap
   432  
   433  func f27go(b bool) {
   434  	x := 0
   435  	if b {
   436  		go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newproc: &x$"
   437  	}
   438  	go call27(func() { x++ }) // ERROR "live at call to newobject: &x$"
   439  	printnl()
   440  }
   441  
   442  //go:noescape
   443  func call27(func())
   444  
   445  // concatstring slice should die on return
   446  
   447  var s1, s2, s3, s4, s5, s6, s7, s8, s9, s10 string
   448  
   449  func f28(b bool) {
   450  	if b {
   451  		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]+$"
   452  	}
   453  	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]+$"
   454  	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]+$"
   455  }
   456  
   457  // map iterator should die on end of range loop
   458  
   459  func f29(b bool) {
   460  	if b {
   461  		for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$"
   462  			printstring(k) // ERROR "live at call to printstring: .autotmp_[0-9]+$"
   463  		}
   464  	}
   465  	for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$"
   466  		printstring(k) // ERROR "live at call to printstring: .autotmp_[0-9]+$"
   467  	}
   468  	for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$"
   469  		printstring(k) // ERROR "live at call to printstring: .autotmp_[0-9]+$"
   470  	}
   471  }
   472  
   473  // copy of array of pointers should die at end of range loop
   474  
   475  var ptrarr [10]*int
   476  
   477  func f30(b bool) {
   478  	// two live temps during print(p):
   479  	// the copy of ptrarr and the internal iterator pointer.
   480  	if b {
   481  		for _, p := range ptrarr {
   482  			printintpointer(p) // ERROR "live at call to printintpointer: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   483  		}
   484  	}
   485  	for _, p := range ptrarr {
   486  		printintpointer(p) // ERROR "live at call to printintpointer: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   487  	}
   488  	for _, p := range ptrarr {
   489  		printintpointer(p) // ERROR "live at call to printintpointer: .autotmp_[0-9]+ .autotmp_[0-9]+$"
   490  	}
   491  }
   492  
   493  // conversion to interface should not leave temporary behind
   494  
   495  func f31(b1, b2, b3 bool) {
   496  	if b1 {
   497  		g31(str()) // ERROR "live at call to convT2E: .autotmp_[0-9]+$" "live at call to g31: .autotmp_[0-9]+$"
   498  	}
   499  	if b2 {
   500  		h31(str()) // ERROR "live at call to convT2E: .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to h31: .autotmp_[0-9]+$" "live at call to newobject: .autotmp_[0-9]+$"
   501  	}
   502  	if b3 {
   503  		panic(str()) // ERROR "live at call to convT2E: .autotmp_[0-9]+$" "live at call to gopanic: .autotmp_[0-9]+$"
   504  	}
   505  	print(b3)
   506  }
   507  
   508  func g31(interface{})
   509  func h31(...interface{})
   510  
   511  // non-escaping partial functions passed to function call should die on return
   512  
   513  type T32 int
   514  
   515  func (t *T32) Inc() { // ERROR "live at entry to \(\*T32\).Inc: t$"
   516  	*t++
   517  }
   518  
   519  var t32 T32
   520  
   521  func f32(b bool) {
   522  	if b {
   523  		call32(t32.Inc) // ERROR "live at call to call32: .autotmp_[0-9]+$"
   524  	}
   525  	call32(t32.Inc) // ERROR "live at call to call32: .autotmp_[0-9]+$"
   526  	call32(t32.Inc) // ERROR "live at call to call32: .autotmp_[0-9]+$"
   527  }
   528  
   529  //go:noescape
   530  func call32(func())
   531  
   532  // temporaries introduced during if conditions and && || expressions
   533  // should die once the condition has been acted upon.
   534  
   535  var m33 map[interface{}]int
   536  
   537  func f33() {
   538  	if m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   539  		printnl()
   540  		return
   541  	} else {
   542  		printnl()
   543  	}
   544  	printnl()
   545  }
   546  
   547  func f34() {
   548  	if m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   549  		printnl()
   550  		return
   551  	}
   552  	printnl()
   553  }
   554  
   555  func f35() {
   556  	if m33[byteptr()] == 0 && m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   557  		printnl()
   558  		return
   559  	}
   560  	printnl()
   561  }
   562  
   563  func f36() {
   564  	if m33[byteptr()] == 0 || m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   565  		printnl()
   566  		return
   567  	}
   568  	printnl()
   569  }
   570  
   571  func f37() {
   572  	if (m33[byteptr()] == 0 || m33[byteptr()] == 0) && m33[byteptr()] == 0 { // ERROR "live at call to mapaccess1: .autotmp_[0-9]+$"
   573  		printnl()
   574  		return
   575  	}
   576  	printnl()
   577  }
   578  
   579  // select temps should disappear in the case bodies
   580  
   581  var c38 chan string
   582  
   583  func fc38() chan string
   584  func fi38(int) *string
   585  func fb38() *bool
   586  
   587  func f38(b bool) {
   588  	// we don't care what temps are printed on the lines with output.
   589  	// we care that the println lines have no live variables
   590  	// and therefore no output.
   591  	if b {
   592  		select { // ERROR "live at call to newselect: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to selectgo: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$"
   593  		case <-fc38(): // ERROR "live at call to selectrecv: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$"
   594  			printnl()
   595  		case fc38() <- *fi38(1): // ERROR "live at call to fc38: .autotmp_[0-9]+$" "live at call to fi38: .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to selectsend: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$"
   596  			printnl()
   597  		case *fi38(2) = <-fc38(): // ERROR "live at call to fc38: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to fi38: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to selectrecv: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$"
   598  			printnl()
   599  		case *fi38(3), *fb38() = <-fc38(): // ERROR "live at call to fb38: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to fc38: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to fi38: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$" "live at call to selectrecv2: .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+ .autotmp_[0-9]+$"
   600  			printnl()
   601  		}
   602  		printnl()
   603  	}
   604  	printnl()
   605  }
   606  
   607  // issue 8097: mishandling of x = x during return.
   608  
   609  func f39() (x []int) {
   610  	x = []int{1}
   611  	printnl() // ERROR "live at call to printnl: .autotmp_[0-9]+$"
   612  	return x
   613  }
   614  
   615  func f39a() (x []int) {
   616  	x = []int{1}
   617  	printnl() // ERROR "live at call to printnl: .autotmp_[0-9]+$"
   618  	return
   619  }
   620  
   621  func f39b() (x [10]*int) {
   622  	x = [10]*int{}
   623  	x[0] = new(int) // ERROR "live at call to newobject: x$"
   624  	printnl()       // ERROR "live at call to printnl: x$"
   625  	return x
   626  }
   627  
   628  func f39c() (x [10]*int) {
   629  	x = [10]*int{}
   630  	x[0] = new(int) // ERROR "live at call to newobject: x$"
   631  	printnl()       // ERROR "live at call to printnl: x$"
   632  	return
   633  }
   634  
   635  // issue 8142: lost 'addrtaken' bit on inlined variables.
   636  // no inlining in this test, so just checking that non-inlined works.
   637  
   638  type T40 struct {
   639  	m map[int]int
   640  }
   641  
   642  func newT40() *T40 {
   643  	ret := T40{}
   644  	ret.m = make(map[int]int) // ERROR "live at call to makemap: &ret$"
   645  	return &ret
   646  }
   647  
   648  func bad40() {
   649  	t := newT40()
   650  	_ = t
   651  	printnl()
   652  }
   653  
   654  func good40() {
   655  	ret := T40{}
   656  	ret.m = make(map[int]int) // ERROR "live at call to makemap: .autotmp_[0-9]+ ret$"
   657  	t := &ret
   658  	printnl() // ERROR "live at call to printnl: .autotmp_[0-9]+ ret$"
   659  	_ = t
   660  }
   661  
   662  func ddd1(x, y *int) { // ERROR "live at entry to ddd1: x y$"
   663  	ddd2(x, y) // ERROR "live at call to ddd2: .autotmp_[0-9]+$"
   664  	printnl()
   665  	// Note: no .?autotmp live at printnl.  See issue 16996.
   666  }
   667  func ddd2(a ...*int) { // ERROR "live at entry to ddd2: a$"
   668  	sink = a[0]
   669  }
   670  
   671  // issue 16016: autogenerated wrapper should have arguments live
   672  type T struct{}
   673  
   674  func (*T) Foo(ptr *int) {}
   675  
   676  type R struct{ *T } // ERRORAUTO "live at entry to \(\*R\)\.Foo: \.this ptr" "live at entry to R\.Foo: \.this ptr"
   677  
   678  // issue 18860: output arguments must be live all the time if there is a defer.
   679  // In particular, at printint r must be live.
   680  func f41(p, q *int) (r *int) { // ERROR "live at entry to f41: p q$"
   681  	r = p
   682  	defer func() {
   683  		recover()
   684  	}() // ERROR "live at call to deferproc: q r$" "live at call to deferreturn: r$"
   685  	printint(0) // ERROR "live at call to printint: q r$"
   686  	r = q
   687  	return // ERROR "live at call to deferreturn: r$"
   688  }