mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
Prior to this CL, all runtime conversions from a concrete value to an interface went through one of two runtime calls: convT2E or convT2I. However, in practice, basic types are very common. Specializing convT2x for those basic types allows for a more efficient implementation for those types. For basic scalars and strings, allocation and copying can use the same methods as normal code. For pointer-free types, allocation can occur without zeroing, and copying can take place without GC calls. For slices, copying is cheaper and simpler. This CL adds twelve runtime routines: convT2E16, convT2I16 convT2E32, convT2I32 convT2E64, convT2I64 convT2Estring, convT2Istring convT2Eslice, convT2Islice convT2Enoptr, convT2Inoptr While compiling make.bash, 93% of all convT2x calls are now to one of these specialized convT2x call. Within specialized convT2x routines, it is cheap to check for a zero value, in a way that it is not in general. When we detect a zero value there, we return a pointer to zeroVal, rather than allocating. name old time/op new time/op delta ConvT2Ezero/zero/16-8 17.9ns ± 2% 3.0ns ± 3% -83.20% (p=0.000 n=56+56) ConvT2Ezero/zero/32-8 17.8ns ± 2% 3.0ns ± 3% -83.15% (p=0.000 n=59+60) ConvT2Ezero/zero/64-8 20.1ns ± 1% 3.0ns ± 2% -84.98% (p=0.000 n=57+57) ConvT2Ezero/zero/str-8 32.6ns ± 1% 3.0ns ± 4% -90.70% (p=0.000 n=59+60) ConvT2Ezero/zero/slice-8 36.7ns ± 2% 3.0ns ± 2% -91.78% (p=0.000 n=59+59) ConvT2Ezero/zero/big-8 91.9ns ± 2% 85.9ns ± 2% -6.52% (p=0.000 n=57+57) ConvT2Ezero/nonzero/16-8 17.7ns ± 2% 12.7ns ± 3% -28.38% (p=0.000 n=55+60) ConvT2Ezero/nonzero/32-8 17.8ns ± 1% 12.7ns ± 1% -28.44% (p=0.000 n=54+57) ConvT2Ezero/nonzero/64-8 20.0ns ± 1% 15.0ns ± 1% -24.90% (p=0.000 n=56+58) ConvT2Ezero/nonzero/str-8 32.6ns ± 1% 25.7ns ± 1% -21.17% (p=0.000 n=58+55) ConvT2Ezero/nonzero/slice-8 36.8ns ± 2% 30.4ns ± 1% -17.32% (p=0.000 n=60+52) ConvT2Ezero/nonzero/big-8 92.1ns ± 2% 85.9ns ± 2% -6.70% (p=0.000 n=57+59) Benchmarks on a real program (the compiler): name old time/op new time/op delta Template 227ms ± 5% 221ms ± 2% -2.48% (p=0.000 n=30+26) Unicode 102ms ± 5% 100ms ± 3% -1.30% (p=0.009 n=30+26) GoTypes 656ms ± 5% 659ms ± 4% ~ (p=0.208 n=30+30) Compiler 2.82s ± 2% 2.82s ± 1% ~ (p=0.614 n=29+27) Flate 128ms ± 2% 128ms ± 5% ~ (p=0.783 n=27+28) GoParser 158ms ± 3% 158ms ± 3% ~ (p=0.261 n=28+30) Reflect 408ms ± 7% 401ms ± 3% ~ (p=0.075 n=30+30) Tar 123ms ± 6% 121ms ± 8% ~ (p=0.287 n=29+30) XML 220ms ± 2% 220ms ± 4% ~ (p=0.805 n=29+29) name old user-ns/op new user-ns/op delta Template 281user-ms ± 4% 279user-ms ± 3% -0.87% (p=0.044 n=28+28) Unicode 142user-ms ± 4% 141user-ms ± 3% -1.04% (p=0.015 n=30+27) GoTypes 884user-ms ± 3% 886user-ms ± 2% ~ (p=0.532 n=30+30) Compiler 3.94user-s ± 3% 3.92user-s ± 1% ~ (p=0.185 n=30+28) Flate 165user-ms ± 2% 165user-ms ± 4% ~ (p=0.780 n=27+29) GoParser 209user-ms ± 2% 208user-ms ± 3% ~ (p=0.453 n=28+30) Reflect 533user-ms ± 6% 526user-ms ± 3% ~ (p=0.057 n=30+30) Tar 156user-ms ± 6% 154user-ms ± 6% ~ (p=0.133 n=29+30) XML 288user-ms ± 4% 288user-ms ± 4% ~ (p=0.633 n=30+30) name old alloc/op new alloc/op delta Template 41.0MB ± 0% 40.9MB ± 0% -0.11% (p=0.000 n=29+29) Unicode 32.6MB ± 0% 32.6MB ± 0% ~ (p=0.572 n=29+30) GoTypes 122MB ± 0% 122MB ± 0% -0.10% (p=0.000 n=30+30) Compiler 482MB ± 0% 481MB ± 0% -0.07% (p=0.000 n=30+29) Flate 26.6MB ± 0% 26.6MB ± 0% ~ (p=0.096 n=30+30) GoParser 32.7MB ± 0% 32.6MB ± 0% -0.06% (p=0.011 n=28+28) Reflect 84.2MB ± 0% 84.1MB ± 0% -0.17% (p=0.000 n=29+30) Tar 27.7MB ± 0% 27.7MB ± 0% -0.05% (p=0.032 n=27+28) XML 44.7MB ± 0% 44.7MB ± 0% ~ (p=0.131 n=28+30) name old allocs/op new allocs/op delta Template 373k ± 1% 370k ± 1% -0.76% (p=0.000 n=30+30) Unicode 325k ± 1% 325k ± 1% ~ (p=0.383 n=29+30) GoTypes 1.16M ± 0% 1.15M ± 0% -0.75% (p=0.000 n=29+30) Compiler 4.15M ± 0% 4.13M ± 0% -0.59% (p=0.000 n=30+29) Flate 238k ± 1% 237k ± 1% -0.62% (p=0.000 n=30+30) GoParser 304k ± 1% 302k ± 1% -0.64% (p=0.000 n=30+28) Reflect 1.00M ± 0% 0.99M ± 0% -1.10% (p=0.000 n=29+30) Tar 245k ± 1% 244k ± 1% -0.59% (p=0.000 n=27+29) XML 391k ± 1% 389k ± 1% -0.59% (p=0.000 n=29+30) Change-Id: Id7f456d690567c2b0a96b0d6d64de8784b6e305f Reviewed-on: https://go-review.googlesource.com/36476 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org>
254 lines
13 KiB
Go
254 lines
13 KiB
Go
// AUTO-GENERATED by mkbuiltin.go; DO NOT EDIT
|
|
|
|
package gc
|
|
|
|
var runtimeDecls = [...]struct {
|
|
name string
|
|
tag int
|
|
typ int
|
|
}{
|
|
{"newobject", funcTag, 4},
|
|
{"panicindex", funcTag, 5},
|
|
{"panicslice", funcTag, 5},
|
|
{"panicdivide", funcTag, 5},
|
|
{"throwinit", funcTag, 5},
|
|
{"panicwrap", funcTag, 5},
|
|
{"gopanic", funcTag, 7},
|
|
{"gorecover", funcTag, 10},
|
|
{"goschedguarded", funcTag, 5},
|
|
{"printbool", funcTag, 12},
|
|
{"printfloat", funcTag, 14},
|
|
{"printint", funcTag, 16},
|
|
{"printhex", funcTag, 18},
|
|
{"printuint", funcTag, 18},
|
|
{"printcomplex", funcTag, 20},
|
|
{"printstring", funcTag, 22},
|
|
{"printpointer", funcTag, 23},
|
|
{"printiface", funcTag, 23},
|
|
{"printeface", funcTag, 23},
|
|
{"printslice", funcTag, 23},
|
|
{"printnl", funcTag, 5},
|
|
{"printsp", funcTag, 5},
|
|
{"printlock", funcTag, 5},
|
|
{"printunlock", funcTag, 5},
|
|
{"concatstring2", funcTag, 26},
|
|
{"concatstring3", funcTag, 27},
|
|
{"concatstring4", funcTag, 28},
|
|
{"concatstring5", funcTag, 29},
|
|
{"concatstrings", funcTag, 31},
|
|
{"cmpstring", funcTag, 33},
|
|
{"eqstring", funcTag, 34},
|
|
{"intstring", funcTag, 37},
|
|
{"slicebytetostring", funcTag, 39},
|
|
{"slicebytetostringtmp", funcTag, 40},
|
|
{"slicerunetostring", funcTag, 43},
|
|
{"stringtoslicebyte", funcTag, 44},
|
|
{"stringtoslicerune", funcTag, 47},
|
|
{"decoderune", funcTag, 48},
|
|
{"slicecopy", funcTag, 50},
|
|
{"slicestringcopy", funcTag, 51},
|
|
{"convI2I", funcTag, 52},
|
|
{"convT2E", funcTag, 53},
|
|
{"convT2E16", funcTag, 53},
|
|
{"convT2E32", funcTag, 53},
|
|
{"convT2E64", funcTag, 53},
|
|
{"convT2Estring", funcTag, 53},
|
|
{"convT2Eslice", funcTag, 53},
|
|
{"convT2Enoptr", funcTag, 53},
|
|
{"convT2I", funcTag, 53},
|
|
{"convT2I16", funcTag, 53},
|
|
{"convT2I32", funcTag, 53},
|
|
{"convT2I64", funcTag, 53},
|
|
{"convT2Istring", funcTag, 53},
|
|
{"convT2Islice", funcTag, 53},
|
|
{"convT2Inoptr", funcTag, 53},
|
|
{"assertE2I", funcTag, 52},
|
|
{"assertE2I2", funcTag, 54},
|
|
{"assertI2I", funcTag, 52},
|
|
{"assertI2I2", funcTag, 54},
|
|
{"panicdottypeE", funcTag, 55},
|
|
{"panicdottypeI", funcTag, 55},
|
|
{"panicnildottype", funcTag, 56},
|
|
{"ifaceeq", funcTag, 57},
|
|
{"efaceeq", funcTag, 57},
|
|
{"makemap", funcTag, 59},
|
|
{"mapaccess1", funcTag, 60},
|
|
{"mapaccess1_fast32", funcTag, 61},
|
|
{"mapaccess1_fast64", funcTag, 61},
|
|
{"mapaccess1_faststr", funcTag, 61},
|
|
{"mapaccess1_fat", funcTag, 62},
|
|
{"mapaccess2", funcTag, 63},
|
|
{"mapaccess2_fast32", funcTag, 64},
|
|
{"mapaccess2_fast64", funcTag, 64},
|
|
{"mapaccess2_faststr", funcTag, 64},
|
|
{"mapaccess2_fat", funcTag, 65},
|
|
{"mapassign", funcTag, 60},
|
|
{"mapiterinit", funcTag, 66},
|
|
{"mapdelete", funcTag, 66},
|
|
{"mapiternext", funcTag, 67},
|
|
{"makechan", funcTag, 69},
|
|
{"chanrecv1", funcTag, 71},
|
|
{"chanrecv2", funcTag, 72},
|
|
{"chansend1", funcTag, 74},
|
|
{"closechan", funcTag, 23},
|
|
{"writeBarrier", varTag, 76},
|
|
{"writebarrierptr", funcTag, 77},
|
|
{"typedmemmove", funcTag, 78},
|
|
{"typedmemclr", funcTag, 79},
|
|
{"typedslicecopy", funcTag, 80},
|
|
{"selectnbsend", funcTag, 81},
|
|
{"selectnbrecv", funcTag, 82},
|
|
{"selectnbrecv2", funcTag, 84},
|
|
{"newselect", funcTag, 85},
|
|
{"selectsend", funcTag, 81},
|
|
{"selectrecv", funcTag, 72},
|
|
{"selectrecv2", funcTag, 86},
|
|
{"selectdefault", funcTag, 87},
|
|
{"selectgo", funcTag, 56},
|
|
{"block", funcTag, 5},
|
|
{"makeslice", funcTag, 89},
|
|
{"makeslice64", funcTag, 90},
|
|
{"growslice", funcTag, 91},
|
|
{"memmove", funcTag, 92},
|
|
{"memclrNoHeapPointers", funcTag, 94},
|
|
{"memclrHasPointers", funcTag, 94},
|
|
{"memequal", funcTag, 95},
|
|
{"memequal8", funcTag, 96},
|
|
{"memequal16", funcTag, 96},
|
|
{"memequal32", funcTag, 96},
|
|
{"memequal64", funcTag, 96},
|
|
{"memequal128", funcTag, 96},
|
|
{"int64div", funcTag, 97},
|
|
{"uint64div", funcTag, 98},
|
|
{"int64mod", funcTag, 97},
|
|
{"uint64mod", funcTag, 98},
|
|
{"float64toint64", funcTag, 99},
|
|
{"float64touint64", funcTag, 100},
|
|
{"float64touint32", funcTag, 102},
|
|
{"int64tofloat64", funcTag, 103},
|
|
{"uint64tofloat64", funcTag, 104},
|
|
{"uint32tofloat64", funcTag, 105},
|
|
{"complex128div", funcTag, 106},
|
|
{"racefuncenter", funcTag, 107},
|
|
{"racefuncexit", funcTag, 5},
|
|
{"raceread", funcTag, 107},
|
|
{"racewrite", funcTag, 107},
|
|
{"racereadrange", funcTag, 108},
|
|
{"racewriterange", funcTag, 108},
|
|
{"msanread", funcTag, 108},
|
|
{"msanwrite", funcTag, 108},
|
|
}
|
|
|
|
func runtimeTypes() []*Type {
|
|
var typs [109]*Type
|
|
typs[0] = bytetype
|
|
typs[1] = typPtr(typs[0])
|
|
typs[2] = Types[TANY]
|
|
typs[3] = typPtr(typs[2])
|
|
typs[4] = functype(nil, []*Node{anonfield(typs[1])}, []*Node{anonfield(typs[3])})
|
|
typs[5] = functype(nil, nil, nil)
|
|
typs[6] = Types[TINTER]
|
|
typs[7] = functype(nil, []*Node{anonfield(typs[6])}, nil)
|
|
typs[8] = Types[TINT32]
|
|
typs[9] = typPtr(typs[8])
|
|
typs[10] = functype(nil, []*Node{anonfield(typs[9])}, []*Node{anonfield(typs[6])})
|
|
typs[11] = Types[TBOOL]
|
|
typs[12] = functype(nil, []*Node{anonfield(typs[11])}, nil)
|
|
typs[13] = Types[TFLOAT64]
|
|
typs[14] = functype(nil, []*Node{anonfield(typs[13])}, nil)
|
|
typs[15] = Types[TINT64]
|
|
typs[16] = functype(nil, []*Node{anonfield(typs[15])}, nil)
|
|
typs[17] = Types[TUINT64]
|
|
typs[18] = functype(nil, []*Node{anonfield(typs[17])}, nil)
|
|
typs[19] = Types[TCOMPLEX128]
|
|
typs[20] = functype(nil, []*Node{anonfield(typs[19])}, nil)
|
|
typs[21] = Types[TSTRING]
|
|
typs[22] = functype(nil, []*Node{anonfield(typs[21])}, nil)
|
|
typs[23] = functype(nil, []*Node{anonfield(typs[2])}, nil)
|
|
typs[24] = typArray(typs[0], 32)
|
|
typs[25] = typPtr(typs[24])
|
|
typs[26] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[21]), anonfield(typs[21])}, []*Node{anonfield(typs[21])})
|
|
typs[27] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[21]), anonfield(typs[21]), anonfield(typs[21])}, []*Node{anonfield(typs[21])})
|
|
typs[28] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[21]), anonfield(typs[21]), anonfield(typs[21]), anonfield(typs[21])}, []*Node{anonfield(typs[21])})
|
|
typs[29] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[21]), anonfield(typs[21]), anonfield(typs[21]), anonfield(typs[21]), anonfield(typs[21])}, []*Node{anonfield(typs[21])})
|
|
typs[30] = typSlice(typs[21])
|
|
typs[31] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[30])}, []*Node{anonfield(typs[21])})
|
|
typs[32] = Types[TINT]
|
|
typs[33] = functype(nil, []*Node{anonfield(typs[21]), anonfield(typs[21])}, []*Node{anonfield(typs[32])})
|
|
typs[34] = functype(nil, []*Node{anonfield(typs[21]), anonfield(typs[21])}, []*Node{anonfield(typs[11])})
|
|
typs[35] = typArray(typs[0], 4)
|
|
typs[36] = typPtr(typs[35])
|
|
typs[37] = functype(nil, []*Node{anonfield(typs[36]), anonfield(typs[15])}, []*Node{anonfield(typs[21])})
|
|
typs[38] = typSlice(typs[0])
|
|
typs[39] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[38])}, []*Node{anonfield(typs[21])})
|
|
typs[40] = functype(nil, []*Node{anonfield(typs[38])}, []*Node{anonfield(typs[21])})
|
|
typs[41] = runetype
|
|
typs[42] = typSlice(typs[41])
|
|
typs[43] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[42])}, []*Node{anonfield(typs[21])})
|
|
typs[44] = functype(nil, []*Node{anonfield(typs[25]), anonfield(typs[21])}, []*Node{anonfield(typs[38])})
|
|
typs[45] = typArray(typs[41], 32)
|
|
typs[46] = typPtr(typs[45])
|
|
typs[47] = functype(nil, []*Node{anonfield(typs[46]), anonfield(typs[21])}, []*Node{anonfield(typs[42])})
|
|
typs[48] = functype(nil, []*Node{anonfield(typs[21]), anonfield(typs[32])}, []*Node{anonfield(typs[41]), anonfield(typs[32])})
|
|
typs[49] = Types[TUINTPTR]
|
|
typs[50] = functype(nil, []*Node{anonfield(typs[2]), anonfield(typs[2]), anonfield(typs[49])}, []*Node{anonfield(typs[32])})
|
|
typs[51] = functype(nil, []*Node{anonfield(typs[2]), anonfield(typs[2])}, []*Node{anonfield(typs[32])})
|
|
typs[52] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[2])}, []*Node{anonfield(typs[2])})
|
|
typs[53] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[3])}, []*Node{anonfield(typs[2])})
|
|
typs[54] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[2])}, []*Node{anonfield(typs[2]), anonfield(typs[11])})
|
|
typs[55] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[1]), anonfield(typs[1])}, nil)
|
|
typs[56] = functype(nil, []*Node{anonfield(typs[1])}, nil)
|
|
typs[57] = functype(nil, []*Node{anonfield(typs[2]), anonfield(typs[2])}, []*Node{anonfield(typs[11])})
|
|
typs[58] = typMap(typs[2], typs[2])
|
|
typs[59] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[15]), anonfield(typs[3]), anonfield(typs[3])}, []*Node{anonfield(typs[58])})
|
|
typs[60] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[58]), anonfield(typs[3])}, []*Node{anonfield(typs[3])})
|
|
typs[61] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[58]), anonfield(typs[2])}, []*Node{anonfield(typs[3])})
|
|
typs[62] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[58]), anonfield(typs[3]), anonfield(typs[1])}, []*Node{anonfield(typs[3])})
|
|
typs[63] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[58]), anonfield(typs[3])}, []*Node{anonfield(typs[3]), anonfield(typs[11])})
|
|
typs[64] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[58]), anonfield(typs[2])}, []*Node{anonfield(typs[3]), anonfield(typs[11])})
|
|
typs[65] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[58]), anonfield(typs[3]), anonfield(typs[1])}, []*Node{anonfield(typs[3]), anonfield(typs[11])})
|
|
typs[66] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[58]), anonfield(typs[3])}, nil)
|
|
typs[67] = functype(nil, []*Node{anonfield(typs[3])}, nil)
|
|
typs[68] = typChan(typs[2], Cboth)
|
|
typs[69] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[15])}, []*Node{anonfield(typs[68])})
|
|
typs[70] = typChan(typs[2], Crecv)
|
|
typs[71] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[70]), anonfield(typs[3])}, nil)
|
|
typs[72] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[70]), anonfield(typs[3])}, []*Node{anonfield(typs[11])})
|
|
typs[73] = typChan(typs[2], Csend)
|
|
typs[74] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[73]), anonfield(typs[3])}, nil)
|
|
typs[75] = typArray(typs[0], 3)
|
|
typs[76] = tostruct([]*Node{namedfield("enabled", typs[11]), namedfield("pad", typs[75]), namedfield("needed", typs[11]), namedfield("cgo", typs[11]), namedfield("alignme", typs[17])})
|
|
typs[77] = functype(nil, []*Node{anonfield(typs[3]), anonfield(typs[2])}, nil)
|
|
typs[78] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[3]), anonfield(typs[3])}, nil)
|
|
typs[79] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[3])}, nil)
|
|
typs[80] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[2]), anonfield(typs[2])}, []*Node{anonfield(typs[32])})
|
|
typs[81] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[73]), anonfield(typs[3])}, []*Node{anonfield(typs[11])})
|
|
typs[82] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[3]), anonfield(typs[70])}, []*Node{anonfield(typs[11])})
|
|
typs[83] = typPtr(typs[11])
|
|
typs[84] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[3]), anonfield(typs[83]), anonfield(typs[70])}, []*Node{anonfield(typs[11])})
|
|
typs[85] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[15]), anonfield(typs[8])}, nil)
|
|
typs[86] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[70]), anonfield(typs[3]), anonfield(typs[83])}, []*Node{anonfield(typs[11])})
|
|
typs[87] = functype(nil, []*Node{anonfield(typs[1])}, []*Node{anonfield(typs[11])})
|
|
typs[88] = typSlice(typs[2])
|
|
typs[89] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[32]), anonfield(typs[32])}, []*Node{anonfield(typs[88])})
|
|
typs[90] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[15]), anonfield(typs[15])}, []*Node{anonfield(typs[88])})
|
|
typs[91] = functype(nil, []*Node{anonfield(typs[1]), anonfield(typs[88]), anonfield(typs[32])}, []*Node{anonfield(typs[88])})
|
|
typs[92] = functype(nil, []*Node{anonfield(typs[3]), anonfield(typs[3]), anonfield(typs[49])}, nil)
|
|
typs[93] = Types[TUNSAFEPTR]
|
|
typs[94] = functype(nil, []*Node{anonfield(typs[93]), anonfield(typs[49])}, nil)
|
|
typs[95] = functype(nil, []*Node{anonfield(typs[3]), anonfield(typs[3]), anonfield(typs[49])}, []*Node{anonfield(typs[11])})
|
|
typs[96] = functype(nil, []*Node{anonfield(typs[3]), anonfield(typs[3])}, []*Node{anonfield(typs[11])})
|
|
typs[97] = functype(nil, []*Node{anonfield(typs[15]), anonfield(typs[15])}, []*Node{anonfield(typs[15])})
|
|
typs[98] = functype(nil, []*Node{anonfield(typs[17]), anonfield(typs[17])}, []*Node{anonfield(typs[17])})
|
|
typs[99] = functype(nil, []*Node{anonfield(typs[13])}, []*Node{anonfield(typs[15])})
|
|
typs[100] = functype(nil, []*Node{anonfield(typs[13])}, []*Node{anonfield(typs[17])})
|
|
typs[101] = Types[TUINT32]
|
|
typs[102] = functype(nil, []*Node{anonfield(typs[13])}, []*Node{anonfield(typs[101])})
|
|
typs[103] = functype(nil, []*Node{anonfield(typs[15])}, []*Node{anonfield(typs[13])})
|
|
typs[104] = functype(nil, []*Node{anonfield(typs[17])}, []*Node{anonfield(typs[13])})
|
|
typs[105] = functype(nil, []*Node{anonfield(typs[101])}, []*Node{anonfield(typs[13])})
|
|
typs[106] = functype(nil, []*Node{anonfield(typs[19]), anonfield(typs[19])}, []*Node{anonfield(typs[19])})
|
|
typs[107] = functype(nil, []*Node{anonfield(typs[49])}, nil)
|
|
typs[108] = functype(nil, []*Node{anonfield(typs[49]), anonfield(typs[49])}, nil)
|
|
return typs[:]
|
|
}
|