Fei Gao
Fei Gao
``` // float[] a, float[] b, float[] c; for (int i = 0; i < a.length; i++) { c[i] = (a[i] > b[i]) ? a[i] : b[i]; } ``` After...
After JDK-8139340, JDK-8192846 and JDK-8289422, we can vectorize the case below by enabling -XX:+UseCMoveUnconditionally and -XX:+UseVectorCmov: ``` // double[] a, double[] b, double[] c; for (int i = 0; i...
On LP64 systems, if the heap can be moved into low virtual address space (below 4GB) and the heap size is smaller than the interesting threshold of 4 GB, we...