mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/internal/goobj: regenerate builtin list
Change-Id: Ib8cb5f90e084838f00ecba78641bbb5d48ecac32 Reviewed-on: https://go-review.googlesource.com/c/go/+/297931 Trust: Cherry Zhang <cherryyz@google.com> Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
parent
fb03be9d55
commit
7205a4fbdc
2 changed files with 6 additions and 5 deletions
|
|
@ -41,6 +41,7 @@ var builtins = [...]struct {
|
||||||
{"runtime.printcomplex", 1},
|
{"runtime.printcomplex", 1},
|
||||||
{"runtime.printstring", 1},
|
{"runtime.printstring", 1},
|
||||||
{"runtime.printpointer", 1},
|
{"runtime.printpointer", 1},
|
||||||
|
{"runtime.printuintptr", 1},
|
||||||
{"runtime.printiface", 1},
|
{"runtime.printiface", 1},
|
||||||
{"runtime.printeface", 1},
|
{"runtime.printeface", 1},
|
||||||
{"runtime.printslice", 1},
|
{"runtime.printslice", 1},
|
||||||
|
|
@ -61,7 +62,6 @@ var builtins = [...]struct {
|
||||||
{"runtime.stringtoslicebyte", 1},
|
{"runtime.stringtoslicebyte", 1},
|
||||||
{"runtime.stringtoslicerune", 1},
|
{"runtime.stringtoslicerune", 1},
|
||||||
{"runtime.slicecopy", 1},
|
{"runtime.slicecopy", 1},
|
||||||
{"runtime.slicestringcopy", 1},
|
|
||||||
{"runtime.decoderune", 1},
|
{"runtime.decoderune", 1},
|
||||||
{"runtime.countrunes", 1},
|
{"runtime.countrunes", 1},
|
||||||
{"runtime.convI2I", 1},
|
{"runtime.convI2I", 1},
|
||||||
|
|
@ -122,7 +122,6 @@ var builtins = [...]struct {
|
||||||
{"runtime.typedslicecopy", 1},
|
{"runtime.typedslicecopy", 1},
|
||||||
{"runtime.selectnbsend", 1},
|
{"runtime.selectnbsend", 1},
|
||||||
{"runtime.selectnbrecv", 1},
|
{"runtime.selectnbrecv", 1},
|
||||||
{"runtime.selectnbrecv2", 1},
|
|
||||||
{"runtime.selectsetpc", 1},
|
{"runtime.selectsetpc", 1},
|
||||||
{"runtime.selectgo", 1},
|
{"runtime.selectgo", 1},
|
||||||
{"runtime.block", 1},
|
{"runtime.block", 1},
|
||||||
|
|
@ -172,8 +171,9 @@ var builtins = [...]struct {
|
||||||
{"runtime.uint64tofloat64", 1},
|
{"runtime.uint64tofloat64", 1},
|
||||||
{"runtime.uint32tofloat64", 1},
|
{"runtime.uint32tofloat64", 1},
|
||||||
{"runtime.complex128div", 1},
|
{"runtime.complex128div", 1},
|
||||||
|
{"runtime.getcallerpc", 1},
|
||||||
|
{"runtime.getcallersp", 1},
|
||||||
{"runtime.racefuncenter", 1},
|
{"runtime.racefuncenter", 1},
|
||||||
{"runtime.racefuncenterfp", 1},
|
|
||||||
{"runtime.racefuncexit", 1},
|
{"runtime.racefuncexit", 1},
|
||||||
{"runtime.raceread", 1},
|
{"runtime.raceread", 1},
|
||||||
{"runtime.racewrite", 1},
|
{"runtime.racewrite", 1},
|
||||||
|
|
@ -181,6 +181,7 @@ var builtins = [...]struct {
|
||||||
{"runtime.racewriterange", 1},
|
{"runtime.racewriterange", 1},
|
||||||
{"runtime.msanread", 1},
|
{"runtime.msanread", 1},
|
||||||
{"runtime.msanwrite", 1},
|
{"runtime.msanwrite", 1},
|
||||||
|
{"runtime.msanmove", 1},
|
||||||
{"runtime.checkptrAlignment", 1},
|
{"runtime.checkptrAlignment", 1},
|
||||||
{"runtime.checkptrArithmetic", 1},
|
{"runtime.checkptrArithmetic", 1},
|
||||||
{"runtime.libfuzzerTraceCmp1", 1},
|
{"runtime.libfuzzerTraceCmp1", 1},
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
//go:build ignore
|
//go:build ignore
|
||||||
// +build ignore
|
// +build ignore
|
||||||
|
|
||||||
// Generate builtinlist.go from cmd/compile/internal/gc/builtin/runtime.go.
|
// Generate builtinlist.go from cmd/compile/internal/typecheck/builtin/runtime.go.
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
|
@ -54,7 +54,7 @@ func main() {
|
||||||
func mkbuiltin(w io.Writer) {
|
func mkbuiltin(w io.Writer) {
|
||||||
pkg := "runtime"
|
pkg := "runtime"
|
||||||
fset := token.NewFileSet()
|
fset := token.NewFileSet()
|
||||||
path := filepath.Join("..", "..", "compile", "internal", "gc", "builtin", "runtime.go")
|
path := filepath.Join("..", "..", "compile", "internal", "typecheck", "builtin", "runtime.go")
|
||||||
f, err := parser.ParseFile(fset, path, nil, 0)
|
f, err := parser.ParseFile(fset, path, nil, 0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue