I'm very curious regarding Java intrinsics methods. At the moment, there are only a few ways to find some method is intrinsic or not:
- Check Java sources
- Find
@HotSpotIntrinsicCandidate
annotation within JDK classes - Or use printed by @apangin list.
I was wondering - if there some official documentation with the explanation to every intrinsic and motivation for it?