diff options
| author | David Chase <drchase@google.com> | 2016-11-10 16:03:47 -0500 |
|---|---|---|
| committer | David Chase <drchase@google.com> | 2017-01-09 21:01:29 +0000 |
| commit | 7f1ff65c3947b916cc4d0827fd8c1307d7efd7bf (patch) | |
| tree | a9b8ff06dd46b39671df2649f42d5b3f8551bafa /src/runtime/proc.go | |
| parent | f412bd31ce1859ea1dd0d46ec1b130c44b480115 (diff) | |
| download | go-7f1ff65c3947b916cc4d0827fd8c1307d7efd7bf.tar.xz | |
cmd/compile: insert scheduling checks on loop backedges
Loop breaking with a counter. Benchmarked (see comments),
eyeball checked for sanity on popular loops. This code
ought to handle loops in general, and properly inserts phi
functions in cases where the earlier version might not have.
Includes test, plus modifications to test/run.go to deal with
timeout and killing looping test. Tests broken by the addition
of extra code (branch frequency and live vars) for added
checks turn the check insertion off.
If GOEXPERIMENT=preemptibleloops, the compiler inserts reschedule
checks on every backedge of every reducible loop. Alternately,
specifying GO_GCFLAGS=-d=ssa/insert_resched_checks/on will
enable it for a single compilation, but because the core Go
libraries contain some loops that may run long, this is less
likely to have the desired effect.
This is intended as a tool to help in the study and diagnosis
of GC and other latency problems, now that goal STW GC latency
is on the order of 100 microseconds or less.
Updates #17831.
Updates #10958.
Change-Id: I6206c163a5b0248e3f21eb4fc65f73a179e1f639
Reviewed-on: https://go-review.googlesource.com/33910
Run-TryBot: David Chase <drchase@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
Diffstat (limited to 'src/runtime/proc.go')
| -rw-r--r-- | src/runtime/proc.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/runtime/proc.go b/src/runtime/proc.go index 756ce63c24..f41672de73 100644 --- a/src/runtime/proc.go +++ b/src/runtime/proc.go @@ -240,6 +240,16 @@ func Gosched() { mcall(gosched_m) } +var alwaysFalse bool + +// goschedguarded does nothing, but is written in a way that guarantees a preemption check in its prologue. +// Calls to this function are inserted by the compiler in otherwise uninterruptible loops (see insertLoopReschedChecks). +func goschedguarded() { + if alwaysFalse { + goschedguarded() + } +} + // Puts the current goroutine into a waiting state and calls unlockf. // If unlockf returns false, the goroutine is resumed. // unlockf must not access this G's stack, as it may be moved between |
