]> Cypherpunks.ru repositories - gostls13.git/commit
runtime: add scavtrace debug flag and remove scavenge info from gctrace
authorMichael Anthony Knyszek <mknyszek@google.com>
Fri, 27 Dec 2019 16:48:23 +0000 (16:48 +0000)
committerMichael Knyszek <mknyszek@google.com>
Thu, 9 Jan 2020 18:00:06 +0000 (18:00 +0000)
commit8ac98e7b3fcadc497c4ca7d8637ba9578e8159be
tree7590cfe506165a3232b6457afef41073f75f347d
parent509592d188f6a30bb65b27a24f4c6f68716ea063
runtime: add scavtrace debug flag and remove scavenge info from gctrace

Currently, scavenging information is printed if the gctrace debug
variable is >0. Scavenging information is also printed naively, for
every page scavenged, resulting in a lot of noise when the typical
expectation for GC trace is one line per GC.

This change adds a new GODEBUG flag called scavtrace which prints
scavenge information roughly once per GC cycle and removes any scavenge
information from gctrace. The exception is debug.FreeOSMemory, which may
force an additional line to be printed.

Fixes #32952.

Change-Id: I4177dcb85fe3f9653fd74297ea93c97c389c1811
Reviewed-on: https://go-review.googlesource.com/c/go/+/212640
Run-TryBot: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/runtime/extern.go
src/runtime/mgcscavenge.go
src/runtime/mheap.go
src/runtime/mpagealloc.go
src/runtime/runtime1.go