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
https://go.dev/cl/492436 implements the bare minimum of a PGO devirtualization implementation. There are still numerous limitations that we would like address shortly:
Callees not directly referenced in the current package can be missed (even if they are in the transitive dependences). https://go.dev/cl/497175
Only interface method calls are supported, not other indirect function calls.
https://go.dev/cl/492436 implements the bare minimum of a PGO devirtualization implementation. There are still numerous limitations that we would like address shortly:
cc @cherrymui @aclements