amd64 icon indicating copy to clipboard operation
amd64 copied to clipboard

stack maps?

Open cosmos72 opened this issue 6 years ago • 1 comments

I remember reading that Go functions must provide a stack map, to inform the garbage collector on which stack locations contain pointers.

Does the Assembler.MakeFunc() create a stack map for functions?

I guess generating a reduced stack map only for input and output parameters would still be quite useful.

cosmos72 avatar Mar 15 '18 16:03 cosmos72

https://github.com/golang/go/issues/20123

  • yes, no stackmap
  • no morestack
  • call other function

all these things needs to be added

taowen avatar Mar 17 '18 13:03 taowen