src/share/vm/runtime/arguments.cpp

changeset 2606
0ac769a57c64
parent 2550
f77b3ec064b0
child 2607
8c9c9ee30d71
equal deleted inserted replaced
2605:bc6b27fb3568 2606:0ac769a57c64
2788 TieredCompilation = false; 2788 TieredCompilation = false;
2789 #else 2789 #else
2790 if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) { 2790 if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
2791 FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1); 2791 FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
2792 } 2792 }
2793 // Temporary disable bulk zeroing reduction with G1. See CR 6627983.
2794 if (UseG1GC) {
2795 FLAG_SET_DEFAULT(ReduceBulkZeroing, false);
2796 }
2797 #endif 2793 #endif
2798 2794
2799 // If we are running in a headless jre, force java.awt.headless property 2795 // If we are running in a headless jre, force java.awt.headless property
2800 // to be true unless the property has already been set. 2796 // to be true unless the property has already been set.
2801 // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state. 2797 // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.

mercurial