Instrumentation based FDO is designed to work when the source files that are used to generate the instr binary match exactly with the sources in profile-use compile. It is known historically that using stale profile (due to source changes, not gcda format change) can lead to lots of mismatch warnings and even worse -- compiler ICEs. This is due to two reasons: 1) the profile lookup for each function is based on funcdef_no which can change when function definition order is changed or new functions are inserted in the middle of a source 2) the indirect call target id may change due to source changes: before GCC4.9, the id uses cgraph uid which is as bad as funcdef_no. Attributing wrong IC target to the indirect call site is the main cause of compiler ICE (we have signature match check, but bad target can leak through result in problem later). Starting from gcc49, the indirect target profiling uses profile_id which is stable for public functions. This patch introduces a new parameter for FDO to determine whether to use internal id or assembler name based external id for profile lookup. When the external id is used, GCC FDO will become very tolerant to simple source changes. Note that autoFDO solves this problem but it is currently limited to Intel platforms with LBR support. (Tested with SPEC, SPEC06 and large internal benchmarks. No performance impact). Ok for trunk? thanks, David