-
Bug
-
Resolution: Fixed
-
P4
-
6
-
b24
-
generic, x86, sparc
-
generic, linux, solaris_2.5.1, solaris_2.6, solaris_7, windows_nt
We have profiled our Java program and one of
the places it is spending the most time is in
GridBagLayout allocating new arrays. For example:
GridBagLayoutInfo () {
minWidth = new int[GridBagLayout.MAXGRIDSIZE];
minHeight = new int[GridBagLayout.MAXGRIDSIZE];
weightX = new double[GridBagLayout.MAXGRIDSIZE];
weightY = new double[GridBagLayout.MAXGRIDSIZE];
}
This method is called many times. It allocates
arrays of MAXGRIDSIZE (512) ints and doubles.
Also there are other allocations of arrays of
[MAXGRIDSIZE] elements. MAXGRIDSIZE is a static final
int so a class can't even extend GridBagLayout and
change its value.
How about adding setMaxGridSize() to GridBagLayout,
or a new constructor GridBagLayout(int maxGridSize)?
(Review ID: 85571)
======================================================================
- duplicates
-
JDK-4869906 Each instance of GridBagLayout unnecessarily leaks 12K of memory
-
- Closed
-
-
JDK-5107980 REGRESSION: REGRESSION: GridBagLayout restricted to 512 rows
-
- Closed
-
-
JDK-4071278 Size restriction on GridBagLayout=512
-
- Closed
-
-
JDK-4195986 GridBagLayout - inefficient use of memory
-
- Closed
-
-
JDK-4014289 GridBagLayout should use a vector instead of hardcoding the number of elements
-
- Closed
-
- relates to
-
JDK-4623196 GridBagLayout.minimumLayoutSize throws unexpected AIOOBE
-
- Closed
-
-
JDK-6404410 REGRESSION: GridBagLayout throws AIOOBException if columnWidths.length > number
-
- Resolved
-