I’d like to compare performance of an application across multiple SSE versions and have been unable to find the values that are accepted by this JVM flag. I’m testing 0, 1, 3, and 4. I’m most unsure about if 4 is accepted (all examples I’ve seen are up to 3) and/or if it’s variations (4.1-4.3) can be explicitly defined. Does anyone have any further info on this?
I’d like to compare performance of an application across multiple SSE versions and have
Share
Use the source 😉
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/file/39d920531a4d/src/cpu/x86/vm/vm_version_x86.cpp#l464
Note that proves the JVM is aware to some extent about SSE, it might not generate really effective codes for newer versions. Your mileage may vary.