mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8009928: PSR:PERF Increase default string table size
Increase default string table size to 60013 for 64-bit platforms. Reviewed-by: coleenp, dholmes
This commit is contained in:
parent
2b3d514995
commit
54b7ae1ff9
2 changed files with 4 additions and 3 deletions
|
@ -328,9 +328,10 @@ const int max_method_code_size = 64*K - 1; // JVM spec, 2nd ed. section 4.8.1 (
|
|||
|
||||
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
// Minimum StringTableSize value
|
||||
// Default and minimum StringTableSize values
|
||||
|
||||
const int defaultStringTableSize=1009;
|
||||
const int defaultStringTableSize = NOT_LP64(1009) LP64_ONLY(60013);
|
||||
const int minimumStringTableSize=1009;
|
||||
|
||||
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue