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