comparison src/share/vm/utilities/globalDefinitions.hpp @ 10126:63e31ce40bdb

8009928: PSR:PERF Increase default string table size Summary: Increase default string table size to 60013 for 64-bit platforms. Reviewed-by: coleenp, dholmes
author hseigel
date Wed, 17 Apr 2013 08:20:02 -0400
parents 7a5aec879506
children fb14e9ed1594
comparison
equal deleted inserted replaced
10097:f2c0ccccc6b6 10126:63e31ce40bdb
326 326
327 const int max_method_code_size = 64*K - 1; // JVM spec, 2nd ed. section 4.8.1 (p.134) 327 const int max_method_code_size = 64*K - 1; // JVM spec, 2nd ed. section 4.8.1 (p.134)
328 328
329 329
330 //---------------------------------------------------------------------------------------------------- 330 //----------------------------------------------------------------------------------------------------
331 // Minimum StringTableSize value 331 // Default and minimum StringTableSize values
332 332
333 const int defaultStringTableSize=1009; 333 const int defaultStringTableSize = NOT_LP64(1009) LP64_ONLY(60013);
334 const int minimumStringTableSize=1009;
334 335
335 336
336 //---------------------------------------------------------------------------------------------------- 337 //----------------------------------------------------------------------------------------------------
337 // HotSwap - for JVMTI aka Class File Replacement and PopFrame 338 // HotSwap - for JVMTI aka Class File Replacement and PopFrame
338 // 339 //