This hint instructs the linker to optimize an adrp+add+ldr sequence used
for loading from a local symbol's address by loading directly if it's
close enough, or to an adrp(p)+ldr sequence if it's not.
This transformation is the same as what's done int ADRP_LDR_GOT_LDR for
local symbols. The logic for acting on this hint is therefore moved to a
new function which will be called by the existing applyAdrpLdrGotLdr()
function.
Given that this is the most commonly used type: Any perf impact from making this function do slightly more work?