comparison src/share/vm/runtime/arguments.cpp @ 20237:99dbb9cd9521

8046715: Add a way to verify an extended set of command line options Summary: Added arguments_ext.cpp to make place for initialization of extended features Reviewed-by: sla, mgronlun
author jwilhelm
date Mon, 28 Jul 2014 20:47:56 +0200
parents d15367d92f0d
children bcd72ab4d91f
comparison
equal deleted inserted replaced
20236:6e1f418b39c3 20237:99dbb9cd9521
2385 2385
2386 if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) { 2386 if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) {
2387 warning("The VM option CICompilerCountPerCPU overrides CICompilerCount."); 2387 warning("The VM option CICompilerCountPerCPU overrides CICompilerCount.");
2388 } 2388 }
2389 2389
2390 status &= check_vm_args_consistency_ext();
2391
2390 return status; 2392 return status;
2391 } 2393 }
2392 2394
2393 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore, 2395 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
2394 const char* option_type) { 2396 const char* option_type) {