Re: Go patch committed: Enable escape analysis for runtime

2018-01-18 Thread Ian Lance Taylor
On Thu, Jan 18, 2018 at 11:53 AM, Rainer Orth wrote: > >> This patch to the Go frontend by Cherry Zhang enables escape analysis >> for the runtime package in the Go frontend. The runtime package was >> hard-coded non-escape, and the escape analysis was not run for the >> runtime package. This pa

Re: Go patch committed: Enable escape analysis for runtime

2018-01-18 Thread Rainer Orth
Hi Ian, > This patch to the Go frontend by Cherry Zhang enables escape analysis > for the runtime package in the Go frontend. The runtime package was > hard-coded non-escape, and the escape analysis was not run for the > runtime package. This patch removes the hard-code, and lets the > escape an

Go patch committed: Enable escape analysis for runtime

2018-01-17 Thread Ian Lance Taylor
This patch to the Go frontend by Cherry Zhang enables escape analysis for the runtime package in the Go frontend. The runtime package was hard-coded non-escape, and the escape analysis was not run for the runtime package. This patch removes the hard-code, and lets the escape analysis decide. It