<div dir="ltr"><div>Hi Julian,</div><div><br></div><div>I am curious, what would be the use case for Windows+Zero? <br></div><div><br></div><div>Zero is typically used for bootstrapping new platforms/CPUs. The Windows CPU set is very stable, and Windows is not the platform anyone starts porting to if they start working on a new platform. Additionally, Microsoft usually takes care of porting in the once-a-decade-rare case that a new CPU is supported on Windows. </div><br><div>Cheers, Thomas</div><div><br></div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Tue, Apr 22, 2025 at 2:47 PM Julian Waters <<a href="mailto:tanksherman27@gmail.com">tanksherman27@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi all,<br>
<br>
Zero currently cannot compile on Windows, and to my knowledge, has<br>
never been able to compile on Windows. This is largely due to Windows<br>
lacking crucial implementations for Zero under the os_cpu directory,<br>
where you will notice a distinct lack of a windows_zero directory. To<br>
remedy this, some time ago, I implemented Zero on Windows. The<br>
implementation, aside from adding critical code to windows_zero, also<br>
had to ifdef some code out of the Windows Structured Exception filter.<br>
It was surprisingly minimal, but the downside is that Windows/Zero<br>
then only compiled with gcc. VC had an additional hurdle to jump<br>
through: On Zero, since there are no registers, register arrays in<br>
certain classes became zero sized arrays, a GNU extension that VC will<br>
never accept under any circumstances.<br>
<br>
I started work again recently to get Zero working with VC. Just 2 days<br>
ago, this successfully compiled with VC, albeit with<br>
--disable-warnings-as-errors. The code is available at<br>
<a href="https://github.com/TheShermanTanker/jdk/commits/experimental" rel="noreferrer" target="_blank">https://github.com/TheShermanTanker/jdk/commits/experimental</a> for<br>
anyone curious, under "Windows/Zero Port". Disclaimer: I do not know<br>
whether the code is 100% correct, I may have implemented it wrongly.<br>
The remaining warnings left over can be seen below this mail. Note<br>
that only the release configuration was tested, fastdebug has not been<br>
compiled yet.<br>
<br>
I'd like to float the idea of supporting Windows/Zero properly.<br>
Ideally, Zero should run on any platform, so it not running on Windows<br>
would be surprising, but past that, the Java Zero VM is extremely<br>
small on Windows at just 5MB (Even smaller than the Python<br>
Interpreter!), so it could be useful on devices where a small Java VM<br>
is desired. More importantly, this could (Although I am not fully<br>
certain) open the door to running the latest Java on 32 bit Windows<br>
devices again, ever since all the x86 32 bit ports were removed,<br>
leaving Zero as the only way to execute Java on 32 bit x86. This may<br>
(or may not) help those who cannot get a 64 bit device or one that's<br>
running Linux, I haven't checked yet.<br>
<br>
I also crashed the VM on purpose to get a hserr file which contains VM<br>
information, this can be seen below. This was quite interesting, as<br>
I've never actually seen Zero crash before!<br>
<br>
Thoughts?<br>
<br>
best regards,<br>
Julian<br>
<br>
#<br>
# A fatal error has been detected by the Java Runtime Environment:<br>
#<br>
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffd1518139f,<br>
pid=335696, tid=337452<br>
#<br>
# JRE version: Java Runtime Environment (25.0) (build 25-internal)<br>
# Java VM: Java HotSpot 64-Bit Zero VM (25-internal, interpreted mode,<br>
sharing, compressed oops, compressed class ptrs, g1 gc, windows-amd64)<br>
# Problematic frame:<br>
# C  [Crash.dll+0x139f]<br>
#<br>
# No core dump will be written. Minidumps are not enabled by default<br>
on client versions of Windows<br>
#<br>
# If you would like to submit a bug report, please visit:<br>
#   <a href="https://bugreport.java.com/bugreport/crash.jsp" rel="noreferrer" target="_blank">https://bugreport.java.com/bugreport/crash.jsp</a><br>
# The crash happened outside the Java Virtual Machine in native code.<br>
# See problematic frame for where to report the bug.<br>
#<br>
<br>
---------------  S U M M A R Y ------------<br>
<br>
Command Line: --enable-preview Crash<br>
<br>
Host: AMD Ryzen 9 7845HX with Radeon Graphics        , 24 cores, 15G,<br>
Windows 11 , 64 bit Build 26100 (10.0.26100.3775)<br>
Time: Sun Apr 20 03:44:08 2025 Malay Peninsula Standard Time elapsed<br>
time: 0.291582 seconds (0d 0h 0m 0s)<br>
<br>
---------------  T H R E A D  ---------------<br>
<br>
Current thread (0x00000268e57a3d20):  JavaThread "main"<br>
[_thread_in_native, id=337452,<br>
stack(0x000000ae07a00000,0x000000ae07b00000) (1024K)]<br>
<br>
Stack: [0x000000ae07a00000,0x000000ae07b00000],<br>
sp=0x000000ae07a842a0,  free space=528k<br>
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)<br>
C  [Crash.dll+0x139f]  (no source info available)<br>
C  [libffi-8.dll+0x4cc1]  (no source info available)<br>
C  [libffi-8.dll+0x48df]  (no source info available)<br>
C  [libffi-8.dll+0x4aa2]  (no source info available)<br>
V  [jvm.dll+0x426645]  ZeroInterpreter::native_entry+0x455<br>
(zeroInterpreter_zero.cpp:444)<br>
V  [jvm.dll+0x425f47]  ZeroInterpreter::main_loop+0x127<br>
(zeroInterpreter_zero.cpp:227)<br>
V  [jvm.dll+0x425d96]  ZeroInterpreter::normal_entry+0x36<br>
(zeroInterpreter_zero.cpp:115)<br>
V  [jvm.dll+0x3b156d]  StubGenerator::call_stub+0x1bd<br>
(stubGenerator_zero.cpp:84)<br>
V  [jvm.dll+0x1acbfd]  JavaCalls::call_helper+0x48d  (javaCalls.cpp:424)<br>
V  [jvm.dll+0x2e4c80]  os::os_exception_wrapper+0x20  (os_windows_zero.cpp:51)<br>
V  [jvm.dll+0x1c472a]  jni_invoke_nonstatic+0x32a  (jni.cpp:950)<br>
V  [jvm.dll+0x1c8ea2]  jni_CallVoidMethod+0x142  (jni.cpp:1307)<br>
C  [jli.dll+0x510f]  JavaMain+0x7d3  (java.c:645)<br>
C  [ucrtbase.dll+0x37b0]  (no source info available)<br>
C  [KERNEL32.DLL+0x2e8d7]  (no source info available)<br>
C  [ntdll.dll+0xb14fc]  (no source info available)<br>
<br>
Java frames:<br>
 0x000000ae07aff8f0: unboxed parameter[1]  = 0x000000ae07aff9a0<br>
 0x000000ae07aff8f8: parameter[0] (JNIEnv) = 0x000000ae07a84410<br>
 0x000000ae07aff900: parameter[1] (this)   = 0x000000ae07aff8f0<br>
 0x000000ae07aff908: istate->_thread       = 0x00000268e57a3d20<br>
 0x000000ae07aff910: istate->_bcp          = 0x0000000000000000<br>
 0x000000ae07aff918: istate->_locals       = 0x000000ae07aff9a0<br>
 0x000000ae07aff920: istate->_constants    = 0x00000268c14003a8<br>
 0x000000ae07aff928: istate->_method       = Crash.crash()V<br>
 0x000000ae07aff930: istate->_mirror       = 0x000000071ba1cb90<br>
 0x000000ae07aff938: istate->_stack        = 0x000000ae07aff900<br>
 0x000000ae07aff940: istate->_msg          = 0x0000026800000002<br>
 0x000000ae07aff948: istate->_result       = 0x0000000000000000<br>
 0x000000ae07aff950: (istate->_result)     = 0x000000ae00000003<br>
 0x000000ae07aff958: (istate->_result)     = 0x0000000000000000<br>
 0x000000ae07aff960: istate->_prev_link    = 0x0000000000000000<br>
 0x000000ae07aff968: istate->_oop_temp     = 0x0000000000000000<br>
 0x000000ae07aff970: istate->_stack_base   = 0x000000ae07aff908<br>
 0x000000ae07aff978: istate->_stack_limit  = 0x000000ae07aff900<br>
 0x000000ae07aff980: istate->_monitor_base = 0x000000ae07aff908<br>
 0x000000ae07aff988: istate->_self_link    = 0x000000ae07aff908<br>
 0x000000ae07aff990: frame_type            = INTERPRETER_FRAME<br>
 0x000000ae07aff998: next_frame            = 0x000000ae07affa38<br>
<br>
 0x000000ae07aff9a0: local[0]              = 0x000000071ba1d940<br>
 0x000000ae07aff9a8: istate->_thread       = 0x00000268e57a3d20<br>
 0x000000ae07aff9b0: istate->_bcp          = 0x00000268c14002de (bci 6)<br>
 0x000000ae07aff9b8: istate->_locals       = 0x000000ae07affa40<br>
 0x000000ae07aff9c0: istate->_constants    = 0x00000268c14003a8<br>
 0x000000ae07aff9c8: istate->_method       = Crash.main()V<br>
 0x000000ae07aff9d0: istate->_mirror       = 0x000000071ba1cb90<br>
 0x000000ae07aff9d8: istate->_stack        = 0x000000ae07aff998<br>
 0x000000ae07aff9e0: istate->_msg          = 0x0000026800000008<br>
 0x000000ae07aff9e8: istate->_result       = 0x00000268c1400238<br>
 0x000000ae07aff9f0: (istate->_result)     = 0x00000268f1e90458<br>
 0x000000ae07aff9f8: (istate->_result)     = 0x0000000000000003<br>
 0x000000ae07affa00: istate->_prev_link    = 0x0000000000000000<br>
 0x000000ae07affa08: istate->_oop_temp     = 0x0000000000000000<br>
 0x000000ae07affa10: istate->_stack_base   = 0x000000ae07aff9a8<br>
 0x000000ae07affa18: istate->_stack_limit  = 0x000000ae07aff990<br>
 0x000000ae07affa20: istate->_monitor_base = 0x000000ae07aff9a8<br>
 0x000000ae07affa28: istate->_self_link    = 0x000000ae07aff9a8<br>
 0x000000ae07affa30: frame_type            = INTERPRETER_FRAME<br>
 0x000000ae07affa38: next_frame            = 0x000000ae07affa58<br>
<br>
 0x000000ae07affa40: local[0]              = 0x000000071ba1d940<br>
 0x000000ae07affa48: call_wrapper          = 0x000000ae07affaf0<br>
 0x000000ae07affa50: frame_type            = ENTRY_FRAME<br>
 0x000000ae07affa58: next_frame            = 0x0000000000000000<br>
<br>
<br>
siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address<br>
0x0000000000000000<br>
<br>
<br>
No context information.<br>
<br>
Register to memory mapping:<br>
<br>
No register info.<br>
<br>
Top of Stack: (sp=0x000000ae07a842a0)<br>
0x000000ae07a842a0:   00000000000003d8 0000000000000000   ................<br>
0x000000ae07a842b0:   0000000000000000 00007ffd16d748df   .........H......<br>
0x000000ae07a842c0:   000002688046f350 0000000000000000   P.F.h...........<br>
0x000000ae07a842d0:   000000ae07a84300 00007ffd16d74cc1   .C.......L......<br>
0x000000ae07a842e0:   00000268e57a4028 000000ae07aff9a0   (@z.h...........<br>
0x000000ae07a842f0:   0000000000000001 0000000000000050   ........P.......<br>
0x000000ae07a84300:   000000ae07a84350 00007ffd16d748df   PC.......H......<br>
0x000000ae07a84310:   00007ffd15181380 0000000000000000   ................<br>
0x000000ae07a84320:   000000ae07a84400 0000000000000000   .D..............<br>
0x000000ae07a84330:   0000000000000001 0000000000000000   ................<br>
0x000000ae07a84340:   00001664b4a8ce49 111f221225371f8f   I...d.....7%."..<br>
0x000000ae07a84350:   00000268802416f0 00000268e57a3d20   ..$.h... =z.h...<br>
0x000000ae07a84360:   00000268c1400238 000000ae07aff908   8.@.h...........<br>
0x000000ae07a84370:   000000ae07aff9a0 000000ae07aff998   ................<br>
0x000000ae07a84380:   00000268f1e98710 0000000000000000   ....h...........<br>
0x000000ae07a84390:   000000ae07a84440 00007ffd16d74aa2   @D.......J......<br>
0x000000ae07a843a0:   0000000000000000 0000000000000001   ................<br>
0x000000ae07a843b0:   0000000000000000 000000ae07aff998   ................<br>
0x000000ae07a843c0:   0000000000000000 0000000000000000   ................<br>
0x000000ae07a843d0:   000000ae07a84440 00007ffceb326645   @D......Ef2.....<br>
0x000000ae07a843e0:   00007ffceb482058 00000268e57a3d20   X H..... =z.h...<br>
0x000000ae07a843f0:   00000268c1400238 00000268e57a3d20   8.@.h... =z.h...<br>
0x000000ae07a84400:   000000ae07aff990 000000ae07aff8f8   ................<br>
0x000000ae07a84410:   00000268e57a4028 0000000000000000   (@z.h...........<br>
0x000000ae07a84420:   00007ffd15181380 0000000000000000   ................<br>
0x000000ae07a84430:   00000268c1400238 00000268e57a3d20   8.@.h... =z.h...<br>
0x000000ae07a84440:   0000000000000001 0000000000000000   ................<br>
0x000000ae07a84450:   0000000000000000 0000000000000000   ................<br>
0x000000ae07a84460:   0000000000000000 000000ae07affa38   ........8.......<br>
0x000000ae07a84470:   00000268c14002e8 00007ffceb325f47   ..@.h...G_2.....<br>
0x000000ae07a84480:   00000268e57a3d20 00000268e57a3d20    =z.h... =z.h...<br>
0x000000ae07a84490:   000000ae00084b70 0000000000000000   pK..............<br>
<br>
Instructions: (pc=0x00007ffd1518139f)<br>
  0x00007ffd1518129f:   00 e8 bb 0e 00 00 41 89 c4 83 fb 03 75 86 e9 5a<br>
  0x00007ffd151812af:   ff ff ff 66 0f 1f 44 00 00 83 fb 01 0f 85 6f ff<br>
  0x00007ffd151812bf:   ff ff 49 89 f8 31 d2 48 89 f1 e8 42 fd ff ff e9<br>
  0x00007ffd151812cf:   5d ff ff ff 0f 1f 44 00 00 e8 93 01 00 00 49 89<br>
  0x00007ffd151812df:   f8 ba 01 00 00 00 48 89 f1 e8 73 0e 00 00 41 89<br>
  0x00007ffd151812ef:   c4 85 c0 0f 85 3b ff ff ff 49 89 f8 31 d2 48 89<br>
  0x00007ffd151812ff:   f1 e8 5b 0e 00 00 49 89 f8 31 d2 48 89 f1 e8 3e<br>
  0x00007ffd1518130f:   0e 00 00 49 89 f8 31 d2 48 89 f1 e8 f1 fc ff ff<br>
  0x00007ffd1518131f:   e9 0f ff ff ff 66 66 2e 0f 1f 84 00 00 00 00 00<br>
  0x00007ffd1518132f:   90 48 8b 05 b9 82 00 00 c7 00 00 00 00 00 e9 8e<br>
  0x00007ffd1518133f:   fe ff ff 66 66 2e 0f 1f 84 00 00 00 00 00 0f 1f<br>
  0x00007ffd1518134f:   00 48 89 ca 48 8d 0d a6 ac 00 00 e9 f9 62 00 00<br>
  0x00007ffd1518135f:   90 48 8d 0d 09 00 00 00 e9 e4 ff ff ff 0f 1f 40<br>
  0x00007ffd1518136f:   00 c3 90 90 90 90 90 90 90 90 90 90 90 90 90 90<br>
  0x00007ffd1518137f:   90 55 48 89 e5 48 83 ec 30 48 c7 45 f8 00 00 00<br>
  0x00007ffd1518138f:   00 48 8b 45 f8 48 8b 45 f8 48 8d 0d 61 7c 00 00<br>
=>0x00007ffd1518139f:   8b 10 e8 ca 0d 00 00 48 8d 0d 56 7c 00 00 48 83<br>
  0x00007ffd151813af:   c4 30 5d e9 59 63 00 00 90 90 90 90 90 90 90 90<br>
  0x00007ffd151813bf:   90 48 83 ec 28 48 8b 05 45 6c 00 00 48 8b 00 48<br>
  0x00007ffd151813cf:   85 c0 74 22 0f 1f 44 00 00 ff d0 48 8b 05 2f 6c<br>
  0x00007ffd151813df:   00 00 48 8d 50 08 48 8b 40 08 48 89 15 20 6c 00<br>
  0x00007ffd151813ef:   00 48 85 c0 75 e3 48 83 c4 28 c3 66 0f 1f 44 00<br>
  0x00007ffd151813ff:   00 56 53 48 83 ec 28 48 8b 15 83 81 00 00 48 8b<br>
  0x00007ffd1518140f:   02 89 c1 83 f8 ff 74 39 85 c9 74 20 89 c8 83 e9<br>
  0x00007ffd1518141f:   01 48 8d 1c c2 48 29 c8 48 8d 74 c2 f8 0f 1f 40<br>
  0x00007ffd1518142f:   00 ff 13 48 83 eb 08 48 39 f3 75 f5 48 8d 0d 7e<br>
  0x00007ffd1518143f:   ff ff ff 48 83 c4 28 5b 5e e9 03 ff ff ff 0f 1f<br>
  0x00007ffd1518144f:   00 31 c0 66 0f 1f 44 00 00 44 8d 40 01 89 c1 4a<br>
  0x00007ffd1518145f:   83 3c c2 00 4c 89 c0 75 f0 eb ad 66 0f 1f 44 00<br>
  0x00007ffd1518146f:   00 8b 05 aa ab 00 00 85 c0 74 06 c3 0f 1f 44 00<br>
  0x00007ffd1518147f:   00 c7 05 96 ab 00 00 01 00 00 00 e9 71 ff ff ff<br>
  0x00007ffd1518148f:   90 83 fa 03 74 0b 85 d2 74 07 c3 66 0f 1f 44 00<br>
<br>
<br>
Stack slot to memory mapping:<br>
<br>
stack at sp + 0 slots: 0x00000000000003d8 is an unknown value<br>
stack at sp + 1 slots: 0x0 is null<br>
stack at sp + 2 slots: 0x0 is null<br>
stack at sp + 3 slots: 0x00007ffd16d748df libffi-8.dll<br>
stack at sp + 4 slots: {method} {0x000002688046f358} 'loadLibrary'<br>
'(Ljava/lang/Class;Ljava/lang/String;)Ljdk/internal/loader/NativeLibrary;'<br>
in 'java/lang/ClassLoader'<br>
stack at sp + 5 slots: 0x0 is null<br>
stack at sp + 6 slots: 0x000000ae07a84300 is pointing into the stack<br>
for thread: 0x00000268e57a3d20<br>
stack at sp + 7 slots: 0x00007ffd16d74cc1 libffi-8.dll<br>
<br>
Lock stack of current Java thread (top to bottom):<br>
<br>
<br>
---------------  P R O C E S S  ---------------<br>
<br>
Threads class SMR info:<br>
_java_thread_list=0x00000268fc0d5850, length=9, elements={<br>
0x00000268e57a3d20, 0x00000268fc08cfc0, 0x00000268fc08d5f0, 0x00000268fc091710,<br>
0x00000268fc092140, 0x00000268fc0936e0, 0x00000268fc09d2a0, 0x00000268fc0d8ec0,<br>
0x00000268fc0de6e0<br>
}<br>
<br>
Java Threads: ( => current thread )<br>
=>0x00000268e57a3d20 JavaThread "main"<br>
[_thread_in_native, id=337452,<br>
stack(0x000000ae07a00000,0x000000ae07b00000) (1024K)]<br>
  0x00000268fc08cfc0 JavaThread "Reference Handler"          daemon<br>
[_thread_blocked, id=337356,<br>
stack(0x000000ae08200000,0x000000ae08300000) (1024K)]<br>
  0x00000268fc08d5f0 JavaThread "Finalizer"                  daemon<br>
[_thread_blocked, id=338708,<br>
stack(0x000000ae08300000,0x000000ae08400000) (1024K)]<br>
  0x00000268fc091710 JavaThread "Signal Dispatcher"          daemon<br>
[_thread_blocked, id=338204,<br>
stack(0x000000ae08400000,0x000000ae08500000) (1024K)]<br>
  0x00000268fc092140 JavaThread "Attach Listener"            daemon<br>
[_thread_blocked, id=338748,<br>
stack(0x000000ae08500000,0x000000ae08600000) (1024K)]<br>
  0x00000268fc0936e0 JavaThread "Service Thread"             daemon<br>
[_thread_blocked, id=337172,<br>
stack(0x000000ae08600000,0x000000ae08700000) (1024K)]<br>
  0x00000268fc09d2a0 JavaThread "Monitor Deflation Thread"   daemon<br>
[_thread_blocked, id=337312,<br>
stack(0x000000ae08700000,0x000000ae08800000) (1024K)]<br>
  0x00000268fc0d8ec0 JavaThread "Notification Thread"        daemon<br>
[_thread_blocked, id=337560,<br>
stack(0x000000ae08800000,0x000000ae08900000) (1024K)]<br>
  0x00000268fc0de6e0 JavaThread "Common-Cleaner"             daemon<br>
[_thread_blocked, id=338324,<br>
stack(0x000000ae08900000,0x000000ae08a00000) (1024K)]<br>
Total: 9<br>
<br>
Other Threads:<br>
  0x00000268fc07c960 VMThread "VM Thread"<br>
[id=337424, stack(0x000000ae08100000,0x000000ae08200000) (1024K)]<br>
  0x00000268fbf41360 WatcherThread "VM Periodic Task Thread"<br>
[id=333244, stack(0x000000ae08000000,0x000000ae08100000) (1024K)]<br>
  0x00000268e7d7d550 WorkerThread "GC Thread#0"<br>
[id=336784, stack(0x000000ae07b00000,0x000000ae07c00000) (1024K)]<br>
  0x00000268e7d951c0 ConcurrentGCThread "G1 Main Marker"<br>
[id=338660, stack(0x000000ae07c00000,0x000000ae07d00000) (1024K)]<br>
  0x00000268e7d96850 WorkerThread "G1 Conc#0"<br>
[id=19564, stack(0x000000ae07d00000,0x000000ae07e00000) (1024K)]<br>
  0x00000268fbf39000 ConcurrentGCThread "G1 Refine#0"<br>
[id=217884, stack(0x000000ae07e00000,0x000000ae07f00000) (1024K)]<br>
  0x00000268fbf39780 ConcurrentGCThread "G1 Service"<br>
[id=338408, stack(0x000000ae07f00000,0x000000ae08000000) (1024K)]<br>
Total: 7<br>
<br>
Threads with active compile tasks:<br>
Total: 0<br>
<br>
VM state: not at safepoint (normal execution)<br>
<br>
VM Mutex/Monitor currently owned by a thread: None<br>
<br>
Heap address: 0x000000070c800000, size: 3896 MB, Compressed Oops mode:<br>
Zero based, Oop shift amount: 3<br>
<br>
CDS archive(s) mapped at:<br>
[0x0000026880000000-0x0000026880d30000-0x0000026880d30000), size<br>
13828096, SharedBaseAddress: 0x0000026880000000,<br>
ArchiveRelocationMode: 1.<br>
Compressed class space mapped at:<br>
0x0000026881000000-0x00000268c1000000, reserved size: 1073741824<br>
UseCompressedClassPointers 1, UseCompactObjectHeaders 0<br>
Narrow klass pointer bits 32, Max shift 3<br>
Narrow klass base: 0x0000026880000000, Narrow klass shift: 0<br>
Encoding Range: [0x0000026880000000 - 0x0000026980000000), (4294967296 bytes)<br>
Klass Range:    [0x0000026880010000 - 0x00000268c1000000), (1090453504 bytes)<br>
Klass ID Range:  [65536 - 1090519033) (1090453497)<br>
Protection zone: [0x0000026880000000 - 0x0000026880010000), (65536 bytes)<br>
<br>
GC Precious Log:<br>
 CardTable entry size: 512<br>
 Card Set container configuration: InlinePtr #cards 4 size 8 Array Of<br>
Cards #cards 16 size 48 Howl #buckets 8 coarsen threshold 3686 Howl<br>
Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap<br>
region 1 cards per card region 4096<br>
 CPUs: 24 total, 24 available<br>
 Memory: 15578M<br>
 Large Page Support: Disabled<br>
 NUMA Support: Disabled<br>
 Compressed Oops: Enabled (Zero based)<br>
 Heap Region Size: 2M<br>
 Heap Min Capacity: 8M<br>
 Heap Initial Capacity: 244M<br>
 Heap Max Capacity: 3896M<br>
 Pre-touch: Disabled<br>
 Parallel Workers: 18<br>
 Concurrent Workers: 5<br>
 Concurrent Refinement Workers: 18<br>
 Periodic GC: Disabled<br>
<br>
Heap:<br>
 garbage-first heap   total reserved 3989504K, committed 251904K, used<br>
1136K [0x000000070c800000, 0x0000000800000000)<br>
  region size 2048K, 1 young (2048K), 0 survivors (0K)<br>
 Metaspace       used 21K, committed 256K, reserved 1114112K<br>
  class space    used 6K, committed 128K, reserved 1048576K<br>
<br>
Heap Regions: E=young(eden), S=young(survivor), O=old,<br>
HS=humongous(starts), HC=humongous(continues), CS=collection set,<br>
F=free, TAMS=top-at-mark-start, PB=parsable bottom<br>
|   0|0x000000070c800000, 0x000000070c800000, 0x000000070ca00000|  0%|<br>
F|  |TAMS 0x000000070c800000| PB 0x000000070c800000| Untracked |  0<br>
|   1|0x000000070ca00000, 0x000000070ca00000, 0x000000070cc00000|  0%|<br>
F|  |TAMS 0x000000070ca00000| PB 0x000000070ca00000| Untracked |  0<br>
|   2|0x000000070cc00000, 0x000000070cc00000, 0x000000070ce00000|  0%|<br>
F|  |TAMS 0x000000070cc00000| PB 0x000000070cc00000| Untracked |  0<br>
|   3|0x000000070ce00000, 0x000000070ce00000, 0x000000070d000000|  0%|<br>
F|  |TAMS 0x000000070ce00000| PB 0x000000070ce00000| Untracked |  0<br>
|   4|0x000000070d000000, 0x000000070d000000, 0x000000070d200000|  0%|<br>
F|  |TAMS 0x000000070d000000| PB 0x000000070d000000| Untracked |  0<br>
|   5|0x000000070d200000, 0x000000070d200000, 0x000000070d400000|  0%|<br>
F|  |TAMS 0x000000070d200000| PB 0x000000070d200000| Untracked |  0<br>
|   6|0x000000070d400000, 0x000000070d400000, 0x000000070d600000|  0%|<br>
F|  |TAMS 0x000000070d400000| PB 0x000000070d400000| Untracked |  0<br>
|   7|0x000000070d600000, 0x000000070d600000, 0x000000070d800000|  0%|<br>
F|  |TAMS 0x000000070d600000| PB 0x000000070d600000| Untracked |  0<br>
|   8|0x000000070d800000, 0x000000070d800000, 0x000000070da00000|  0%|<br>
F|  |TAMS 0x000000070d800000| PB 0x000000070d800000| Untracked |  0<br>
|   9|0x000000070da00000, 0x000000070da00000, 0x000000070dc00000|  0%|<br>
F|  |TAMS 0x000000070da00000| PB 0x000000070da00000| Untracked |  0<br>
|  10|0x000000070dc00000, 0x000000070dc00000, 0x000000070de00000|  0%|<br>
F|  |TAMS 0x000000070dc00000| PB 0x000000070dc00000| Untracked |  0<br>
|  11|0x000000070de00000, 0x000000070de00000, 0x000000070e000000|  0%|<br>
F|  |TAMS 0x000000070de00000| PB 0x000000070de00000| Untracked |  0<br>
|  12|0x000000070e000000, 0x000000070e000000, 0x000000070e200000|  0%|<br>
F|  |TAMS 0x000000070e000000| PB 0x000000070e000000| Untracked |  0<br>
|  13|0x000000070e200000, 0x000000070e200000, 0x000000070e400000|  0%|<br>
F|  |TAMS 0x000000070e200000| PB 0x000000070e200000| Untracked |  0<br>
|  14|0x000000070e400000, 0x000000070e400000, 0x000000070e600000|  0%|<br>
F|  |TAMS 0x000000070e400000| PB 0x000000070e400000| Untracked |  0<br>
|  15|0x000000070e600000, 0x000000070e600000, 0x000000070e800000|  0%|<br>
F|  |TAMS 0x000000070e600000| PB 0x000000070e600000| Untracked |  0<br>
|  16|0x000000070e800000, 0x000000070e800000, 0x000000070ea00000|  0%|<br>
F|  |TAMS 0x000000070e800000| PB 0x000000070e800000| Untracked |  0<br>
|  17|0x000000070ea00000, 0x000000070ea00000, 0x000000070ec00000|  0%|<br>
F|  |TAMS 0x000000070ea00000| PB 0x000000070ea00000| Untracked |  0<br>
|  18|0x000000070ec00000, 0x000000070ec00000, 0x000000070ee00000|  0%|<br>
F|  |TAMS 0x000000070ec00000| PB 0x000000070ec00000| Untracked |  0<br>
|  19|0x000000070ee00000, 0x000000070ee00000, 0x000000070f000000|  0%|<br>
F|  |TAMS 0x000000070ee00000| PB 0x000000070ee00000| Untracked |  0<br>
|  20|0x000000070f000000, 0x000000070f000000, 0x000000070f200000|  0%|<br>
F|  |TAMS 0x000000070f000000| PB 0x000000070f000000| Untracked |  0<br>
|  21|0x000000070f200000, 0x000000070f200000, 0x000000070f400000|  0%|<br>
F|  |TAMS 0x000000070f200000| PB 0x000000070f200000| Untracked |  0<br>
|  22|0x000000070f400000, 0x000000070f400000, 0x000000070f600000|  0%|<br>
F|  |TAMS 0x000000070f400000| PB 0x000000070f400000| Untracked |  0<br>
|  23|0x000000070f600000, 0x000000070f600000, 0x000000070f800000|  0%|<br>
F|  |TAMS 0x000000070f600000| PB 0x000000070f600000| Untracked |  0<br>
|  24|0x000000070f800000, 0x000000070f800000, 0x000000070fa00000|  0%|<br>
F|  |TAMS 0x000000070f800000| PB 0x000000070f800000| Untracked |  0<br>
|  25|0x000000070fa00000, 0x000000070fa00000, 0x000000070fc00000|  0%|<br>
F|  |TAMS 0x000000070fa00000| PB 0x000000070fa00000| Untracked |  0<br>
|  26|0x000000070fc00000, 0x000000070fc00000, 0x000000070fe00000|  0%|<br>
F|  |TAMS 0x000000070fc00000| PB 0x000000070fc00000| Untracked |  0<br>
|  27|0x000000070fe00000, 0x000000070fe00000, 0x0000000710000000|  0%|<br>
F|  |TAMS 0x000000070fe00000| PB 0x000000070fe00000| Untracked |  0<br>
|  28|0x0000000710000000, 0x0000000710000000, 0x0000000710200000|  0%|<br>
F|  |TAMS 0x0000000710000000| PB 0x0000000710000000| Untracked |  0<br>
|  29|0x0000000710200000, 0x0000000710200000, 0x0000000710400000|  0%|<br>
F|  |TAMS 0x0000000710200000| PB 0x0000000710200000| Untracked |  0<br>
|  30|0x0000000710400000, 0x0000000710400000, 0x0000000710600000|  0%|<br>
F|  |TAMS 0x0000000710400000| PB 0x0000000710400000| Untracked |  0<br>
|  31|0x0000000710600000, 0x0000000710600000, 0x0000000710800000|  0%|<br>
F|  |TAMS 0x0000000710600000| PB 0x0000000710600000| Untracked |  0<br>
|  32|0x0000000710800000, 0x0000000710800000, 0x0000000710a00000|  0%|<br>
F|  |TAMS 0x0000000710800000| PB 0x0000000710800000| Untracked |  0<br>
|  33|0x0000000710a00000, 0x0000000710a00000, 0x0000000710c00000|  0%|<br>
F|  |TAMS 0x0000000710a00000| PB 0x0000000710a00000| Untracked |  0<br>
|  34|0x0000000710c00000, 0x0000000710c00000, 0x0000000710e00000|  0%|<br>
F|  |TAMS 0x0000000710c00000| PB 0x0000000710c00000| Untracked |  0<br>
|  35|0x0000000710e00000, 0x0000000710e00000, 0x0000000711000000|  0%|<br>
F|  |TAMS 0x0000000710e00000| PB 0x0000000710e00000| Untracked |  0<br>
|  36|0x0000000711000000, 0x0000000711000000, 0x0000000711200000|  0%|<br>
F|  |TAMS 0x0000000711000000| PB 0x0000000711000000| Untracked |  0<br>
|  37|0x0000000711200000, 0x0000000711200000, 0x0000000711400000|  0%|<br>
F|  |TAMS 0x0000000711200000| PB 0x0000000711200000| Untracked |  0<br>
|  38|0x0000000711400000, 0x0000000711400000, 0x0000000711600000|  0%|<br>
F|  |TAMS 0x0000000711400000| PB 0x0000000711400000| Untracked |  0<br>
|  39|0x0000000711600000, 0x0000000711600000, 0x0000000711800000|  0%|<br>
F|  |TAMS 0x0000000711600000| PB 0x0000000711600000| Untracked |  0<br>
|  40|0x0000000711800000, 0x0000000711800000, 0x0000000711a00000|  0%|<br>
F|  |TAMS 0x0000000711800000| PB 0x0000000711800000| Untracked |  0<br>
|  41|0x0000000711a00000, 0x0000000711a00000, 0x0000000711c00000|  0%|<br>
F|  |TAMS 0x0000000711a00000| PB 0x0000000711a00000| Untracked |  0<br>
|  42|0x0000000711c00000, 0x0000000711c00000, 0x0000000711e00000|  0%|<br>
F|  |TAMS 0x0000000711c00000| PB 0x0000000711c00000| Untracked |  0<br>
|  43|0x0000000711e00000, 0x0000000711e00000, 0x0000000712000000|  0%|<br>
F|  |TAMS 0x0000000711e00000| PB 0x0000000711e00000| Untracked |  0<br>
|  44|0x0000000712000000, 0x0000000712000000, 0x0000000712200000|  0%|<br>
F|  |TAMS 0x0000000712000000| PB 0x0000000712000000| Untracked |  0<br>
|  45|0x0000000712200000, 0x0000000712200000, 0x0000000712400000|  0%|<br>
F|  |TAMS 0x0000000712200000| PB 0x0000000712200000| Untracked |  0<br>
|  46|0x0000000712400000, 0x0000000712400000, 0x0000000712600000|  0%|<br>
F|  |TAMS 0x0000000712400000| PB 0x0000000712400000| Untracked |  0<br>
|  47|0x0000000712600000, 0x0000000712600000, 0x0000000712800000|  0%|<br>
F|  |TAMS 0x0000000712600000| PB 0x0000000712600000| Untracked |  0<br>
|  48|0x0000000712800000, 0x0000000712800000, 0x0000000712a00000|  0%|<br>
F|  |TAMS 0x0000000712800000| PB 0x0000000712800000| Untracked |  0<br>
|  49|0x0000000712a00000, 0x0000000712a00000, 0x0000000712c00000|  0%|<br>
F|  |TAMS 0x0000000712a00000| PB 0x0000000712a00000| Untracked |  0<br>
|  50|0x0000000712c00000, 0x0000000712c00000, 0x0000000712e00000|  0%|<br>
F|  |TAMS 0x0000000712c00000| PB 0x0000000712c00000| Untracked |  0<br>
|  51|0x0000000712e00000, 0x0000000712e00000, 0x0000000713000000|  0%|<br>
F|  |TAMS 0x0000000712e00000| PB 0x0000000712e00000| Untracked |  0<br>
|  52|0x0000000713000000, 0x0000000713000000, 0x0000000713200000|  0%|<br>
F|  |TAMS 0x0000000713000000| PB 0x0000000713000000| Untracked |  0<br>
|  53|0x0000000713200000, 0x0000000713200000, 0x0000000713400000|  0%|<br>
F|  |TAMS 0x0000000713200000| PB 0x0000000713200000| Untracked |  0<br>
|  54|0x0000000713400000, 0x0000000713400000, 0x0000000713600000|  0%|<br>
F|  |TAMS 0x0000000713400000| PB 0x0000000713400000| Untracked |  0<br>
|  55|0x0000000713600000, 0x0000000713600000, 0x0000000713800000|  0%|<br>
F|  |TAMS 0x0000000713600000| PB 0x0000000713600000| Untracked |  0<br>
|  56|0x0000000713800000, 0x0000000713800000, 0x0000000713a00000|  0%|<br>
F|  |TAMS 0x0000000713800000| PB 0x0000000713800000| Untracked |  0<br>
|  57|0x0000000713a00000, 0x0000000713a00000, 0x0000000713c00000|  0%|<br>
F|  |TAMS 0x0000000713a00000| PB 0x0000000713a00000| Untracked |  0<br>
|  58|0x0000000713c00000, 0x0000000713c00000, 0x0000000713e00000|  0%|<br>
F|  |TAMS 0x0000000713c00000| PB 0x0000000713c00000| Untracked |  0<br>
|  59|0x0000000713e00000, 0x0000000713e00000, 0x0000000714000000|  0%|<br>
F|  |TAMS 0x0000000713e00000| PB 0x0000000713e00000| Untracked |  0<br>
|  60|0x0000000714000000, 0x0000000714000000, 0x0000000714200000|  0%|<br>
F|  |TAMS 0x0000000714000000| PB 0x0000000714000000| Untracked |  0<br>
|  61|0x0000000714200000, 0x0000000714200000, 0x0000000714400000|  0%|<br>
F|  |TAMS 0x0000000714200000| PB 0x0000000714200000| Untracked |  0<br>
|  62|0x0000000714400000, 0x0000000714400000, 0x0000000714600000|  0%|<br>
F|  |TAMS 0x0000000714400000| PB 0x0000000714400000| Untracked |  0<br>
|  63|0x0000000714600000, 0x0000000714600000, 0x0000000714800000|  0%|<br>
F|  |TAMS 0x0000000714600000| PB 0x0000000714600000| Untracked |  0<br>
|  64|0x0000000714800000, 0x0000000714800000, 0x0000000714a00000|  0%|<br>
F|  |TAMS 0x0000000714800000| PB 0x0000000714800000| Untracked |  0<br>
|  65|0x0000000714a00000, 0x0000000714a00000, 0x0000000714c00000|  0%|<br>
F|  |TAMS 0x0000000714a00000| PB 0x0000000714a00000| Untracked |  0<br>
|  66|0x0000000714c00000, 0x0000000714c00000, 0x0000000714e00000|  0%|<br>
F|  |TAMS 0x0000000714c00000| PB 0x0000000714c00000| Untracked |  0<br>
|  67|0x0000000714e00000, 0x0000000714e00000, 0x0000000715000000|  0%|<br>
F|  |TAMS 0x0000000714e00000| PB 0x0000000714e00000| Untracked |  0<br>
|  68|0x0000000715000000, 0x0000000715000000, 0x0000000715200000|  0%|<br>
F|  |TAMS 0x0000000715000000| PB 0x0000000715000000| Untracked |  0<br>
|  69|0x0000000715200000, 0x0000000715200000, 0x0000000715400000|  0%|<br>
F|  |TAMS 0x0000000715200000| PB 0x0000000715200000| Untracked |  0<br>
|  70|0x0000000715400000, 0x0000000715400000, 0x0000000715600000|  0%|<br>
F|  |TAMS 0x0000000715400000| PB 0x0000000715400000| Untracked |  0<br>
|  71|0x0000000715600000, 0x0000000715600000, 0x0000000715800000|  0%|<br>
F|  |TAMS 0x0000000715600000| PB 0x0000000715600000| Untracked |  0<br>
|  72|0x0000000715800000, 0x0000000715800000, 0x0000000715a00000|  0%|<br>
F|  |TAMS 0x0000000715800000| PB 0x0000000715800000| Untracked |  0<br>
|  73|0x0000000715a00000, 0x0000000715a00000, 0x0000000715c00000|  0%|<br>
F|  |TAMS 0x0000000715a00000| PB 0x0000000715a00000| Untracked |  0<br>
|  74|0x0000000715c00000, 0x0000000715c00000, 0x0000000715e00000|  0%|<br>
F|  |TAMS 0x0000000715c00000| PB 0x0000000715c00000| Untracked |  0<br>
|  75|0x0000000715e00000, 0x0000000715e00000, 0x0000000716000000|  0%|<br>
F|  |TAMS 0x0000000715e00000| PB 0x0000000715e00000| Untracked |  0<br>
|  76|0x0000000716000000, 0x0000000716000000, 0x0000000716200000|  0%|<br>
F|  |TAMS 0x0000000716000000| PB 0x0000000716000000| Untracked |  0<br>
|  77|0x0000000716200000, 0x0000000716200000, 0x0000000716400000|  0%|<br>
F|  |TAMS 0x0000000716200000| PB 0x0000000716200000| Untracked |  0<br>
|  78|0x0000000716400000, 0x0000000716400000, 0x0000000716600000|  0%|<br>
F|  |TAMS 0x0000000716400000| PB 0x0000000716400000| Untracked |  0<br>
|  79|0x0000000716600000, 0x0000000716600000, 0x0000000716800000|  0%|<br>
F|  |TAMS 0x0000000716600000| PB 0x0000000716600000| Untracked |  0<br>
|  80|0x0000000716800000, 0x0000000716800000, 0x0000000716a00000|  0%|<br>
F|  |TAMS 0x0000000716800000| PB 0x0000000716800000| Untracked |  0<br>
|  81|0x0000000716a00000, 0x0000000716a00000, 0x0000000716c00000|  0%|<br>
F|  |TAMS 0x0000000716a00000| PB 0x0000000716a00000| Untracked |  0<br>
|  82|0x0000000716c00000, 0x0000000716c00000, 0x0000000716e00000|  0%|<br>
F|  |TAMS 0x0000000716c00000| PB 0x0000000716c00000| Untracked |  0<br>
|  83|0x0000000716e00000, 0x0000000716e00000, 0x0000000717000000|  0%|<br>
F|  |TAMS 0x0000000716e00000| PB 0x0000000716e00000| Untracked |  0<br>
|  84|0x0000000717000000, 0x0000000717000000, 0x0000000717200000|  0%|<br>
F|  |TAMS 0x0000000717000000| PB 0x0000000717000000| Untracked |  0<br>
|  85|0x0000000717200000, 0x0000000717200000, 0x0000000717400000|  0%|<br>
F|  |TAMS 0x0000000717200000| PB 0x0000000717200000| Untracked |  0<br>
|  86|0x0000000717400000, 0x0000000717400000, 0x0000000717600000|  0%|<br>
F|  |TAMS 0x0000000717400000| PB 0x0000000717400000| Untracked |  0<br>
|  87|0x0000000717600000, 0x0000000717600000, 0x0000000717800000|  0%|<br>
F|  |TAMS 0x0000000717600000| PB 0x0000000717600000| Untracked |  0<br>
|  88|0x0000000717800000, 0x0000000717800000, 0x0000000717a00000|  0%|<br>
F|  |TAMS 0x0000000717800000| PB 0x0000000717800000| Untracked |  0<br>
|  89|0x0000000717a00000, 0x0000000717a00000, 0x0000000717c00000|  0%|<br>
F|  |TAMS 0x0000000717a00000| PB 0x0000000717a00000| Untracked |  0<br>
|  90|0x0000000717c00000, 0x0000000717c00000, 0x0000000717e00000|  0%|<br>
F|  |TAMS 0x0000000717c00000| PB 0x0000000717c00000| Untracked |  0<br>
|  91|0x0000000717e00000, 0x0000000717e00000, 0x0000000718000000|  0%|<br>
F|  |TAMS 0x0000000717e00000| PB 0x0000000717e00000| Untracked |  0<br>
|  92|0x0000000718000000, 0x0000000718000000, 0x0000000718200000|  0%|<br>
F|  |TAMS 0x0000000718000000| PB 0x0000000718000000| Untracked |  0<br>
|  93|0x0000000718200000, 0x0000000718200000, 0x0000000718400000|  0%|<br>
F|  |TAMS 0x0000000718200000| PB 0x0000000718200000| Untracked |  0<br>
|  94|0x0000000718400000, 0x0000000718400000, 0x0000000718600000|  0%|<br>
F|  |TAMS 0x0000000718400000| PB 0x0000000718400000| Untracked |  0<br>
|  95|0x0000000718600000, 0x0000000718600000, 0x0000000718800000|  0%|<br>
F|  |TAMS 0x0000000718600000| PB 0x0000000718600000| Untracked |  0<br>
|  96|0x0000000718800000, 0x0000000718800000, 0x0000000718a00000|  0%|<br>
F|  |TAMS 0x0000000718800000| PB 0x0000000718800000| Untracked |  0<br>
|  97|0x0000000718a00000, 0x0000000718a00000, 0x0000000718c00000|  0%|<br>
F|  |TAMS 0x0000000718a00000| PB 0x0000000718a00000| Untracked |  0<br>
|  98|0x0000000718c00000, 0x0000000718c00000, 0x0000000718e00000|  0%|<br>
F|  |TAMS 0x0000000718c00000| PB 0x0000000718c00000| Untracked |  0<br>
|  99|0x0000000718e00000, 0x0000000718e00000, 0x0000000719000000|  0%|<br>
F|  |TAMS 0x0000000718e00000| PB 0x0000000718e00000| Untracked |  0<br>
| 100|0x0000000719000000, 0x0000000719000000, 0x0000000719200000|  0%|<br>
F|  |TAMS 0x0000000719000000| PB 0x0000000719000000| Untracked |  0<br>
| 101|0x0000000719200000, 0x0000000719200000, 0x0000000719400000|  0%|<br>
F|  |TAMS 0x0000000719200000| PB 0x0000000719200000| Untracked |  0<br>
| 102|0x0000000719400000, 0x0000000719400000, 0x0000000719600000|  0%|<br>
F|  |TAMS 0x0000000719400000| PB 0x0000000719400000| Untracked |  0<br>
| 103|0x0000000719600000, 0x0000000719600000, 0x0000000719800000|  0%|<br>
F|  |TAMS 0x0000000719600000| PB 0x0000000719600000| Untracked |  0<br>
| 104|0x0000000719800000, 0x0000000719800000, 0x0000000719a00000|  0%|<br>
F|  |TAMS 0x0000000719800000| PB 0x0000000719800000| Untracked |  0<br>
| 105|0x0000000719a00000, 0x0000000719a00000, 0x0000000719c00000|  0%|<br>
F|  |TAMS 0x0000000719a00000| PB 0x0000000719a00000| Untracked |  0<br>
| 106|0x0000000719c00000, 0x0000000719c00000, 0x0000000719e00000|  0%|<br>
F|  |TAMS 0x0000000719c00000| PB 0x0000000719c00000| Untracked |  0<br>
| 107|0x0000000719e00000, 0x0000000719e00000, 0x000000071a000000|  0%|<br>
F|  |TAMS 0x0000000719e00000| PB 0x0000000719e00000| Untracked |  0<br>
| 108|0x000000071a000000, 0x000000071a000000, 0x000000071a200000|  0%|<br>
F|  |TAMS 0x000000071a000000| PB 0x000000071a000000| Untracked |  0<br>
| 109|0x000000071a200000, 0x000000071a200000, 0x000000071a400000|  0%|<br>
F|  |TAMS 0x000000071a200000| PB 0x000000071a200000| Untracked |  0<br>
| 110|0x000000071a400000, 0x000000071a400000, 0x000000071a600000|  0%|<br>
F|  |TAMS 0x000000071a400000| PB 0x000000071a400000| Untracked |  0<br>
| 111|0x000000071a600000, 0x000000071a600000, 0x000000071a800000|  0%|<br>
F|  |TAMS 0x000000071a600000| PB 0x000000071a600000| Untracked |  0<br>
| 112|0x000000071a800000, 0x000000071a800000, 0x000000071aa00000|  0%|<br>
F|  |TAMS 0x000000071a800000| PB 0x000000071a800000| Untracked |  0<br>
| 113|0x000000071aa00000, 0x000000071aa00000, 0x000000071ac00000|  0%|<br>
F|  |TAMS 0x000000071aa00000| PB 0x000000071aa00000| Untracked |  0<br>
| 114|0x000000071ac00000, 0x000000071ac00000, 0x000000071ae00000|  0%|<br>
F|  |TAMS 0x000000071ac00000| PB 0x000000071ac00000| Untracked |  0<br>
| 115|0x000000071ae00000, 0x000000071ae00000, 0x000000071b000000|  0%|<br>
F|  |TAMS 0x000000071ae00000| PB 0x000000071ae00000| Untracked |  0<br>
| 116|0x000000071b000000, 0x000000071b000000, 0x000000071b200000|  0%|<br>
F|  |TAMS 0x000000071b000000| PB 0x000000071b000000| Untracked |  0<br>
| 117|0x000000071b200000, 0x000000071b200000, 0x000000071b400000|  0%|<br>
F|  |TAMS 0x000000071b200000| PB 0x000000071b200000| Untracked |  0<br>
| 118|0x000000071b400000, 0x000000071b400000, 0x000000071b600000|  0%|<br>
F|  |TAMS 0x000000071b400000| PB 0x000000071b400000| Untracked |  0<br>
| 119|0x000000071b600000, 0x000000071b600000, 0x000000071b800000|  0%|<br>
F|  |TAMS 0x000000071b600000| PB 0x000000071b600000| Untracked |  0<br>
| 120|0x000000071b800000, 0x000000071b800000, 0x000000071ba00000|  0%|<br>
F|  |TAMS 0x000000071b800000| PB 0x000000071b800000| Untracked |  0<br>
| 121|0x000000071ba00000, 0x000000071bc00000, 0x000000071bc00000|100%|<br>
E|  |TAMS 0x000000071ba00000| PB 0x000000071ba00000| Complete |  0<br>
|1947|0x00000007ffe00000, 0x00000007fff1c148, 0x0000000800000000| 55%|<br>
O|  |TAMS 0x00000007ffe00000| PB 0x00000007ffe00000| Untracked |  0<br>
<br>
Card table byte_map: [0x00000268f51f0000,0x00000268f5990000]<br>
_byte_map_base: 0x00000268f198c000<br>
<br>
Marking Bits: (CMBitMap*) 0x00000268e7d7dda0<br>
 Bits: [0x00000268f5990000, 0x00000268f9670000)<br>
<br>
Polling page: 0x00000268e5a80000<br>
<br>
Metaspace:<br>
<br>
Usage:<br>
  Non-class:     14.61 KB used.<br>
      Class:      6.95 KB used.<br>
       Both:     21.56 KB used.<br>
<br>
Virtual space:<br>
  Non-class space:       64.00 MB reserved,     128.00 KB ( <1%)<br>
committed,  1 nodes.<br>
      Class space:        1.00 GB reserved,     128.00 KB ( <1%)<br>
committed,  1 nodes.<br>
             Both:        1.06 GB reserved,     256.00 KB ( <1%) committed.<br>
<br>
Chunk freelists:<br>
   Non-Class:  12.00 MB<br>
       Class:  15.75 MB<br>
        Both:  27.74 MB<br>
<br>
MaxMetaspaceSize: unlimited<br>
CompressedClassSpaceSize: 1.00 GB<br>
Initial GC threshold: 21.00 MB<br>
Current GC threshold: 21.00 MB<br>
CDS: on<br>
 - commit_granule_bytes: 65536.<br>
 - commit_granule_words: 8192.<br>
 - virtual_space_node_default_size: 8388608.<br>
 - enlarge_chunks_in_place: 1.<br>
UseCompressedClassPointers 1, UseCompactObjectHeaders 0<br>
Narrow klass pointer bits 32, Max shift 3<br>
Narrow klass base: 0x0000026880000000, Narrow klass shift: 0<br>
Encoding Range: [0x0000026880000000 - 0x0000026980000000), (4294967296 bytes)<br>
Klass Range:    [0x0000026880010000 - 0x00000268c1000000), (1090453504 bytes)<br>
Klass ID Range:  [65536 - 1090519033) (1090453497)<br>
Protection zone: [0x0000026880000000 - 0x0000026880010000), (65536 bytes)<br>
<br>
<br>
Internal statistics:<br>
<br>
num_allocs_failed_limit: 0.<br>
num_arena_births: 4.<br>
num_arena_deaths: 0.<br>
num_vsnodes_births: 2.<br>
num_vsnodes_deaths: 0.<br>
num_space_committed: 4.<br>
num_space_uncommitted: 0.<br>
num_chunks_returned_to_freelist: 0.<br>
num_chunks_taken_from_freelist: 4.<br>
num_chunk_merges: 0.<br>
num_chunk_splits: 4.<br>
num_chunks_enlarged: 0.<br>
num_inconsistent_stats: 0.<br>
<br>
CodeCache: size=32768Kb used=84Kb max_used=84Kb free=32683Kb<br>
 bounds [0x00000268f1e90000, 0x00000268f1eb8000, 0x00000268f3e90000]<br>
 total_blobs=225, nmethods=0, adapters=216, full_count=0<br>
Compilation: disabled (interpreter mode), stopped_count=0, restarted_count=0<br>
<br>
Compilation events (0 events):<br>
No events<br>
<br>
GC Heap History (0 events):<br>
No events<br>
<br>
Dll operation events (2 events):<br>
Event: 0.006 Loaded shared library<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\java.dll<br>
Event: 0.286 Loaded shared library<br>
C:\Users\REDACTED\Downloads\LoadLibrary\Crash\Crash.dll<br>
<br>
Deoptimization events (0 events):<br>
No events<br>
<br>
Classes loaded (16 events):<br>
Event: 0.023 Loading class sun/nio/cs/IBM437<br>
Event: 0.023 Loading class sun/nio/cs/IBM437 done<br>
Event: 0.023 Loading class sun/nio/cs/IBM437$Holder<br>
Event: 0.023 Loading class sun/nio/cs/IBM437$Holder done<br>
Event: 0.026 Loading class jdk/internal/vm/PostVMInitHook<br>
Event: 0.026 Loading class jdk/internal/vm/PostVMInitHook done<br>
Event: 0.026 Loading class jdk/internal/loader/URLClassPath$FileLoader<br>
Event: 0.026 Loading class jdk/internal/loader/URLClassPath$FileLoader done<br>
Event: 0.027 Loading class jdk/internal/loader/URLClassPath$FileLoader$1<br>
Event: 0.027 Loading class jdk/internal/loader/URLClassPath$FileLoader$1 done<br>
Event: 0.027 Loading class java/lang/InterruptedException<br>
Event: 0.027 Loading class java/lang/InterruptedException done<br>
Event: 0.027 Loading class java/lang/CloneNotSupportedException<br>
Event: 0.027 Loading class java/lang/CloneNotSupportedException done<br>
Event: 0.028 Loading class java/util/Formatter$FixedString<br>
Event: 0.029 Loading class java/util/Formatter$FixedString done<br>
<br>
Classes unloaded (0 events):<br>
No events<br>
<br>
Classes redefined (0 events):<br>
No events<br>
<br>
Internal exceptions (0 events):<br>
No events<br>
<br>
VM Operations (0 events):<br>
No events<br>
<br>
Memory protections (0 events):<br>
No events<br>
<br>
Nmethod flushes (0 events):<br>
No events<br>
<br>
Events (9 events):<br>
Event: 0.017 Thread 0x00000268e57a3d20 Thread added: 0x00000268e57a3d20<br>
Event: 0.023 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc08cfc0<br>
Event: 0.023 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc08d5f0<br>
Event: 0.023 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc091710<br>
Event: 0.024 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc092140<br>
Event: 0.024 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc0936e0<br>
Event: 0.024 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc09d2a0<br>
Event: 0.026 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc0d8ec0<br>
Event: 0.027 Thread 0x00000268e57a3d20 Thread added: 0x00000268fc0de6e0<br>
<br>
<br>
Dynamic libraries:<br>
0x00007ff7bcd60000 - 0x00007ff7bcd70000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\java.exe<br>
0x00007ffd45be0000 - 0x00007ffd45e40000 C:\WINDOWS\SYSTEM32\ntdll.dll<br>
0x00007ffd44600000 - 0x00007ffd446c7000 C:\WINDOWS\System32\KERNEL32.DLL<br>
0x00007ffd43490000 - 0x00007ffd4385a000 C:\WINDOWS\System32\KERNELBASE.dll<br>
0x00007ffd42dc0000 - 0x00007ffd42f0b000 C:\WINDOWS\System32\ucrtbase.dll<br>
0x00007ffd30100000 - 0x00007ffd3011d000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\VCRUNTIME140.dll<br>
0x00007ffd2a470000 - 0x00007ffd2a487000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\jli.dll<br>
0x00007ffd450e0000 - 0x00007ffd452ac000 C:\WINDOWS\System32\USER32.dll<br>
0x00007ffd41f90000 - 0x00007ffd42227000<br>
C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3624_none_3e086962e3345f24\COMCTL32.dll<br>
0x00007ffd43040000 - 0x00007ffd43067000 C:\WINDOWS\System32\win32u.dll<br>
0x00007ffd44a40000 - 0x00007ffd44ae9000 C:\WINDOWS\System32\msvcrt.dll<br>
0x00007ffd44af0000 - 0x00007ffd44b1a000 C:\WINDOWS\System32\GDI32.dll<br>
0x00007ffd43130000 - 0x00007ffd43261000 C:\WINDOWS\System32\gdi32full.dll<br>
0x00007ffd433e0000 - 0x00007ffd43483000 C:\WINDOWS\System32\msvcp_win.dll<br>
0x00007ffd44560000 - 0x00007ffd4458f000 C:\WINDOWS\System32\IMM32.DLL<br>
0x00007ffd27710000 - 0x00007ffd2771c000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\vcruntime140_1.dll<br>
0x00007ffd14e00000 - 0x00007ffd14e8d000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\msvcp140.dll<br>
0x00007ffceaf00000 - 0x00007ffceb4cf000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\zero\jvm.dll<br>
0x00007ffd452b0000 - 0x00007ffd45362000 C:\WINDOWS\System32\ADVAPI32.dll<br>
0x00007ffd44780000 - 0x00007ffd44826000 C:\WINDOWS\System32\sechost.dll<br>
0x00007ffd442d0000 - 0x00007ffd443e6000 C:\WINDOWS\System32\RPCRT4.dll<br>
0x00007ffd446d0000 - 0x00007ffd44744000 C:\WINDOWS\System32\WS2_32.dll<br>
0x00007ffd42c30000 - 0x00007ffd42c8e000 C:\WINDOWS\SYSTEM32\POWRPROF.dll<br>
0x00007ffd332f0000 - 0x00007ffd33326000 C:\WINDOWS\SYSTEM32\WINMM.dll<br>
0x00007ffd391c0000 - 0x00007ffd391cb000 C:\WINDOWS\SYSTEM32\VERSION.dll<br>
0x00007ffd16d70000 - 0x00007ffd16d81000 C:\msys64\ucrt64\bin\libffi-8.dll<br>
0x00007ffd42c10000 - 0x00007ffd42c24000 C:\WINDOWS\SYSTEM32\UMPDC.dll<br>
0x00007ffd41a60000 - 0x00007ffd41a6c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL<br>
0x00007ffd42fa0000 - 0x00007ffd43039000 C:\WINDOWS\System32\bcryptPrimitives.dll<br>
0x00007ffd41270000 - 0x00007ffd4128a000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll<br>
0x00007ffd27060000 - 0x00007ffd2706a000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\jimage.dll<br>
0x00007ffd42540000 - 0x00007ffd42781000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL<br>
0x00007ffd44d50000 - 0x00007ffd450d2000 C:\WINDOWS\System32\combase.dll<br>
0x00007ffd439e0000 - 0x00007ffd43ab6000 C:\WINDOWS\System32\OLEAUT32.dll<br>
0x00007ffd01660000 - 0x00007ffd01699000 C:\WINDOWS\SYSTEM32\dbgcore.DLL<br>
0x00007ffd16d50000 - 0x00007ffd16d6d000<br>
C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\java.dll<br>
0x00007ffd44b20000 - 0x00007ffd44cb6000 C:\WINDOWS\System32\ole32.dll<br>
0x00007ffd45370000 - 0x00007ffd45a99000 C:\WINDOWS\System32\SHELL32.dll<br>
0x00007ffd43270000 - 0x00007ffd433d8000 C:\WINDOWS\System32\wintypes.dll<br>
0x00007ffd3ff80000 - 0x00007ffd407d2000 C:\WINDOWS\SYSTEM32\windows.storage.dll<br>
0x00007ffd44400000 - 0x00007ffd444ed000 C:\WINDOWS\System32\SHCORE.dll<br>
0x00007ffd444f0000 - 0x00007ffd44554000 C:\WINDOWS\System32\shlwapi.dll<br>
0x00007ffd42cd0000 - 0x00007ffd42cff000 C:\WINDOWS\SYSTEM32\profapi.dll<br>
0x00007ffd15180000 - 0x00007ffd15192000<br>
C:\Users\REDACTED\Downloads\LoadLibrary\Crash\Crash.dll<br>
<br>
JVMTI agents: none<br>
<br>
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none<br>
symbol engine: initialized successfully - sym options: 0x614 - pdb<br>
path: .;C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3624_none_3e086962e3345f24;C:\Users\REDACTED\Downloads\eclipse-committers-2023-12-R-win32-x86_64\Workspace\jdk\build\windows-x86_64-zero-release\images\jdk\bin\zero;C:\msys64\ucrt64\bin;C:\Users\REDACTED\Downloads\LoadLibrary\Crash<br>
<br>
VM Arguments:<br>
jvm_args: --enable-preview<br>
java_command: Crash<br>
java_class_path (initial): C:/Users/REDACTED/Downloads/LoadLibrary/Crash<br>
Launcher Type: SUN_STANDARD<br>
<br>
[Global flags]<br>
     uint ConcGCThreads                            = 5<br>
                        {product} {ergonomic}<br>
     uint G1ConcRefinementThreads                  = 18<br>
                        {product} {ergonomic}<br>
   size_t G1HeapRegionSize                         = 2097152<br>
                        {product} {ergonomic}<br>
   size_t InitialHeapSize                          = 255852544<br>
                        {product} {ergonomic}<br>
   size_t MarkStackSize                            = 4194304<br>
                        {product} {ergonomic}<br>
   size_t MarkStackSizeMax                         = 536870912<br>
                        {product} {ergonomic}<br>
   size_t MaxHeapSize                              = 4085252096<br>
                        {product} {ergonomic}<br>
   size_t MaxNewSize                               = 2449473536<br>
                        {product} {ergonomic}<br>
   size_t MinHeapDeltaBytes                        = 2097152<br>
                        {product} {ergonomic}<br>
   size_t MinHeapSize                              = 8388608<br>
                        {product} {ergonomic}<br>
    uintx NonNMethodCodeHeapSize                   = 4096<br>
                     {pd product} {ergonomic}<br>
    uintx NonProfiledCodeHeapSize                  = 0<br>
                     {pd product} {ergonomic}<br>
    uintx ProfiledCodeHeapSize                     = 0<br>
                     {pd product} {ergonomic}<br>
   size_t SoftMaxHeapSize                          = 4085252096<br>
                     {manageable} {ergonomic}<br>
     bool UseCompressedOops                        = true<br>
             {product lp64_product} {ergonomic}<br>
     bool UseG1GC                                  = true<br>
                        {product} {ergonomic}<br>
     bool UseLargePagesIndividualAllocation        = false<br>
                     {pd product} {ergonomic}<br>
<br>
Logging:<br>
Log output configuration:<br>
 #0: stdout all=warning uptime,level,tags foldmultilines=false<br>
 #1: stderr all=off uptime,level,tags foldmultilines=false<br>
<br>
Release file:<br>
IMPLEMENTOR="N/A"<br>
JAVA_RUNTIME_VERSION="25-internal"<br>
JAVA_VERSION="25"<br>
JAVA_VERSION_DATE="2025-09-16"<br>
LIBC="default"<br>
MODULES="java.base java.compiler java.datatransfer java.xml java.prefs<br>
java.desktop java.instrument java.logging java.management<br>
java.security.sasl java.naming java.rmi java.management.rmi<br>
java.net.http java.scripting java.security.jgss java.transaction.xa<br>
java.sql java.sql.rowset java.xml.crypto <a href="http://java.se" rel="noreferrer" target="_blank">java.se</a> java.smartcardio<br>
jdk.accessibility jdk.internal.jvmstat jdk.attach jdk.charsets<br>
jdk.internal.opt jdk.zipfs jdk.compiler jdk.crypto.cryptoki<br>
<a href="http://jdk.crypto.ec" rel="noreferrer" target="_blank">jdk.crypto.ec</a> jdk.crypto.mscapi jdk.dynalink jdk.internal.ed<br>
jdk.editpad jdk.httpserver jdk.incubator.vector jdk.internal.le<br>
<a href="http://jdk.internal.md" rel="noreferrer" target="_blank">jdk.internal.md</a> jdk.jartool jdk.javadoc jdk.jcmd jdk.management<br>
jdk.management.agent jdk.jconsole jdk.jdeps jdk.jdwp.agent jdk.jdi<br>
jdk.jfr jdk.jlink jdk.jpackage jdk.jshell jdk.jsobject jdk.jstatd<br>
jdk.localedata jdk.management.jfr jdk.naming.dns jdk.naming.rmi<br>
<a href="http://jdk.net" rel="noreferrer" target="_blank">jdk.net</a> jdk.nio.mapmode jdk.sctp jdk.security.auth jdk.security.jgss<br>
jdk.unsupported jdk.unsupported.desktop jdk.xml.dom"<br>
OS_ARCH="x86_64"<br>
OS_NAME="Windows"<br>
SOURCE=".:git:8f7652d7a36b+"<br>
<br>
Environment Variables:<br>
PATH=C:\msys64\ucrt64\bin;C:\msys64\usr\local\bin;C:\msys64\usr\bin;C:\msys64\usr\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\msys64\usr\bin\site_perl;C:\msys64\usr\bin\vendor_perl;C:\msys64\usr\bin\core_perl<br>
USERNAME=REDACTED<br>
SHELL=C:\msys64\usr\bin\bash.exe<br>
LC_CTYPE=en_US.UTF-8<br>
TERM=xterm<br>
OS=Windows_NT<br>
PROCESSOR_IDENTIFIER=AMD64 Family 25 Model 97 Stepping 2, AuthenticAMD<br>
TMP=C:\msys64\tmp<br>
TEMP=C:\msys64\tmp<br>
<br>
<br>
<br>
<br>
Compilation memory statistics disabled.<br>
<br>
Periodic native trim disabled<br>
<br>
---------------  S Y S T E M  ---------------<br>
<br>
OS:<br>
 Windows 11 , 64 bit Build 26100 (10.0.26100.3775)<br>
OS uptime: 0 days 1:47 hours<br>
<br>
CPU: total 24 (initial active 24)<br>
Processor Information for processor 0<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 1<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 2<br>
  Max Mhz: 3001, Current Mhz: 3001, Mhz Limit: 3001<br>
Processor Information for processor 3<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 4<br>
  Max Mhz: 3001, Current Mhz: 3001, Mhz Limit: 3001<br>
Processor Information for processor 5<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 6<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 7<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 8<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 9<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 10<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 11<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 12<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 13<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 14<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 15<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 16<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 17<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 18<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 19<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 20<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 21<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 22<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
Processor Information for processor 23<br>
  Max Mhz: 3001, Current Mhz: 2490, Mhz Limit: 3001<br>
<br>
Memory: 4k page, system-wide physical 15578M (1690M free)<br>
TotalPageFile size 44250M (AvailPageFile size 20548M)<br>
current process WorkingSet (physical memory assigned to process): 64M, peak: 64M<br>
current process commit charge ("private bytes"): 373M, peak: 373M<br>
<br>
vm_info: Java HotSpot 64-Bit Zero VM (25-internal) for windows-amd64<br>
JRE (25-internal), built on 2025-04-17T14:32:22Z with MS VC++ 17.8<br>
(VS2022)<br>
<br>
END.<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/BUILD_LIBJVM_pch.o.log-161-Note:<br>
including file:       jdk\src\hotspot\cpu\zero\bytes_zero.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/BUILD_LIBJVM_pch.o.log:162:jdk\src\hotspot\cpu\zero\bytes_zero.hpp(31):<br>
warning C5030: attribute [[gnu::packed]] is not recognized<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/BUILD_LIBJVM_pch.o.log-320-Note:<br>
including file:      jdk\src\hotspot\cpu\zero\stack_zero.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/BUILD_LIBJVM_pch.o.log:321:jdk\src\hotspot\cpu\zero\stack_zero.hpp(92):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/interpreterRT_zero.o.log-13-Note:<br>
including file: jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/interpreterRT_zero.o.log:14:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(51):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/interpreterRT_zero.o.log:15:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(53):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/interpreterRT_zero.o.log:16:jdk\src\hotspot\cpu\zero\interpreterRT_zero.cpp(161):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/os_windows.o.log-168-Note:<br>
including file:         jdk\src\hotspot\cpu\zero\bytes_zero.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/os_windows.o.log:169:jdk\src\hotspot\cpu\zero\bytes_zero.hpp(31):<br>
warning C5030: attribute [[gnu::packed]] is not recognized<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/os_windows.o.log-307-Note:<br>
including file:    jdk\src\hotspot\cpu\zero\stack_zero.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/os_windows.o.log:308:jdk\src\hotspot\cpu\zero\stack_zero.hpp(92):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/stack_zero.o.log-7-Note:<br>
including file: jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/stack_zero.o.log:8:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(51):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/stack_zero.o.log:9:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(53):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/stack_zero.o.log:10:jdk\src\hotspot\cpu\zero\stack_zero.cpp(36):<br>
warning C4267: '=': conversion from 'size_t' to 'int', possible loss<br>
of data<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/stubGenerator_zero.o.log-12-Note:<br>
including file: jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/stubGenerator_zero.o.log:13:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(51):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/stubGenerator_zero.o.log:14:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(53):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/zeroInterpreter_zero.o.log-28-Note:<br>
including file: jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/zeroInterpreter_zero.o.log:29:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(51):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
/jdk/build/windows-x86_64-zero-release/hotspot/variant-zero/libjvm/objects/zeroInterpreter_zero.o.log:30:jdk\src\hotspot\cpu\zero\stack_zero.inline.hpp(53):<br>
warning C4267: 'initializing': conversion from 'size_t' to 'int',<br>
possible loss of data<br>
<br>
Generating code<br>
Previous IPDB not found, fall back to full compilation.<br>
s\src\hotspot\share\compiler\compilationPolicy.cpp(457) : warning<br>
C4723: potential divide by 0<br>
s\src\hotspot\share\compiler\compilationPolicy.cpp(457) : warning<br>
C4723: potential divide by 0<br>
s\src\hotspot\share\compiler\compilationPolicy.cpp(457) : warning<br>
C4723: potential divide by 0<br>
All 52893 functions were compiled because no usable IPDB/IOBJ from<br>
previous compilation was found.<br>
Finished generating code<br>
</blockquote></div>