aboutsummaryrefslogtreecommitdiff
path: root/go/callgraph/vta/testdata/src/callgraph_recursive_types.go
blob: 6c3fef6f7c3e700a6b655a0bb73c5a2d010744f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// go:build ignore

package testdata

type I interface {
	Foo() I
}

type A struct {
	i int
	a *A
}

func (a *A) Foo() I {
	return a
}

type B **B

type C *D
type D *C

func Bar(a *A, b *B, c *C, d *D) {
	Baz(a)
	Baz(a.a)

	sink(*b)
	sink(*c)
	sink(*d)
}

func Baz(i I) {
	i.Foo()
}

func sink(i interface{}) {
	print(i)
}

// Relevant SSA:
// func Baz(i I):
//   t0 = invoke i.Foo()
//   return
//
// func Bar(a *A, b *B):
//   t0 = make I <- *A (a)
//   t1 = Baz(t0)
//   ...

// WANT:
// Bar: Baz(t0) -> Baz; Baz(t4) -> Baz; sink(t10) -> sink; sink(t13) -> sink; sink(t7) -> sink
// Baz: invoke i.Foo() -> A.Foo