The main difference in AdoptOpenJDK I found is that you can choose from 2 different VM implementations, either the HotSpot which I found has similar slow performance than Oracle's implementation or the much more efficient Eclipse Open J9 jvm implementation which is based on former IBM SDK 8 which is now open sourced.
To confirm I have an Eclipse Maven project which compiles slow in Oracle's JVM implementation.
- AdoptOpenJDK Eclipse Open J9 - 1 minute
- IBM SDK 8 (commercial license) - 1 minute
- AdoptOpenJDK OpenJDK8 with HotSpot - 7 minutes
- Oracle Java HotSpot(TM) (build 1.8.0_181-b13) - 11 minutes
So I think open sourcing Oracle's JVM gave some better results than Oracle's commercial JVM, however open sourcing IBM's JDK with Open J9 is much better and performance is 1 order of magnitude faster in compilation time (for my project).