Print this page


Split Close
Expand all
Collapse all
          --- old/src/share/vm/runtime/arguments.cpp
          +++ new/src/share/vm/runtime/arguments.cpp
↓ open down ↓ 3167 lines elided ↑ open up ↑
3168 3168    if (!EliminateLocks) {
3169 3169      EliminateNestedLocks = false;
3170 3170    }
3171 3171  #endif
3172 3172  
3173 3173    if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
3174 3174      warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
3175 3175      DebugNonSafepoints = true;
3176 3176    }
3177 3177  
3178      -#ifndef PRODUCT
3179      -  if (CompileTheWorld) {
3180      -    // Force NmethodSweeper to sweep whole CodeCache each time.
3181      -    if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
3182      -      NmethodSweepFraction = 1;
3183      -    }
3184      -  }
3185      -#endif
3186      -
3187 3178    if (PrintCommandLineFlags) {
3188 3179      CommandLineFlags::printSetFlags(tty);
3189 3180    }
3190 3181  
3191 3182    // Apply CPU specific policy for the BiasedLocking
3192 3183    if (UseBiasedLocking) {
3193 3184      if (!VM_Version::use_biased_locking() &&
3194 3185          !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
3195 3186        UseBiasedLocking = false;
3196 3187      }
↓ open down ↓ 189 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX