When I call `fmt.Println(1,2) `, I expect all the interfaces of the 
arguments should alloc on stack so that the garbage collection part will 
use less cpu time, but currently it is alloc on heap.Because I found that I 
do not need that alloced valuable (interface{})(1) is not used after this 
function call.

Do you guys have any plan on improving those stuff?

Is this kind of problem too hard to be solved in linear time?

Or is there any plan that the developer of package "fmt" can add 
"//go:noescape" and "unsafe" to mark that all the interfaces of the 
arguments should alloc on stack?("//go:noescape" can only add to asm 
function right now.)

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to