@@ -149,25 +149,23 @@ reflect: ignore struct tags when converting structs (CL 30191)
149
149
runtime, runtime/cgo: revert CL 18814; don't drop signal stack in new thread on dragonfly (CL 29971)
150
150
runtime/race: don't crash on invalid PCs (CL 29714)
151
151
runtime: assume 64kB physical pages on ARM (CL 25021)
152
- runtime: bound scanobject to ~100 µs (CL 23540)
153
- runtime: document MemStats (CL 28972)
154
152
runtime: don't call cgocallback from signal handler (CL 30218)
155
- runtime: don't hard-code physical page size (CL 25022)
156
153
runtime: fetch physical page size from the OS (CL 25050)
157
154
runtime: fix check for vacuous page boundary rounding (CL 27230)
158
155
runtime: fix map iterator concurrent map check (CL 24749)
159
156
runtime: fix newextram PC passed to race detector (CL 29712)
160
157
runtime: limit the number of map overflow buckets (CL 25049)
161
158
runtime: report GCSys and OtherSys in heap profile (CL 29276)
162
159
runtime: sleep on CLOCK_MONOTONIC in futexsleep1 on freebsd (CL 30154)
160
+ runtime: use correct system page size on all arches (CL 25022)
163
161
runtime: use RtlGenRandom instead of CryptGenRandom (CL 29700)
164
162
sort: add Slice, SliceStable, and SliceIsSorted (CL 27321)
165
163
spec: ignore struct tags when converting structs (CL 24190)
166
164
spec: update language on type switches to match implementations (CL 27356)
167
165
strings, bytes: panic if Repeat overflows or if given a negative count (CL 29954)
168
166
syscall: add bounds checking and error returns to ParseNetlinkMessage (CL 26990)
169
167
syscall: fix Send{msg,msgN}, Recvmsg and control message handling on solaris (CL 30171)
170
- syscall: make Getpagesize return page size from runtime (CL 25051)
168
+ syscall: make Getpagesize return system-reported page size (CL 25051)
171
169
syscall: validate ParseDirent inputs (CL 23780)
172
170
testing: add Name method to *T and *B (CL 29970)
173
171
testing: respect benchtime on very fast benchmarks (CL 26664)
@@ -225,9 +223,12 @@ math/big: use array instead of slice for deBruijn lookups (CL 26663)
225
223
math: speed up bessel functions on AMD64 (CL 28086)
226
224
reflect: avoid zeroing memory that will be overwritten (CL 28011)
227
225
regexp: reduce mallocs in Regexp.Find* and Regexp.ReplaceAll* (CL 23030)
226
+ runtime: cgo calls are about 100ns faster (CL 29656, CL 30080)
227
+ runtime: defer is now 2X faster (CL 29656)
228
228
runtime: implement getcallersp in Go (CL 29655)
229
229
runtime: improve memmove for amd64 (CL 22515, CL 29590)
230
230
runtime: increase malloc size classes (CL 24493)
231
+ runtime: large objects no longer cause significant goroutine pauses (CL 23540)
231
232
runtime: make append only clear uncopied memory (CL 30192)
232
233
runtime: memclr perf improvements on ppc64x (CL 30373)
233
234
runtime: minor string/rune optimizations (CL 27460)
@@ -241,3 +242,7 @@ strings: use AVX2 for Index if available (CL 22551)
241
242
syscall: avoid convT2I allocs for common Windows error values (CL 28484, CL 28990)
242
243
text/template: improve lexer performance in finding left delimiters (CL 24863)
243
244
unicode/utf8: reduce bounds checks in EncodeRune (CL 28492)
245
+
246
+ Documentation:
247
+
248
+ runtime: runtime.MemStats has much more detailed documentation (CL 28972)
0 commit comments