|
| 1 | +// Copyright 2023 The Go Authors. All rights reserved. |
| 2 | +// Use of this source code is governed by a BSD-style |
| 3 | +// license that can be found in the LICENSE file. |
| 4 | + |
| 5 | +// Tests a G being created from within a syscall. |
| 6 | +// |
| 7 | +// Specifically, it tests a scenerio wherein a C |
| 8 | +// thread is calling into Go, creating a goroutine in |
| 9 | +// a syscall (in the tracer's model). Because the actual |
| 10 | +// m can be reused, it's possible for that m to have never |
| 11 | +// had its P (in _Psyscall) stolen. |
| 12 | +// |
| 13 | +// This is a regression test. The trace parser once required |
| 14 | +// GoCreateSyscall to not have a P, but it can in the scenario |
| 15 | +// described above. |
| 16 | + |
| 17 | +package main |
| 18 | + |
| 19 | +import ( |
| 20 | + "internal/trace/v2" |
| 21 | + "internal/trace/v2/event/go122" |
| 22 | + testgen "internal/trace/v2/internal/testgen/go122" |
| 23 | +) |
| 24 | + |
| 25 | +func main() { |
| 26 | + testgen.Main(gen) |
| 27 | +} |
| 28 | + |
| 29 | +func gen(t *testgen.Trace) { |
| 30 | + t.DisableTimestamps() |
| 31 | + |
| 32 | + g := t.Generation(1) |
| 33 | + |
| 34 | + // A C thread calls into Go and acquires a P. It returns |
| 35 | + // back to C, destroying the G. It then comes back to Go |
| 36 | + // on the same thread and again returns to C. |
| 37 | + // |
| 38 | + // Note: on pthread platforms this can't happen on the |
| 39 | + // same thread because the m is stashed in TLS between |
| 40 | + // calls into Go, until the thread dies. This is still |
| 41 | + // possible on other platforms, however. |
| 42 | + b0 := g.Batch(trace.ThreadID(0), 0) |
| 43 | + b0.Event("GoCreateSyscall", trace.GoID(4)) |
| 44 | + b0.Event("ProcStatus", trace.ProcID(0), go122.ProcIdle) |
| 45 | + b0.Event("ProcStart", trace.ProcID(0), testgen.Seq(1)) |
| 46 | + b0.Event("GoSyscallEndBlocked") |
| 47 | + b0.Event("GoStart", trace.GoID(4), testgen.Seq(1)) |
| 48 | + b0.Event("GoSyscallBegin", testgen.Seq(2), testgen.NoStack) |
| 49 | + b0.Event("GoDestroySyscall") |
| 50 | + b0.Event("GoCreateSyscall", trace.GoID(4)) |
| 51 | + b0.Event("GoSyscallEnd") |
| 52 | + b0.Event("GoSyscallBegin", testgen.Seq(3), testgen.NoStack) |
| 53 | + b0.Event("GoDestroySyscall") |
| 54 | +} |
0 commit comments