mirror of https://github.com/golang/go.git
cmd/compile: alphabetize sysfunc lists
Change-Id: Ia95643752d743d208363e3434497ffcf0af7b2d7 Reviewed-on: https://go-review.googlesource.com/107816 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
581331e75b
commit
24d5c871aa
|
|
@ -277,36 +277,36 @@ var (
|
|||
staticbytes,
|
||||
zerobase *Node
|
||||
|
||||
Newproc,
|
||||
Deferproc,
|
||||
Deferreturn,
|
||||
Duffcopy,
|
||||
Duffzero,
|
||||
panicindex,
|
||||
panicslice,
|
||||
panicdivide,
|
||||
growslice,
|
||||
panicdottypeE,
|
||||
panicdottypeI,
|
||||
panicnildottype,
|
||||
assertE2I,
|
||||
assertE2I2,
|
||||
assertI2I,
|
||||
assertI2I2,
|
||||
goschedguarded,
|
||||
writeBarrier,
|
||||
Deferproc,
|
||||
Deferreturn,
|
||||
Duffcopy,
|
||||
Duffzero,
|
||||
gcWriteBarrier,
|
||||
typedmemmove,
|
||||
typedmemclr,
|
||||
raceread,
|
||||
racewrite,
|
||||
racereadrange,
|
||||
racewriterange,
|
||||
goschedguarded,
|
||||
growslice,
|
||||
msanread,
|
||||
msanwrite,
|
||||
Udiv,
|
||||
Newproc,
|
||||
panicdivide,
|
||||
panicdottypeE,
|
||||
panicdottypeI,
|
||||
panicindex,
|
||||
panicnildottype,
|
||||
panicslice,
|
||||
raceread,
|
||||
racereadrange,
|
||||
racewrite,
|
||||
racewriterange,
|
||||
supportPopcnt,
|
||||
supportSSE41 *obj.LSym
|
||||
supportSSE41,
|
||||
typedmemclr,
|
||||
typedmemmove,
|
||||
Udiv,
|
||||
writeBarrier *obj.LSym
|
||||
|
||||
// GO386=387
|
||||
ControlWord64trunc,
|
||||
|
|
|
|||
|
|
@ -53,36 +53,36 @@ func initssaconfig() {
|
|||
ssaCaches = make([]ssa.Cache, nBackendWorkers)
|
||||
|
||||
// Set up some runtime functions we'll need to call.
|
||||
Newproc = sysfunc("newproc")
|
||||
Deferproc = sysfunc("deferproc")
|
||||
Deferreturn = sysfunc("deferreturn")
|
||||
Duffcopy = sysfunc("duffcopy")
|
||||
Duffzero = sysfunc("duffzero")
|
||||
panicindex = sysfunc("panicindex")
|
||||
panicslice = sysfunc("panicslice")
|
||||
panicdivide = sysfunc("panicdivide")
|
||||
growslice = sysfunc("growslice")
|
||||
panicdottypeE = sysfunc("panicdottypeE")
|
||||
panicdottypeI = sysfunc("panicdottypeI")
|
||||
panicnildottype = sysfunc("panicnildottype")
|
||||
assertE2I = sysfunc("assertE2I")
|
||||
assertE2I2 = sysfunc("assertE2I2")
|
||||
assertI2I = sysfunc("assertI2I")
|
||||
assertI2I2 = sysfunc("assertI2I2")
|
||||
goschedguarded = sysfunc("goschedguarded")
|
||||
writeBarrier = sysfunc("writeBarrier")
|
||||
Deferproc = sysfunc("deferproc")
|
||||
Deferreturn = sysfunc("deferreturn")
|
||||
Duffcopy = sysfunc("duffcopy")
|
||||
Duffzero = sysfunc("duffzero")
|
||||
gcWriteBarrier = sysfunc("gcWriteBarrier")
|
||||
typedmemmove = sysfunc("typedmemmove")
|
||||
typedmemclr = sysfunc("typedmemclr")
|
||||
raceread = sysfunc("raceread")
|
||||
racewrite = sysfunc("racewrite")
|
||||
racereadrange = sysfunc("racereadrange")
|
||||
racewriterange = sysfunc("racewriterange")
|
||||
goschedguarded = sysfunc("goschedguarded")
|
||||
growslice = sysfunc("growslice")
|
||||
msanread = sysfunc("msanread")
|
||||
msanwrite = sysfunc("msanwrite")
|
||||
Udiv = sysfunc("udiv")
|
||||
Newproc = sysfunc("newproc")
|
||||
panicdivide = sysfunc("panicdivide")
|
||||
panicdottypeE = sysfunc("panicdottypeE")
|
||||
panicdottypeI = sysfunc("panicdottypeI")
|
||||
panicindex = sysfunc("panicindex")
|
||||
panicnildottype = sysfunc("panicnildottype")
|
||||
panicslice = sysfunc("panicslice")
|
||||
raceread = sysfunc("raceread")
|
||||
racereadrange = sysfunc("racereadrange")
|
||||
racewrite = sysfunc("racewrite")
|
||||
racewriterange = sysfunc("racewriterange")
|
||||
supportPopcnt = sysfunc("support_popcnt")
|
||||
supportSSE41 = sysfunc("support_sse41")
|
||||
typedmemclr = sysfunc("typedmemclr")
|
||||
typedmemmove = sysfunc("typedmemmove")
|
||||
Udiv = sysfunc("udiv")
|
||||
writeBarrier = sysfunc("writeBarrier")
|
||||
|
||||
// GO386=387 runtime functions
|
||||
ControlWord64trunc = sysfunc("controlWord64trunc")
|
||||
|
|
|
|||
Loading…
Reference in New Issue