mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: keep pointer input arguments live throughout function
Introduce a KeepAlive op which makes sure that its argument is kept live until the KeepAlive. Use KeepAlive to mark pointer input arguments as live after each function call and at each return. We do this change only for pointer arguments. Those are the critical ones to handle because they might have finalizers. Doing compound arguments (slices, structs, ...) is more complicated because we would need to track field liveness individually (we do that for auto variables now, but inputs requires extra trickery). Turn off the automatic marking of args as live. That way, when args are explicitly nulled, plive will know that the original argument is dead. The KeepAlive op will be the eventual implementation of runtime.KeepAlive. Fixes #15277 Change-Id: I5f223e65d99c9f8342c03fbb1512c4d363e903e5 Reviewed-on: https://go-review.googlesource.com/22365 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
parent
d52022676d
commit
3572c6418b
10 changed files with 145 additions and 34 deletions
|
|
@ -382,9 +382,9 @@ var genericOps = []opData{
|
|||
{name: "ComplexImag", argLength: 1}, // imag(arg0)
|
||||
|
||||
// Strings
|
||||
{name: "StringMake", argLength: 2}, // arg0=ptr, arg1=len
|
||||
{name: "StringPtr", argLength: 1}, // ptr(arg0)
|
||||
{name: "StringLen", argLength: 1}, // len(arg0)
|
||||
{name: "StringMake", argLength: 2}, // arg0=ptr, arg1=len
|
||||
{name: "StringPtr", argLength: 1, typ: "BytePtr"}, // ptr(arg0)
|
||||
{name: "StringLen", argLength: 1, typ: "Int"}, // len(arg0)
|
||||
|
||||
// Interfaces
|
||||
{name: "IMake", argLength: 2}, // arg0=itab, arg1=data
|
||||
|
|
@ -407,7 +407,7 @@ var genericOps = []opData{
|
|||
{name: "LoadReg", argLength: 1},
|
||||
|
||||
// Used during ssa construction. Like Copy, but the arg has not been specified yet.
|
||||
{name: "FwdRef"},
|
||||
{name: "FwdRef", aux: "Sym"},
|
||||
|
||||
// Unknown value. Used for Values whose values don't matter because they are dead code.
|
||||
{name: "Unknown"},
|
||||
|
|
@ -415,6 +415,7 @@ var genericOps = []opData{
|
|||
{name: "VarDef", argLength: 1, aux: "Sym", typ: "Mem"}, // aux is a *gc.Node of a variable that is about to be initialized. arg0=mem, returns mem
|
||||
{name: "VarKill", argLength: 1, aux: "Sym"}, // aux is a *gc.Node of a variable that is known to be dead. arg0=mem, returns mem
|
||||
{name: "VarLive", argLength: 1, aux: "Sym"}, // aux is a *gc.Node of a variable that must be kept live. arg0=mem, returns mem
|
||||
{name: "KeepAlive", argLength: 2, typ: "Mem"}, // arg[0] is a value that must be kept alive until this mark. arg[1]=mem, returns mem
|
||||
}
|
||||
|
||||
// kind control successors implicit exit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue