comparison src/share/vm/runtime/arguments.cpp @ 10172:e01e02a9fcb6

Merge
author jiangli
date Mon, 29 Apr 2013 01:58:43 -0700
parents 3c0584fec1e6 63e31ce40bdb
children 30860066ae8f 64340da5b68c 711016f146fd 6f3fd5150b67
comparison
equal deleted inserted replaced
10170:3c0584fec1e6 10172:e01e02a9fcb6
1899 status = status && verify_percentage(MinHeapFreeRatio, "MinHeapFreeRatio"); 1899 status = status && verify_percentage(MinHeapFreeRatio, "MinHeapFreeRatio");
1900 status = status && verify_percentage(MaxHeapFreeRatio, "MaxHeapFreeRatio"); 1900 status = status && verify_percentage(MaxHeapFreeRatio, "MaxHeapFreeRatio");
1901 1901
1902 // Divide by bucket size to prevent a large size from causing rollover when 1902 // Divide by bucket size to prevent a large size from causing rollover when
1903 // calculating amount of memory needed to be allocated for the String table. 1903 // calculating amount of memory needed to be allocated for the String table.
1904 status = status && verify_interval(StringTableSize, defaultStringTableSize, 1904 status = status && verify_interval(StringTableSize, minimumStringTableSize,
1905 (max_uintx / StringTable::bucket_size()), "StringTable size"); 1905 (max_uintx / StringTable::bucket_size()), "StringTable size");
1906 1906
1907 if (MinHeapFreeRatio > MaxHeapFreeRatio) { 1907 if (MinHeapFreeRatio > MaxHeapFreeRatio) {
1908 jio_fprintf(defaultStream::error_stream(), 1908 jio_fprintf(defaultStream::error_stream(),
1909 "MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or " 1909 "MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "