My hunch is that the 32-bit version includes a default implementation to revert to drivers written before the method was introduced. Since there has never been a 64-bit version of OSX that did not enable this method, they do not need to be provided with a backup. I saw similar patterns in other parts of IOKit for new methods that replace legacy methods. An obsolete method exists only in 32-bit mode and by default calls a new method. The new method is purely virtual in 64-bit mode.
source share