I've got two questions regarding instrinsics for JVM targets:
1. Is there a way to get rid of all usages of
kotlin/jvm/Intrinsics
? `-Xno-call-assertions -Xno-param-assertions -Xno-receiver-assertions `do not cover checks on casts and equality check intrinsics in some places.
2. Has there been any consideration or is it already possible to tell the compiler to use intrinsics that work without the stdlib -
I guess you could try a simple bytecode transform to replace intrinsic null checks with Objects.requireNonNull? I don't know of any existing conversation around that