Object.hashcode() is a native method.
public native int hashCode();
That means it's implemented in platform specific code and is exposed as a native method.
code for the same will be a compiled code and not available withing JDK
this existing question might provide more info.