comparison src/share/vm/runtime/arguments.hpp @ 8883:b9a918201d47

Merge with hsx25
author Gilles Duboscq <duboscq@ssw.jku.at>
date Sat, 06 Apr 2013 20:04:06 +0200
parents 8d10fc6b4f6c 754c24457b20
children 6b0fd0964b87
comparison
equal deleted inserted replaced
8660:d47b52b0ff68 8883:b9a918201d47
312 // UseParallel[Old]GC 312 // UseParallel[Old]GC
313 static void set_parallel_gc_flags(); 313 static void set_parallel_gc_flags();
314 // Garbage-First (UseG1GC) 314 // Garbage-First (UseG1GC)
315 static void set_g1_gc_flags(); 315 static void set_g1_gc_flags();
316 // GC ergonomics 316 // GC ergonomics
317 static void set_use_compressed_oops();
317 static void set_ergonomics_flags(); 318 static void set_ergonomics_flags();
318 static void set_shared_spaces_flags(); 319 static void set_shared_spaces_flags();
320 // limits the given memory size by the maximum amount of memory this process is
321 // currently allowed to allocate or reserve.
322 static julong limit_by_allocatable_memory(julong size);
319 // Setup heap size 323 // Setup heap size
320 static void set_heap_size(); 324 static void set_heap_size();
321 // Based on automatic selection criteria, should the 325 // Based on automatic selection criteria, should the
322 // low pause collector be used. 326 // low pause collector be used.
323 static bool should_auto_select_low_pause_collector(); 327 static bool should_auto_select_low_pause_collector();
420 // Adjusts the arguments after the OS have adjusted the arguments 424 // Adjusts the arguments after the OS have adjusted the arguments
421 static jint adjust_after_os(); 425 static jint adjust_after_os();
422 // Check for consistency in the selection of the garbage collector. 426 // Check for consistency in the selection of the garbage collector.
423 static bool check_gc_consistency(); 427 static bool check_gc_consistency();
424 static void check_deprecated_gcs(); 428 static void check_deprecated_gcs();
429 static void check_deprecated_gc_flags();
425 // Check consistecy or otherwise of VM argument settings 430 // Check consistecy or otherwise of VM argument settings
426 static bool check_vm_args_consistency(); 431 static bool check_vm_args_consistency();
427 // Check stack pages settings 432 // Check stack pages settings
428 static bool check_stack_pages(); 433 static bool check_stack_pages();
429 // Used by os_solaris 434 // Used by os_solaris