mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 13:07:36 +03:00
reflect: keep pointer in aggregate-typed args live in Call
When register ABI is used, reflect.Value.Call prepares the call arguments in a memory representation of the argument registers. It has special handling to keep the pointers in arguments live. Currently, this handles pointer-typed arguments. But when an argument is an aggregate-type that contains pointers and passed in registers, it currently doesn't keep the pointers live. Do so in this CL. May fix #49363. Change-Id: Ic6a0c5fdf9375ef02f7c03fbe9345e2e98c9353d Reviewed-on: https://go-review.googlesource.com/c/go/+/363358 Trust: Cherry Mui <cherryyz@google.com> Run-TryBot: Cherry Mui <cherryyz@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
3a904408e2
commit
197cfb4915
1 changed files with 18 additions and 0 deletions
18
abi/abi.go
18
abi/abi.go
|
@ -44,6 +44,24 @@ type RegArgs struct {
|
||||||
ReturnIsPtr IntArgRegBitmap
|
ReturnIsPtr IntArgRegBitmap
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *RegArgs) Dump() {
|
||||||
|
print("Ints:")
|
||||||
|
for _, x := range r.Ints {
|
||||||
|
print(" ", x)
|
||||||
|
}
|
||||||
|
println()
|
||||||
|
print("Floats:")
|
||||||
|
for _, x := range r.Floats {
|
||||||
|
print(" ", x)
|
||||||
|
}
|
||||||
|
println()
|
||||||
|
print("Ptrs:")
|
||||||
|
for _, x := range r.Ptrs {
|
||||||
|
print(" ", x)
|
||||||
|
}
|
||||||
|
println()
|
||||||
|
}
|
||||||
|
|
||||||
// IntRegArgAddr returns a pointer inside of r.Ints[reg] that is appropriately
|
// IntRegArgAddr returns a pointer inside of r.Ints[reg] that is appropriately
|
||||||
// offset for an argument of size argSize.
|
// offset for an argument of size argSize.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue