You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's good to avoid excessive []byte -> []byte copying due to the fact that assembler produces a non-executable code first and then it's copied to the destination mapped memory.
It can be easier to produce proper relocations. (Needs verification.)
We can just add a io.Writer argument to Link() method because of the API that codegen.Compiler provides (it asks to returns a [][]byte for compiler methods).
The text was updated successfully, but these errors were encountered:
We can just add a
io.Writer
argument toLink()
method because of the API thatcodegen.Compiler
provides (it asks to returns a[][]byte
for compiler methods).The text was updated successfully, but these errors were encountered: