Conditional on D54547: PTH-- Remove feature entirely-
The Entry pointer in IdentifierInfo was only null for IdentifierInfos
created from a PTH. Now that PTH support has been removed we can remove
some PTH specific code in IdentifierInfo::getLength and IdentifierInfo::getNameStart.
Also make the constructor of IdentifierInfo private to make sure that they
are only created by IdentifierTable, and move it to the header so that it
can be inlined in IdentifierTable::get and IdentifierTable::getOwn.
Instead of putting these in an initializer, can you default-init each of them inline, then make this =default?