1
1
/*
2
- * reserved comment block
3
- * DO NOT REMOVE OR ALTER!
2
+ * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
4
3
*/
5
4
/*
6
5
* Licensed to the Apache Software Foundation (ASF) under one or more
38
37
*
39
38
* @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
40
39
* @see Constant
40
+ * @LastModified: May 2022
41
41
*/
42
42
public class ConstantPoolGen implements java .io .Serializable {
43
+ public static final int CONSTANT_POOL_SIZE = 65536 ;
43
44
protected int size = 1024 ; // Inital size, sufficient in most cases
44
45
protected Constant [] constants = new Constant [size ];
45
46
protected int index = 1 ; // First entry (0) used by JVM
@@ -61,7 +62,7 @@ private static class Index implements java.io.Serializable {
61
62
*/
62
63
public ConstantPoolGen (Constant [] cs ) {
63
64
if (cs .length > size ) {
64
- size = cs .length ;
65
+ size = Math . min ( cs .length , CONSTANT_POOL_SIZE ) ;
65
66
constants = new Constant [size ];
66
67
}
67
68
@@ -134,10 +135,19 @@ public ConstantPoolGen() {}
134
135
/** Resize internal array of constants.
135
136
*/
136
137
protected void adjustSize () {
138
+ // 3 extra spaces are needed as some entries may take 3 slots
139
+ if (index + 3 >= CONSTANT_POOL_SIZE ) {
140
+ throw new RuntimeException ("The number of constants " + (index + 3 ) +
141
+ " is over the size of the constant pool: " +
142
+ (CONSTANT_POOL_SIZE - 1 ));
143
+ }
144
+
137
145
if (index + 3 >= size ) {
138
146
Constant [] cs = constants ;
139
147
140
148
size *= 2 ;
149
+ // the constant array shall not exceed the size of the constant pool
150
+ size = Math .min (size , CONSTANT_POOL_SIZE );
141
151
constants = new Constant [size ];
142
152
System .arraycopy (cs , 0 , constants , 0 , index );
143
153
}
0 commit comments