1
0
mirror of https://github.com/golang/go synced 2024-09-30 00:14:36 -06:00

cmd/compile: add runtime GC funcs to inlining test

This is based on a list that Austin Clements provided in mid-2016. It is
mostly untouched, except for the fact that the wbufptr funcs were
removed from the runtime thus removed from the lits here too.

Add a section for these GC funcs, since there are quite a lot of them
and the runtime has tons of funcs that we want to inline. As before,
sort this section too.

Also place some of these funcs out of the GC section, as they are not
directly related to the GC.

Updates #21851.

Change-Id: I35eb777a4c50b5f655618920dc2bc568c7c30ff5
Reviewed-on: https://go-review.googlesource.com/65654
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Austin Clements <austin@google.com>
This commit is contained in:
Daniel Martí 2017-09-23 21:44:18 +01:00
parent 1ae67965e4
commit 4d3d333468

View File

@ -34,6 +34,8 @@ func TestIntendedInlining(t *testing.T) {
// "adjustctxt",
"add",
"acquirem",
"add1",
"addb",
"adjustpanics",
"adjustpointer",
@ -46,6 +48,7 @@ func TestIntendedInlining(t *testing.T) {
"fastlog2",
"fastrand",
"float64bits",
"funcPC",
"getm",
"isDirectIface",
"itabHashFunc",
@ -53,15 +56,43 @@ func TestIntendedInlining(t *testing.T) {
"noescape",
"readUnaligned32",
"readUnaligned64",
"releasem",
"round",
"roundupsize",
"selectsize",
"stringStructOf",
"subtract1",
"subtractb",
"tophash",
"totaldefersize",
"(*bmap).keys",
"(*bmap).overflow",
"(*waitq).enqueue",
// GC-related ones
"cgoInRange",
"gclinkptr.ptr",
"guintptr.ptr",
"heapBits.bits",
"heapBits.isPointer",
"heapBits.morePointers",
"heapBits.next",
"heapBitsForAddr",
"inheap",
"markBits.isMarked",
"muintptr.ptr",
"puintptr.ptr",
"spanOfUnchecked",
"(*gcWork).putFast",
"(*gcWork).tryGetFast",
"(*guintptr).set",
"(*markBits).advance",
"(*mspan).allocBitsForIndex",
"(*mspan).base",
"(*mspan).markBitsForBase",
"(*mspan).markBitsForIndex",
"(*muintptr).set",
"(*puintptr).set",
},
"runtime/internal/sys": {},
"bytes": {