Server : LiteSpeed System : Linux in-mum-web1333.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u141265441 ( 141265441) PHP Version : 8.4.3 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /proc/self/root/opt/golang/1.19.4/src/cmd/compile/internal/test/ |
// 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.
package test
import (
"fmt"
"sort"
"testing"
)
// Test that calling methods on generic types doesn't cause allocations.
func genericSorted[T sort.Interface](data T) bool {
n := data.Len()
for i := n - 1; i > 0; i-- {
if data.Less(i, i-1) {
return false
}
}
return true
}
func TestGenericSorted(t *testing.T) {
var data = sort.IntSlice{-10, -5, 0, 1, 2, 3, 5, 7, 11, 100, 100, 100, 1000, 10000}
f := func() {
genericSorted(data)
}
if n := testing.AllocsPerRun(10, f); n > 0 {
t.Errorf("got %f allocs, want 0", n)
}
}
// Test that escape analysis correctly tracks escaping inside of methods
// called on generic types.
type fooer interface {
foo()
}
type P struct {
p *int
q int
}
var esc []*int
func (p P) foo() {
esc = append(esc, p.p) // foo escapes the pointer from inside of p
}
func f[T fooer](t T) {
t.foo()
}
func TestGenericEscape(t *testing.T) {
for i := 0; i < 4; i++ {
var x int = 77 + i
var p P = P{p: &x}
f(p)
}
for i, p := range esc {
if got, want := *p, 77+i; got != want {
panic(fmt.Sprintf("entry %d: got %d, want %d", i, got, want))
}
}
}