| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/go/src/go/types/ |
Upload File : |
// Copyright 2022 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 types_test
import (
"go/importer"
"go/token"
"path/filepath"
"runtime"
"testing"
. "go/types"
)
// BenchmarkLookupFieldOrMethod measures types.LookupFieldOrMethod performance.
// LookupFieldOrMethod is a performance hotspot for both type-checking and
// external API calls.
func BenchmarkLookupFieldOrMethod(b *testing.B) {
// Choose an arbitrary, large package.
path := filepath.Join(runtime.GOROOT(), "src", "net", "http")
fset := token.NewFileSet()
files, err := pkgFiles(fset, path)
if err != nil {
b.Fatal(err)
}
conf := Config{
Importer: importer.Default(),
}
pkg, err := conf.Check("http", fset, files, nil)
if err != nil {
b.Fatal(err)
}
scope := pkg.Scope()
names := scope.Names()
// Look up an arbitrary name for each type referenced in the package scope.
lookup := func() {
for _, name := range names {
typ := scope.Lookup(name).Type()
LookupFieldOrMethod(typ, true, pkg, "m")
}
}
// Perform a lookup once, to ensure that any lazily-evaluated state is
// complete.
lookup()
b.ResetTimer()
for i := 0; i < b.N; i++ {
lookup()
}
}