mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/{asm,compile,internal/obj}: add "maymorestack" support
This adds a debugging hook for optionally calling a "maymorestack" function in the prologue of any function that might call morestack (whether it does at run time or not). The maymorestack function will let us improve lock checking and add debugging modes that stress function preemption and stack growth. Passes toolstash-check -all (except on js/wasm, where toolstash appears to be broken) Fixes #48297. Change-Id: I27197947482b329af75dafb9971fc0d3a52eaf31 Reviewed-on: https://go-review.googlesource.com/c/go/+/359795 Trust: Austin Clements <austin@google.com> Run-TryBot: Austin Clements <austin@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
This commit is contained in:
parent
1c4cfd8010
commit
3839b60014
14 changed files with 620 additions and 46 deletions
|
|
@ -880,7 +880,8 @@ type Link struct {
|
|||
Flag_linkshared bool
|
||||
Flag_optimize bool
|
||||
Flag_locationlists bool
|
||||
Retpoline bool // emit use of retpoline stubs for indirect jmp/call
|
||||
Retpoline bool // emit use of retpoline stubs for indirect jmp/call
|
||||
Flag_maymorestack string // If not "", call this function before stack checks
|
||||
Bso *bufio.Writer
|
||||
Pathname string
|
||||
Pkgpath string // the current package's import path, "" if unknown
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue