Status of IR vs. frontend PGO (fprofile-generate vs fprofile-instr-generate)

Basically what happened is that Chrome started using frontend PGO, and we found that binary patch updates were too large: https://crbug.com/1082307 I came across these Android docs mentioning IR PGO, and suggested we try that: https://source.android.com/devices/tech/perf/pgo Switching to IR PGO fixed the binary patch size issues and got better scores on Speedometer (1.17x improvement over non-PGO with IR PGO vs. 1.11x improvement with frontend PGO), so we never looked back. We consulted the Google optimization team folks, and they recommended we use IR PGO for performance. That’s where they are focusing all of their efforts.

Essentially, I’d like to figure out which mode is likely to be the best supported going forward, and document that.