mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8019375: Internal symbol table size should be tunable
Reviewed-by: coleenp, kamg
This commit is contained in:
parent
088ded71f9
commit
c3d0e64506
6 changed files with 19 additions and 22 deletions
|
@ -333,6 +333,9 @@ const int max_method_code_size = 64*K - 1; // JVM spec, 2nd ed. section 4.8.1 (
|
|||
const int defaultStringTableSize = NOT_LP64(1009) LP64_ONLY(60013);
|
||||
const int minimumStringTableSize=1009;
|
||||
|
||||
const int defaultSymbolTableSize = 20011;
|
||||
const int minimumSymbolTableSize = 1009;
|
||||
|
||||
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
// HotSwap - for JVMTI aka Class File Replacement and PopFrame
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue