You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Top 10 origins of code area: Top 10 object types in image heap:
55
55
4.03MB java.base 1.14MB byte[] for code metadata
@@ -201,6 +201,10 @@ The progress indicator is printed periodically at an increasing interval.
201
201
### <aname="stage-creating"></a>Creating Image
202
202
In this stage, the native binary is created and written to disk.
203
203
Debug info is also generated as part of this stage (if requested).
204
+
This section breaks down the total image size as well as [code area](#glossary-code-area) and [image heap](#glossary-image-heap) (see below for more details).
205
+
The total image size is calculated before linking by summing the sizes of the code area, image heap, debug information (if requested and embedded in the binary), and other data.
206
+
The total file size is the actual size of the image on disk after linking.
207
+
Typically, the file size is slightly smaller than the image size due to additional link time optimizations.
204
208
205
209
#### <aname="glossary-code-area"></a>Code Area
206
210
The code area contains machine code produced by the Graal compiler for all reachable methods.
0 commit comments