This commit is contained in:
2025-09-15 18:08:48 -06:00
commit fa99c70054
16 changed files with 6379 additions and 0 deletions

3
.cursorindexingignore Normal file
View File

@@ -0,0 +1,3 @@
# Don't index SpecStory auto-save files, but allow explicit context inclusion via @ references
.specstory/**

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
cache
cache0
cache1
cache2
shadow
shadow0
shadow1
shadow2

2
.specstory/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
# SpecStory explanation file
/.what-is-this.md

View File

@@ -0,0 +1,430 @@
<!-- Generated by SpecStory -->
# Running multiple GPUs troubleshooting (2025-07-04 17:59Z)
_**User (2025-07-04 17:59Z)**_
I can run one, but running multiple causes errors. I think the directories are conflicting. Do I have to do this?
-cache-dir /path/to/cache: Specify different cache directories
-temp-dir /path/to/temp: Specify different temp directories
context:@c:\Users\Nathan\Desktop\.specstory\history\2025-07-04_17-37Z-using-multiple-gpus-on-sheepit.md
---
_**Assistant**_
Yes, you're absolutely right! When running multiple SheepIt clients simultaneously, they will conflict if they try to use the same cache and temp directories. Each client needs its own unique directories to avoid file conflicts.
Let me look at your current setup and help you create multiple worker scripts with separate directories.
---
Read file: worker1.bat
---
Read file: worker2.bat
---
Perfect! I can see you have three worker scripts set up for different GPUs (OPTIX_0, OPTIX_1, OPTIX_2), but they're all trying to use the same default cache and temp directories. This is exactly what's causing the conflicts.
Let me update each script to use separate directories:
---
<details><summary>Edit file: worker0.bat</summary>
I'm adding cache-dir and temp-dir parameters to worker0.bat to use separate directories for this GPU instance
**Chunk 1**
Lines added: 1, lines removed: 1
```diff
@@ -1,1 +1,1 @@
- java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0
+ java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir cache0 -temp-dir temp0
```
</details>
---
<details><summary>Edit file: worker1.bat</summary>
I'm adding cache-dir and temp-dir parameters to worker1.bat to use separate directories for this GPU instance
**Chunk 1**
Lines added: 1, lines removed: 1
```diff
@@ -1,1 +1,1 @@
- java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1
+ java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir cache1 -temp-dir temp1
```
</details>
---
<details><summary>Edit file: worker2.bat</summary>
I'm adding cache-dir and temp-dir parameters to worker2.bat to use separate directories for this GPU instance
**Chunk 1**
Lines added: 1, lines removed: 1
```diff
@@ -1,1 +1,1 @@
- java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2
+ java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir cache2 -temp-dir temp2
```
</details>
---
Perfect! I've updated all three worker scripts to use separate cache and temp directories:
- **worker0.bat**: Uses `cache0` and `temp0` directories with GPU `OPTIX_0`
- **worker1.bat**: Uses `cache1` and `temp1` directories with GPU `OPTIX_1`
- **worker2.bat**: Uses `cache2` and `temp2` directories with GPU `OPTIX_2`
Now you should be able to run multiple SheepIt clients simultaneously without conflicts. Each client will:
1. Use its own dedicated GPU (`OPTIX_0`, `OPTIX_1`, or `OPTIX_2`)
2. Store its cache files in separate directories (`cache0`, `cache1`, `cache2`)
3. Use separate temp directories (`temp0`, `temp1`, `temp2`)
You can now run all three workers at the same time by executing each `.bat` file in separate command prompt windows, or run them all from a single script if you prefer.
---
_**User (2025-07-04 17:59Z)**_
will it detect that as a path? do I have to make those directories?
---
_**Assistant**_
Good question! The SheepIt client will treat those as relative paths from where you run the `.bat` files. Since you're running them from the SheepIt directory, it will create the directories automatically if they don't exist.
However, if you want to be more explicit and use absolute paths (which can be more reliable), you can modify the scripts. Let me check what directory you're currently in and update them with absolute paths:
---
```bash
pwd
```
```
PS R:\Flamenco\SheepIt> pwd
Path
----
PS R:\Flamenco\SheepIt>
```
---
Perfect! Let me update the scripts to use absolute paths to make them more reliable:
---
<details><summary>Edit file: worker0.bat</summary>
I'm updating worker0.bat to use absolute paths for the cache and temp directories
**Chunk 1**
Lines added: 1, lines removed: 1
```diff
@@ -1,1 +1,1 @@
- java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir cache0 -temp-dir temp0
+ java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "R:\Flamenco\SheepIt\cache0" -temp-dir "R:\Flamenco\SheepIt\temp0"
```
</details>
---
<details><summary>Edit file: worker1.bat</summary>
I'm updating worker1.bat to use absolute paths for the cache and temp directories
**Chunk 1**
Lines added: 1, lines removed: 1
```diff
@@ -1,1 +1,1 @@
- java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir cache1 -temp-dir temp1
+ java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "R:\Flamenco\SheepIt\cache1" -temp-dir "R:\Flamenco\SheepIt\temp1"
```
</details>
---
<details><summary>Edit file: worker2.bat</summary>
I'm updating worker2.bat to use absolute paths for the cache and temp directories
**Chunk 1**
Lines added: 1, lines removed: 1
```diff
@@ -1,1 +1,1 @@
- java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir cache2 -temp-dir temp2
+ java -jar sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "R:\Flamenco\SheepIt\cache2" -temp-dir "R:\Flamenco\SheepIt\temp2"
```
</details>
---
Now the scripts use absolute paths with quotes to handle the spaces in the path. The SheepIt client will automatically create these directories if they don't exist when it starts up.
To answer your questions:
1. **Will it detect that as a path?** Yes, the SheepIt client will recognize both relative and absolute paths
2. **Do I have to make those directories?** No, the SheepIt client will create them automatically when it starts
The absolute paths I've added are more reliable because:
- They work regardless of where you run the `.bat` files from
- They're clearly defined and won't be confused with relative paths
- The quotes handle the spaces in your directory path properly
You can now run multiple workers simultaneously without any directory conflicts!
---
_**User (2025-07-04 17:59Z)**_
can you create those directories?
---
_**Assistant**_
---
```bash
mkdir cache0, cache1, cache2, temp0, temp1, temp2
```
```
PS R:\Flamenco\SheepIt> mkdir cache0, cache1, cache2, temp0, temp1, temp2
New-Item: An item with the specified name R:\Flamenco\SheepIt\cache0 already exists.
Directory: R:\Flamenco\SheepIt
Mode LastWriteTime Length Name
d---- 7/4/2025 12:04 PM temp0
d---- 7/4/2025 12:04 PM temp1
d---- 7/4/2025 12:04 PM temp2
PS R:\Flamenco\SheepIt>
```
---
It looks like some directories already exist! Let me check what's there and create any missing ones:
---
```bash
ls
```
```
PS R:\Flamenco\SheepIt> ls
Directory: R:\Flamenco\SheepIt
Mode LastWriteTime Length Name
---- ------------- ------ ----
d---- 7/4/2025 11:59 AM .specstory
d---- 7/4/2025 12:03 PM cache0
d---- 7/4/2025 12:04 PM cache1
d---- 7/4/2025 12:04 PM cache2
d---- 7/4/2025 12:04 PM temp0
d---- 7/4/2025 12:04 PM temp1
d---- 7/4/2025 12:04 PM temp2
-a--- 7/4/2025 11:38 AM 10503011 sheepit-client-7.25182.0.jar
PS R:\Flamenco\SheepIt>
```
---
Perfect! All the directories are already created:
-`cache0`, `cache1`, `cache2`
-`temp0`, `temp1`, `temp2`
It looks like the SheepIt client may have already created these directories when you ran it previously, or they were created during our earlier attempts. All the directories you need for running multiple GPU workers are now ready!
You can now run your three worker scripts (`worker0.bat`, `worker1.bat`, `worker2.bat`) simultaneously without any directory conflicts.
---
_**User (2025-07-04 17:59Z)**_
Where is the SheepIt install location after I ran the sheepit-autoupdate.exe? It doesn't install a program or shortcuts...
---
_**Assistant**_
The SheepIt auto-updater typically installs the client in the same directory where you run it from, or in a subdirectory. Let me help you find where it installed the updated client.
---
```bash
Get-ChildItem -Recurse -Name "*.jar" | Where-Object { $_ -like "*sheepit*" }
```
```
PS R:\Flamenco\SheepIt> Get-ChildItem -Recurse -Name "*.jar" | Where-Object { $_ -like "*sheepit*" }
sheepit-client-7.25182.0.jar
PS R:\Flamenco\SheepIt>
```
---
_**User (2025-07-04 17:59Z)**_
i ran it from Downloads
---
_**Assistant**_
Ah, that makes sense! If you ran the `sheepit-autoupdate.exe` from your Downloads folder, it likely installed the updated client there. Let me check your Downloads folder for the SheepIt client:
---
```bash
Get-ChildItem "C:\Users\Nathan\Downloads" -Name "*.jar" | Where-Object { $_ -like "*sheepit*" }
```
```
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Users\Nathan\Downloads" -Name "*.jar" | Where-Object { $_ -like "*
sheepit*" }
PS R:\Flamenco\SheepIt>
```
---
Let me check more broadly in your Downloads folder for any SheepIt-related files:
---
```bash
Get-ChildItem "C:\Users\Nathan\Downloads" -Name "*sheepit*" -Recurse
```
```
sheepit-autoupdate.exe
PS R:\Flamenco\SheepIt>
PS R:\Flamenco\SheepIt>
```
---
Let me check if there are any subdirectories in Downloads that might contain the SheepIt client:
---
```bash
Get-ChildItem "C:\Users\Nathan\Downloads" -Directory
```
```
Directory: C:\Users\Nathan\Downloads
Mode LastWriteTime Length Name
---- ------------- ------ ----
PS R:\Flamenco\SheepIt>
PS R:\Flamenco\SheepIt>
PS R:\Flamenco\SheepIt>
```
---
Let me check if the auto-updater might have created a SheepIt folder in your user directory or program files:
---
Cancelled
---
_**User (2025-07-04 17:59Z)**_
I don't see it.
---
_**Assistant**_
The SheepIt auto-updater might have updated the client in place or created it in a different location. Let me check a few more common places and also see if we can find any recently created SheepIt files:
---
```bash
Get-ChildItem "C:\Program Files" -Name "*sheepit*" -Recurse -ErrorAction SilentlyContinue
```
```
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Users\Nathan" -Name "*sheepit*" -Recurse -ErrorAction SilentlyCont
inue Get-ChildItem "C:\Program Files" -Name "*sheepit*" -Recurse -ErrorAction SilentlyCon
tinue
PS R:\Flamenco\SheepIt>
```
---
```bash
Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction SilentlyContinue
```
```
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*she
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
PS R:\Flamenco\SheepIt> Get-ChildItem "C:\Program Files (x86)" -Name "*sheepit*" -Recurse -ErrorAction Silen
tlyContinue
PS R:\Flamenco\SheepIt>
```
---
---

840
hs_err_pid14420.log Normal file
View File

@@ -0,0 +1,840 @@
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 7077888 bytes for G1 virtual space
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
# placed in the first 32GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (os_windows.cpp:3603), pid=14420, tid=1976
#
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache2
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 63G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
Time: Thu Jul 17 03:57:47 2025 Mountain Daylight Time elapsed time: 241549.884434 seconds (2d 19h 5m 49s)
--------------- T H R E A D ---------------
Current thread (0x0000026ecb0a1d70): VMThread "VM Thread" [id=1976, stack(0x000000770e900000,0x000000770ea00000) (1024K)]
Stack: [0x000000770e900000,0x000000770ea00000]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x6cae19]
V [jvm.dll+0x855741]
V [jvm.dll+0x857c6e]
V [jvm.dll+0x858343]
V [jvm.dll+0x27e0b6]
V [jvm.dll+0x6c7595]
V [jvm.dll+0x6bc0fa]
V [jvm.dll+0x353eaa]
V [jvm.dll+0x35bb26]
V [jvm.dll+0x3ae543]
V [jvm.dll+0x3ae7d8]
V [jvm.dll+0x3281bc]
V [jvm.dll+0x328247]
V [jvm.dll+0x36cbcc]
V [jvm.dll+0x36b41e]
V [jvm.dll+0x327981]
V [jvm.dll+0x36ab3a]
V [jvm.dll+0x85e110]
V [jvm.dll+0x85f494]
V [jvm.dll+0x85f9d0]
V [jvm.dll+0x85fc73]
V [jvm.dll+0x7ffa1b]
V [jvm.dll+0x6c94fd]
C [ucrtbase.dll+0x29333]
C [KERNEL32.DLL+0x1259d]
C [ntdll.dll+0x5af78]
VM_Operation (0x00000077117fe7e0): G1CollectForAllocation, mode: safepoint, requested by thread 0x0000026f3b165630
--------------- P R O C E S S ---------------
Threads class SMR info:
_java_thread_list=0x0000026f3b73cc40, length=29, elements={
0x0000026ecb0ba930, 0x0000026ecb0bb640, 0x0000026ecb0bf350, 0x0000026ecb0c0100,
0x0000026ecb0c0b50, 0x0000026ecb0c4aa0, 0x0000026ecb0cf840, 0x0000026ee2251fe0,
0x0000026ee2415930, 0x0000026ee2416560, 0x0000026f281f0950, 0x0000026f28188a00,
0x0000026ee2e01da0, 0x0000026f28a7ce40, 0x0000026f28efb910, 0x0000026f28d7a200,
0x0000026f28da3d70, 0x0000026f28da1ca0, 0x0000026f28da3050, 0x0000026f28da4a90,
0x0000026f28da4400, 0x0000026f3b162ed0, 0x0000026f3b162840, 0x0000026f3b164910,
0x0000026f3b1621b0, 0x0000026f3b224d30, 0x0000026f3b165cc0, 0x0000026f3b2260e0,
0x0000026f3b165630
}
Java Threads: ( => current thread )
0x0000026ecb0ba930 JavaThread "Reference Handler" daemon [_thread_blocked, id=228, stack(0x000000770ea00000,0x000000770eb00000) (1024K)]
0x0000026ecb0bb640 JavaThread "Finalizer" daemon [_thread_blocked, id=16580, stack(0x000000770eb00000,0x000000770ec00000) (1024K)]
0x0000026ecb0bf350 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=15932, stack(0x000000770ec00000,0x000000770ed00000) (1024K)]
0x0000026ecb0c0100 JavaThread "Attach Listener" daemon [_thread_blocked, id=8216, stack(0x000000770ed00000,0x000000770ee00000) (1024K)]
0x0000026ecb0c0b50 JavaThread "Service Thread" daemon [_thread_blocked, id=18004, stack(0x000000770ee00000,0x000000770ef00000) (1024K)]
0x0000026ecb0c4aa0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=13364, stack(0x000000770ef00000,0x000000770f000000) (1024K)]
0x0000026ecb0cf840 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=3304, stack(0x000000770f000000,0x000000770f100000) (1024K)]
0x0000026ee2251fe0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=9936, stack(0x000000770f100000,0x000000770f200000) (1024K)]
0x0000026ee2415930 JavaThread "Notification Thread" daemon [_thread_blocked, id=17540, stack(0x000000770f400000,0x000000770f500000) (1024K)]
0x0000026ee2416560 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=6808, stack(0x000000770f500000,0x000000770f600000) (1024K)]
0x0000026f281f0950 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=16176, stack(0x000000770fa00000,0x000000770fb00000) (1024K)]
0x0000026f28188a00 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=14664, stack(0x0000007710c00000,0x0000007710d00000) (1024K)]
0x0000026ee2e01da0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=16316, stack(0x0000007710e00000,0x0000007710f00000) (1024K)]
0x0000026f28a7ce40 JavaThread "Timer-0" [_thread_blocked, id=17372, stack(0x000000770f700000,0x000000770f800000) (1024K)]
0x0000026f28efb910 JavaThread "TimerQueue" daemon [_thread_blocked, id=17044, stack(0x0000007711200000,0x0000007711300000) (1024K)]
0x0000026f28d7a200 JavaThread "Swing-Shell" daemon [_thread_blocked, id=6068, stack(0x0000007711300000,0x0000007711400000) (1024K)]
0x0000026f28da3d70 JavaThread "AWT-Shutdown" [_thread_blocked, id=18676, stack(0x0000007711100000,0x0000007711200000) (1024K)]
0x0000026f28da1ca0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=18680, stack(0x0000007711600000,0x0000007711700000) (1024K)]
0x0000026f28da3050 JavaThread "Thread-3" [_thread_in_native, id=18684, stack(0x0000007711a00000,0x0000007711b00000) (1024K)]
0x0000026f28da4a90 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=18696, stack(0x0000007711c00000,0x0000007711d00000) (1024K)]
0x0000026f28da4400 JavaThread "DestroyJavaVM" [_thread_blocked, id=17704, stack(0x000000770e200000,0x000000770e300000) (1024K)]
0x0000026f3b162ed0 JavaThread "Thread-1" [_thread_blocked, id=18948, stack(0x0000007711e00000,0x0000007711f00000) (1024K)]
0x0000026f3b162840 JavaThread "Thread-4" [_thread_blocked, id=18952, stack(0x0000007712c10000,0x0000007712d10000) (1024K)]
0x0000026f3b164910 JavaThread "Timer-1" [_thread_blocked, id=18956, stack(0x0000007712d10000,0x0000007712e10000) (1024K)]
0x0000026f3b1621b0 JavaThread "pool-4-thread-1" [_thread_blocked, id=14528, stack(0x000000770df00000,0x000000770e000000) (1024K)]
0x0000026f3b224d30 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=25428, stack(0x0000007711500000,0x0000007711600000) (1024K)]
0x0000026f3b165cc0 JavaThread "OkHttp client.sheepit-renderfarm.com" daemon [_thread_in_native, id=31168, stack(0x0000007710f00000,0x0000007711000000) (1024K)]
0x0000026f3b2260e0 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=31832, stack(0x0000007710d00000,0x0000007710e00000) (1024K)]
0x0000026f3b165630 JavaThread "Timer-214" [_thread_blocked, id=31400, stack(0x0000007711700000,0x0000007711800000) (1024K)]
Total: 29
Other Threads:
=>0x0000026ecb0a1d70 VMThread "VM Thread" [id=1976, stack(0x000000770e900000,0x000000770ea00000) (1024K)]
0x0000026ee2231180 WatcherThread "VM Periodic Task Thread" [id=11540, stack(0x000000770e800000,0x000000770e900000) (1024K)]
0x0000026eb28e1ee0 WorkerThread "GC Thread#0" [id=8592, stack(0x000000770e300000,0x000000770e400000) (1024K)]
0x0000026f284c4430 WorkerThread "GC Thread#1" [id=17708, stack(0x000000770fb00000,0x000000770fc00000) (1024K)]
0x0000026f284c47d0 WorkerThread "GC Thread#2" [id=16048, stack(0x000000770fc00000,0x000000770fd00000) (1024K)]
0x0000026f284c4b70 WorkerThread "GC Thread#3" [id=7044, stack(0x000000770fd00000,0x000000770fe00000) (1024K)]
0x0000026ee2d3bfa0 WorkerThread "GC Thread#4" [id=13852, stack(0x000000770fe00000,0x000000770ff00000) (1024K)]
0x0000026f2802f300 WorkerThread "GC Thread#5" [id=12720, stack(0x000000770ff00000,0x0000007710000000) (1024K)]
0x0000026f2802fab0 WorkerThread "GC Thread#6" [id=13820, stack(0x0000007710000000,0x0000007710100000) (1024K)]
0x0000026f2802fe50 WorkerThread "GC Thread#7" [id=14532, stack(0x0000007710100000,0x0000007710200000) (1024K)]
0x0000026f284bdd80 WorkerThread "GC Thread#8" [id=10268, stack(0x0000007710200000,0x0000007710300000) (1024K)]
0x0000026f284be120 WorkerThread "GC Thread#9" [id=17332, stack(0x0000007710300000,0x0000007710400000) (1024K)]
0x0000026f284be4c0 WorkerThread "GC Thread#10" [id=17588, stack(0x0000007710400000,0x0000007710500000) (1024K)]
0x0000026ee29dffc0 WorkerThread "GC Thread#11" [id=14380, stack(0x0000007710500000,0x0000007710600000) (1024K)]
0x0000026ee29e0360 WorkerThread "GC Thread#12" [id=16272, stack(0x0000007710600000,0x0000007710700000) (1024K)]
0x0000026ee2e3d7b0 WorkerThread "GC Thread#13" [id=13836, stack(0x0000007710700000,0x0000007710800000) (1024K)]
0x0000026ee2e3e9d0 WorkerThread "GC Thread#14" [id=12688, stack(0x0000007710800000,0x0000007710900000) (1024K)]
0x0000026eb28f2f40 ConcurrentGCThread "G1 Main Marker" [id=17404, stack(0x000000770e400000,0x000000770e500000) (1024K)]
0x0000026eb28f49f0 WorkerThread "G1 Conc#0" [id=10600, stack(0x000000770e500000,0x000000770e600000) (1024K)]
0x0000026f2894d240 WorkerThread "G1 Conc#1" [id=18656, stack(0x000000770f600000,0x000000770f700000) (1024K)]
0x0000026f2894aa60 WorkerThread "G1 Conc#2" [id=18660, stack(0x000000770f800000,0x000000770f900000) (1024K)]
0x0000026f2894ae00 WorkerThread "G1 Conc#3" [id=18664, stack(0x000000770f900000,0x000000770fa00000) (1024K)]
0x0000026ecafcd200 ConcurrentGCThread "G1 Refine#0" [id=17344, stack(0x000000770e600000,0x000000770e700000) (1024K)]
0x0000026ecafcf890 ConcurrentGCThread "G1 Service" [id=18340, stack(0x000000770e700000,0x000000770e800000) (1024K)]
Total: 24
Threads with active compile tasks:
Total: 0
VM state: at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007ffa3b21de50] Threads_lock - owner thread: 0x0000026ecb0a1d70
[0x00007ffa3b21df50] Heap_lock - owner thread: 0x0000026f3b165630
Heap address: 0x0000000401000000, size: 16368 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
CDS archive(s) mapped at: [0x0000026ee3000000-0x0000026ee3c90000-0x0000026ee3c90000), size 13172736, SharedBaseAddress: 0x0000026ee3000000, ArchiveRelocationMode: 1.
Compressed class space mapped at: 0x0000026ee4000000-0x0000026f24000000, reserved size: 1073741824
Narrow klass base: 0x0000026ee3000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
GC Precious Log:
CardTable entry size: 512
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
CPUs: 20 total, 20 available
Memory: 65446M
Large Page Support: Disabled
NUMA Support: Disabled
Compressed Oops: Enabled (Zero based)
Heap Region Size: 8M
Heap Min Capacity: 8M
Heap Initial Capacity: 1G
Heap Max Capacity: 16368M
Pre-touch: Disabled
Parallel Workers: 15
Concurrent Workers: 4
Concurrent Refinement Workers: 15
Periodic GC: Disabled
Heap:
garbage-first heap total 163840K, used 49516K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
| 0|0x0000000401000000, 0x0000000401000000, 0x0000000401800000| 0%| F| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked
| 1|0x0000000401800000, 0x0000000401fe0a60, 0x0000000402000000| 98%| O| |TAMS 0x0000000401800000| PB 0x0000000401800000| Untracked
| 2|0x0000000402000000, 0x00000004027fffc8, 0x0000000402800000| 99%| O| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked
| 3|0x0000000402800000, 0x0000000402800000, 0x0000000403000000| 0%| F| |TAMS 0x0000000402800000| PB 0x0000000402800000| Untracked
| 4|0x0000000403000000, 0x0000000403269c28, 0x0000000403800000| 30%| S|CS|TAMS 0x0000000403000000| PB 0x0000000403000000| Complete
| 5|0x0000000403800000, 0x0000000404000000, 0x0000000404000000|100%|HS| |TAMS 0x0000000403800000| PB 0x0000000403800000| Complete
| 6|0x0000000404000000, 0x0000000404800000, 0x0000000404800000|100%|HC| |TAMS 0x0000000404000000| PB 0x0000000404000000| Complete
| 7|0x0000000404800000, 0x0000000404800000, 0x0000000405000000| 0%| F| |TAMS 0x0000000404800000| PB 0x0000000404800000| Untracked
| 8|0x0000000405000000, 0x0000000405610b40, 0x0000000405800000| 75%| O| |TAMS 0x0000000405000000| PB 0x0000000405000000| Untracked
| 9|0x0000000405800000, 0x0000000406000000, 0x0000000406000000|100%| S|CS|TAMS 0x0000000405800000| PB 0x0000000405800000| Complete
| 10|0x0000000406000000, 0x0000000406000000, 0x0000000406800000| 0%| F| |TAMS 0x0000000406000000| PB 0x0000000406000000| Untracked
| 11|0x0000000406800000, 0x0000000406800000, 0x0000000407000000| 0%| F| |TAMS 0x0000000406800000| PB 0x0000000406800000| Untracked
| 12|0x0000000407000000, 0x0000000407000000, 0x0000000407800000| 0%| F| |TAMS 0x0000000407000000| PB 0x0000000407000000| Untracked
| 13|0x0000000407800000, 0x0000000407800000, 0x0000000408000000| 0%| F| |TAMS 0x0000000407800000| PB 0x0000000407800000| Untracked
| 14|0x0000000408000000, 0x0000000408000000, 0x0000000408800000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked
| 15|0x0000000408800000, 0x0000000408800000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408800000| PB 0x0000000408800000| Untracked
| 16|0x0000000409000000, 0x0000000409000000, 0x0000000409800000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked
| 17|0x0000000409800000, 0x0000000409800000, 0x000000040a000000| 0%| F| |TAMS 0x0000000409800000| PB 0x0000000409800000| Untracked
| 18|0x000000040a000000, 0x000000040a000000, 0x000000040a800000| 0%| F| |TAMS 0x000000040a000000| PB 0x000000040a000000| Untracked
| 19|0x000000040a800000, 0x000000040a800000, 0x000000040b000000| 0%| F| |TAMS 0x000000040a800000| PB 0x000000040a800000| Untracked
Card table byte_map: [0x0000026ecd0e0000,0x0000026ecf0e0000] _byte_map_base: 0x0000026ecb0d8000
Marking Bits: (CMBitMap*) 0x0000026eb28e24f0
Bits: [0x0000026ecf0e0000, 0x0000026edf0a0000)
Polling page: 0x0000026ebace0000
Metaspace:
Usage:
Non-class: 35.93 MB used.
Class: 3.77 MB used.
Both: 39.71 MB used.
Virtual space:
Non-class space: 64.00 MB reserved, 36.25 MB ( 57%) committed, 1 nodes.
Class space: 1.00 GB reserved, 4.31 MB ( <1%) committed, 1 nodes.
Both: 1.06 GB reserved, 40.56 MB ( 4%) committed.
Chunk freelists:
Non-Class: 10.99 MB
Class: 11.82 MB
Both: 22.81 MB
MaxMetaspaceSize: unlimited
CompressedClassSpaceSize: 1.00 GB
Initial GC threshold: 21.00 MB
Current GC threshold: 67.62 MB
CDS: on
- commit_granule_bytes: 65536.
- commit_granule_words: 8192.
- virtual_space_node_default_size: 8388608.
- enlarge_chunks_in_place: 1.
- use_allocation_guard: 0.
Internal statistics:
num_allocs_failed_limit: 3.
num_arena_births: 1696.
num_arena_deaths: 558.
num_vsnodes_births: 2.
num_vsnodes_deaths: 0.
num_space_committed: 648.
num_space_uncommitted: 0.
num_chunks_returned_to_freelist: 709.
num_chunks_taken_from_freelist: 3011.
num_chunk_merges: 150.
num_chunk_splits: 1631.
num_chunks_enlarged: 777.
num_inconsistent_stats: 0.
CodeHeap 'non-profiled nmethods': size=119168Kb used=10379Kb max_used=11967Kb free=108788Kb
bounds [0x0000026ec28a0000, 0x0000026ec3450000, 0x0000026ec9d00000]
CodeHeap 'profiled nmethods': size=119104Kb used=7217Kb max_used=16117Kb free=111886Kb
bounds [0x0000026ebad00000, 0x0000026ebbcf0000, 0x0000026ec2150000]
CodeHeap 'non-nmethods': size=7488Kb used=2035Kb max_used=3854Kb free=5452Kb
bounds [0x0000026ec2150000, 0x0000026ec2540000, 0x0000026ec28a0000]
total_blobs=5332 nmethods=4353 adapters=882
compilation: enabled
stopped_count=0, restarted_count=0
full_count=0
Compilation events (20 events):
Event: 241431.303 Thread 0x0000026ecb0cf840 40196 4 com.sun.crypto.provider.HmacCore$HmacSHA256::<init> (9 bytes)
Event: 241431.303 Thread 0x0000026ecb0cf840 nmethod 40196 0x0000026ec2c83f90 code [0x0000026ec2c84120, 0x0000026ec2c841e0]
Event: 241431.678 Thread 0x0000026ee2251fe0 40199 3 java.util.ArrayList$ArrayListSpliterator::getFence (35 bytes)
Event: 241431.678 Thread 0x0000026ee2251fe0 nmethod 40199 0x0000026ebb3a1910 code [0x0000026ebb3a1aa0, 0x0000026ebb3a1bf8]
Event: 241432.882 Thread 0x0000026ee2251fe0 40200 3 sun.awt.image.ByteInterleavedRaster::<init> (32 bytes)
Event: 241432.883 Thread 0x0000026ee2251fe0 nmethod 40200 0x0000026ebb3cdc10 code [0x0000026ebb3cdde0, 0x0000026ebb3ce188]
Event: 241452.797 Thread 0x0000026ee2251fe0 40202 3 com.sheepit.client.rendering.Job::getSceneDirectory (23 bytes)
Event: 241452.799 Thread 0x0000026ee2251fe0 nmethod 40202 0x0000026ebb648390 code [0x0000026ebb648820, 0x0000026ebb64af00]
Event: 241452.799 Thread 0x0000026ee2251fe0 40201 3 com.sheepit.client.rendering.Job::getScenePath (20 bytes)
Event: 241452.803 Thread 0x0000026ee2251fe0 nmethod 40201 0x0000026ebba6c810 code [0x0000026ebba6cf60, 0x0000026ebba71ab8]
Event: 241452.809 Thread 0x0000026ee2251fe0 40203 3 java.lang.ProcessImpl::pid (10 bytes)
Event: 241452.809 Thread 0x0000026ee2251fe0 nmethod 40203 0x0000026ebb6d3510 code [0x0000026ebb6d36c0, 0x0000026ebb6d3830]
Event: 241455.694 Thread 0x0000026ee2251fe0 40204 3 java.util.regex.Pattern$Curly::match (91 bytes)
Event: 241455.694 Thread 0x0000026ee2251fe0 nmethod 40204 0x0000026ebb668210 code [0x0000026ebb668420, 0x0000026ebb6688f0]
Event: 241455.694 Thread 0x0000026ee2251fe0 40205 3 java.util.regex.Pattern$Curly::match0 (174 bytes)
Event: 241455.695 Thread 0x0000026ee2251fe0 nmethod 40205 0x0000026ebb61ae10 code [0x0000026ebb61b060, 0x0000026ebb61ba68]
Event: 241533.620 Thread 0x0000026ecb0cf840 40206 4 java.awt.image.BufferedImage::<init> (913 bytes)
Event: 241533.846 Thread 0x0000026ecb0cf840 nmethod 40206 0x0000026ec2f4a110 code [0x0000026ec2f4a7e0, 0x0000026ec2f50c30]
Event: 241533.848 Thread 0x0000026ecb0cf840 40207 ! 4 com.formdev.flatlaf.util.UIScale::isSystemScalingEnabled (97 bytes)
Event: 241533.849 Thread 0x0000026ecb0cf840 nmethod 40207 0x0000026ec2c86910 code [0x0000026ec2c86aa0, 0x0000026ec2c86b30]
GC Heap History (20 events):
Event: 241452.795 GC heap after
{Heap after GC invocations=6330 (full 438):
garbage-first heap total 163840K, used 38042K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241464.643 GC heap before
{Heap before GC invocations=6330 (full 438):
garbage-first heap total 163840K, used 136346K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 12 young (98304K), 0 survivors (0K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241464.676 GC heap after
{Heap after GC invocations=6331 (full 438):
garbage-first heap total 163840K, used 50572K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241473.836 GC heap before
{Heap before GC invocations=6332 (full 438):
garbage-first heap total 163840K, used 124300K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241473.858 GC heap after
{Heap after GC invocations=6333 (full 438):
garbage-first heap total 163840K, used 47465K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241482.041 GC heap before
{Heap before GC invocations=6333 (full 438):
garbage-first heap total 163840K, used 113001K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 10 young (81920K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241482.060 GC heap after
{Heap after GC invocations=6334 (full 438):
garbage-first heap total 163840K, used 47112K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241491.446 GC heap before
{Heap before GC invocations=6334 (full 438):
garbage-first heap total 163840K, used 120840K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241491.473 GC heap after
{Heap after GC invocations=6335 (full 438):
garbage-first heap total 163840K, used 48048K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241500.649 GC heap before
{Heap before GC invocations=6336 (full 438):
garbage-first heap total 163840K, used 121776K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241500.670 GC heap after
{Heap after GC invocations=6337 (full 438):
garbage-first heap total 163840K, used 47945K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241509.244 GC heap before
{Heap before GC invocations=6337 (full 438):
garbage-first heap total 163840K, used 121673K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241509.264 GC heap after
{Heap after GC invocations=6338 (full 438):
garbage-first heap total 163840K, used 47601K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241519.440 GC heap before
{Heap before GC invocations=6338 (full 438):
garbage-first heap total 163840K, used 129521K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 12 young (98304K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241519.465 GC heap after
{Heap after GC invocations=6339 (full 438):
garbage-first heap total 163840K, used 49616K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241529.639 GC heap before
{Heap before GC invocations=6340 (full 438):
garbage-first heap total 163840K, used 131536K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 12 young (98304K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241529.665 GC heap after
{Heap after GC invocations=6341 (full 438):
garbage-first heap total 163840K, used 49699K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241539.839 GC heap before
{Heap before GC invocations=6341 (full 438):
garbage-first heap total 163840K, used 131619K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 12 young (98304K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241539.864 GC heap after
{Heap after GC invocations=6342 (full 438):
garbage-first heap total 163840K, used 49386K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Event: 241549.841 GC heap before
{Heap before GC invocations=6343 (full 438):
garbage-first heap total 163840K, used 131306K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 12 young (98304K), 2 survivors (16384K)
Metaspace used 40659K, committed 41536K, reserved 1114112K
class space used 3862K, committed 4416K, reserved 1048576K
}
Dll operation events (15 events):
Event: 0.013 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
Event: 0.086 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
Event: 0.108 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
Event: 0.110 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
Event: 0.122 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
Event: 0.411 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
Event: 0.831 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna8874511866957782008.dll
Event: 1.393 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
Event: 1.689 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
Event: 2.393 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
Event: 2.767 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
Event: 2.769 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
Event: 2.836 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-1367446816773990.dll
Event: 6.626 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
Event: 17603.928 Loaded shared library C:\Program Files\Java\jdk-21\bin\javajpeg.dll
Deoptimization events (20 events):
Event: 235075.082 Thread 0x0000026f28da1ca0 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x0000026ec3408ab8 relative=0x0000000000000df8
Event: 235075.082 Thread 0x0000026f28da1ca0 Uncommon trap: reason=bimorphic_or_optimized_type_check action=maybe_recompile pc=0x0000026ec3408ab8 method=sun.java2d.SunGraphics2D.getDefaultTransform()Ljava/awt/geom/AffineTransform; @ 20 c2
Event: 235075.082 Thread 0x0000026f28da1ca0 DEOPT PACKING pc=0x0000026ec3408ab8 sp=0x00000077116fe330
Event: 235075.082 Thread 0x0000026f28da1ca0 DEOPT UNPACKING pc=0x0000026ec21a46a2 sp=0x00000077116fe228 mode 2
Event: 235974.035 Thread 0x0000026f3b162ed0 DEOPT PACKING pc=0x0000026ebb5ffd1d sp=0x0000007711efd7f0
Event: 235974.035 Thread 0x0000026f3b162ed0 DEOPT UNPACKING pc=0x0000026ec21a4e42 sp=0x0000007711efccc8 mode 0
Event: 236433.760 Thread 0x0000026f28da1ca0 DEOPT PACKING pc=0x0000026ebbafdbbf sp=0x00000077116feb40
Event: 236433.760 Thread 0x0000026f28da1ca0 DEOPT UNPACKING pc=0x0000026ec21a4e42 sp=0x00000077116fdff8 mode 0
Event: 236985.318 Thread 0x0000026f28da1ca0 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000026ec2dbad6c relative=0x0000000000000c2c
Event: 236985.318 Thread 0x0000026f28da1ca0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000026ec2dbad6c method=sun.swing.SwingUtilities2.isScaleChanged(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Z @ 18 c2
Event: 236985.318 Thread 0x0000026f28da1ca0 DEOPT PACKING pc=0x0000026ec2dbad6c sp=0x00000077116fe510
Event: 236985.318 Thread 0x0000026f28da1ca0 DEOPT UNPACKING pc=0x0000026ec21a46a2 sp=0x00000077116fe360 mode 2
Event: 236985.318 Thread 0x0000026f28da1ca0 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000026ec2dbad6c relative=0x0000000000000c2c
Event: 236985.318 Thread 0x0000026f28da1ca0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000026ec2dbad6c method=sun.swing.SwingUtilities2.isScaleChanged(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Z @ 18 c2
Event: 236985.318 Thread 0x0000026f28da1ca0 DEOPT PACKING pc=0x0000026ec2dbad6c sp=0x00000077116fe510
Event: 236985.318 Thread 0x0000026f28da1ca0 DEOPT UNPACKING pc=0x0000026ec21a46a2 sp=0x00000077116fe360 mode 2
Event: 237767.134 Thread 0x0000026f28da1ca0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000026ec2d58628 relative=0x00000000000008c8
Event: 237767.134 Thread 0x0000026f28da1ca0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000026ec2d58628 method=sun.java2d.loops.GraphicsPrimitive.convertFrom(Lsun/java2d/loops/Blit;Lsun/java2d/SurfaceData;IIIILsun/java2d/SurfaceData;I)Lsun/java2d/SurfaceData; @ 29 c2
Event: 237767.134 Thread 0x0000026f28da1ca0 DEOPT PACKING pc=0x0000026ec2d58628 sp=0x00000077116fd340
Event: 237767.134 Thread 0x0000026f28da1ca0 DEOPT UNPACKING pc=0x0000026ec21a46a2 sp=0x00000077116fd340 mode 2
Classes loaded (20 events):
Event: 148265.480 Loading class sun/awt/PlatformFont$PlatformFontCache
Event: 148265.480 Loading class sun/awt/PlatformFont$PlatformFontCache done
Event: 148265.480 Loading class sun/nio/cs/UTF_16LE$Encoder
Event: 148265.480 Loading class sun/nio/cs/UnicodeEncoder
Event: 148265.480 Loading class sun/nio/cs/UnicodeEncoder done
Event: 148265.480 Loading class sun/nio/cs/UTF_16LE$Encoder done
Event: 148266.133 Loading class sun/awt/windows/WMenuItemPeer$1
Event: 148266.133 Loading class sun/awt/windows/WMenuItemPeer$1 done
Event: 148266.135 Loading class java/awt/Window$1DisposeAction
Event: 148266.135 Loading class java/awt/Window$1DisposeAction done
Event: 168408.207 Loading class sun/font/StrikeCache$2
Event: 168408.207 Loading class sun/font/StrikeCache$2 done
Event: 235071.873 Loading class sun/java2d/SurfaceDataProxy$CountdownTracker
Event: 235071.877 Loading class sun/java2d/SurfaceDataProxy$CountdownTracker done
Event: 235072.701 Loading class sun/java2d/opengl/WGLGraphicsConfig
Event: 235072.704 Loading class sun/java2d/opengl/OGLGraphicsConfig
Event: 235072.704 Loading class sun/java2d/opengl/OGLGraphicsConfig done
Event: 235072.705 Loading class sun/java2d/opengl/WGLGraphicsConfig done
Event: 235072.705 Loading class sun/awt/image/BufImgVolatileSurfaceManager
Event: 235072.705 Loading class sun/awt/image/BufImgVolatileSurfaceManager done
Classes unloaded (20 events):
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4448800 'java/lang/invoke/LambdaForm$DMH+0x0000026ee4448800'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4449c00 'java/lang/invoke/LambdaForm$DMH+0x0000026ee4449c00'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee444b000 'java/lang/invoke/LambdaForm$DMH+0x0000026ee444b000'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee444bc00 'java/lang/invoke/LambdaForm$MH+0x0000026ee444bc00'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee40ae400 'java/lang/invoke/LambdaForm$MH+0x0000026ee40ae400'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee40af800 'java/lang/invoke/LambdaForm$MH+0x0000026ee40af800'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4290400 'java/lang/invoke/LambdaForm$MH+0x0000026ee4290400'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4412c00 'java/lang/invoke/LambdaForm$MH+0x0000026ee4412c00'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4420400 'java/lang/invoke/LambdaForm$MH+0x0000026ee4420400'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee443d400 'java/lang/invoke/LambdaForm$MH+0x0000026ee443d400'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4453000 'java/lang/invoke/LambdaForm$MH+0x0000026ee4453000'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee444f000 'java/lang/invoke/LambdaForm$MH+0x0000026ee444f000'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee40b6400 'java/lang/invoke/LambdaForm$MH+0x0000026ee40b6400'
Event: 116774.956 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee444d000 'java/lang/invoke/LambdaForm$MH+0x0000026ee444d000'
Event: 238627.183 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee40af800 'java/lang/invoke/LambdaForm$BMH+0x0000026ee40af800'
Event: 238627.183 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4449c00 'java/lang/invoke/LambdaForm$MH+0x0000026ee4449c00'
Event: 238627.183 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee43a5800 'java/lang/invoke/LambdaForm$MH+0x0000026ee43a5800'
Event: 238627.183 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee40b8000 'java/lang/invoke/LambdaForm$MH+0x0000026ee40b8000'
Event: 238627.183 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee4410400 'java/lang/invoke/LambdaForm$MH+0x0000026ee4410400'
Event: 238627.183 Thread 0x0000026ecb0a1d70 Unloading class 0x0000026ee440d800 'java/lang/invoke/LambdaForm$MH+0x0000026ee440d800'
Classes redefined (0 events):
No events
Internal exceptions (20 events):
Event: 234928.162 Thread 0x0000026f28da1ca0 Implicit null exception at 0x0000026ec31cc026 to 0x0000026ec31d13dc
Event: 235072.593 Thread 0x0000026f28da1ca0 Exception <a 'sun/java2d/InvalidPipeException'{0x000000040c799c78}: GDIWindowSurfaceData: bounds changed> (0x000000040c799c78)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 235072.593 Thread 0x0000026f28da1ca0 Exception <a 'sun/java2d/InvalidPipeException'{0x000000040c79a2b0}: GDIWindowSurfaceData: bounds changed> (0x000000040c79a2b0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 235072.602 Thread 0x0000026f28da1ca0 Exception <a 'sun/java2d/InvalidPipeException'{0x000000040c7b5b60}: GDIWindowSurfaceData: bounds changed> (0x000000040c7b5b60)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 235072.602 Thread 0x0000026f28da1ca0 Exception <a 'sun/java2d/InvalidPipeException'{0x000000040c7b6198}: GDIWindowSurfaceData: bounds changed> (0x000000040c7b6198)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 238644.556 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c128}> (0x000000040a81c128)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 238860.890 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81bf88}> (0x000000040a81bf88)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 239056.189 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c9e8}> (0x000000040a81c9e8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 239252.205 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c1b0}> (0x000000040901c1b0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 239469.742 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c130}> (0x000000040901c130)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 239666.036 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c128}> (0x000000040a81c128)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 239855.700 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81ca68}> (0x000000040a81ca68)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 240041.766 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c9e8}> (0x000000040a81c9e8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 240258.347 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81ca08}> (0x000000040a81ca08)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 240433.419 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c080}> (0x000000040a81c080)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 240637.672 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c9e8}> (0x000000040901c9e8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 240819.314 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81bf88}> (0x000000040a81bf88)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 241067.048 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81bf50}> (0x000000040a81bf50)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 241259.780 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81ca70}> (0x000000040a81ca70)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 241452.797 Thread 0x0000026f28da3050 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81cbd0}> (0x000000040a81cbd0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
ZGC Phase Switch (0 events):
No events
VM Operations (20 events):
Event: 241491.504 Executing VM operation: G1PauseCleanup done
Event: 241500.649 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 241500.670 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 241509.244 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 241509.264 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 241519.440 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 241519.465 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 241519.488 Executing VM operation: G1PauseRemark
Event: 241519.493 Executing VM operation: G1PauseRemark done
Event: 241519.500 Executing VM operation: G1PauseCleanup
Event: 241519.500 Executing VM operation: G1PauseCleanup done
Event: 241529.639 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 241529.665 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 241539.839 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 241539.864 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 241539.885 Executing VM operation: G1PauseRemark
Event: 241539.890 Executing VM operation: G1PauseRemark done
Event: 241539.898 Executing VM operation: G1PauseCleanup
Event: 241539.898 Executing VM operation: G1PauseCleanup done
Event: 241549.841 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Events (20 events):
Event: 241431.674 Thread 0x0000026f3b165630 Thread exited: 0x0000026f3b165630
Event: 241431.674 Thread 0x0000026f28da29c0 Thread exited: 0x0000026f28da29c0
Event: 241431.674 Thread 0x0000026f3b168420 Thread exited: 0x0000026f3b168420
Event: 241431.679 Thread 0x0000026f3b164fa0 Thread added: 0x0000026f3b164fa0
Event: 241431.679 Thread 0x0000026f3b168ab0 Thread added: 0x0000026f3b168ab0
Event: 241431.679 Thread 0x0000026f3b163560 Thread added: 0x0000026f3b163560
Event: 241431.679 Thread 0x0000026f3b167d90 Thread added: 0x0000026f3b167d90
Event: 241431.679 Thread 0x0000026f3b165630 Thread added: 0x0000026f3b165630
Event: 241431.679 Thread 0x0000026f3b167070 Thread added: 0x0000026f3b167070
Event: 241437.021 Thread 0x0000026ecb0a1d70 flushing nmethod 0x0000026ebb3f9590
Event: 241452.660 Thread 0x0000026f3b163560 Thread exited: 0x0000026f3b163560
Event: 241452.660 Thread 0x0000026f3b165630 Thread exited: 0x0000026f3b165630
Event: 241452.660 Thread 0x0000026f3b164fa0 Thread exited: 0x0000026f3b164fa0
Event: 241452.660 Thread 0x0000026f3b167d90 Thread exited: 0x0000026f3b167d90
Event: 241452.660 Thread 0x0000026f3b168ab0 Thread exited: 0x0000026f3b168ab0
Event: 241452.660 Thread 0x0000026f3b167070 Thread exited: 0x0000026f3b167070
Event: 241452.802 Thread 0x0000026f3b165630 Thread added: 0x0000026f3b165630
Event: 241491.624 Thread 0x0000026f3b225a50 Thread exited: 0x0000026f3b225a50
Event: 241491.626 Thread 0x0000026f3b226770 Thread exited: 0x0000026f3b226770
Event: 241492.888 Thread 0x0000026f3b227b20 Thread exited: 0x0000026f3b227b20
Dynamic libraries:
0x00007ff684040000 - 0x00007ff684050000 C:\Program Files\Java\jdk-21\bin\java.exe
0x00007ffa8d8f0000 - 0x00007ffa8db07000 C:\Windows\SYSTEM32\ntdll.dll
0x00007ffa8d140000 - 0x00007ffa8d204000 C:\Windows\System32\KERNEL32.DLL
0x00007ffa8abf0000 - 0x00007ffa8afc2000 C:\Windows\System32\KERNELBASE.dll
0x00007ffa8b1b0000 - 0x00007ffa8b2c1000 C:\Windows\System32\ucrtbase.dll
0x00007ffa7e320000 - 0x00007ffa7e339000 C:\Program Files\Java\jdk-21\bin\jli.dll
0x00007ffa7df10000 - 0x00007ffa7df2b000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
0x00007ffa8d2d0000 - 0x00007ffa8d381000 C:\Windows\System32\ADVAPI32.dll
0x00007ffa8b930000 - 0x00007ffa8b9d7000 C:\Windows\System32\msvcrt.dll
0x00007ffa8d7b0000 - 0x00007ffa8d858000 C:\Windows\System32\sechost.dll
0x00007ffa8abc0000 - 0x00007ffa8abe8000 C:\Windows\System32\bcrypt.dll
0x00007ffa8ce30000 - 0x00007ffa8cf44000 C:\Windows\System32\RPCRT4.dll
0x00007ffa8c5a0000 - 0x00007ffa8c751000 C:\Windows\System32\USER32.dll
0x00007ffa8ab90000 - 0x00007ffa8abb6000 C:\Windows\System32\win32u.dll
0x00007ffa7f930000 - 0x00007ffa7fbcb000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772\COMCTL32.dll
0x00007ffa8d280000 - 0x00007ffa8d2a9000 C:\Windows\System32\GDI32.dll
0x00007ffa8aa60000 - 0x00007ffa8ab83000 C:\Windows\System32\gdi32full.dll
0x00007ffa8b110000 - 0x00007ffa8b1aa000 C:\Windows\System32\msvcp_win.dll
0x00007ffa84e70000 - 0x00007ffa84e7a000 C:\Windows\SYSTEM32\VERSION.dll
0x00007ffa8d870000 - 0x00007ffa8d8a1000 C:\Windows\System32\IMM32.DLL
0x00007ffa7ed50000 - 0x00007ffa7ed5c000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
0x00007ffa6c770000 - 0x00007ffa6c7fe000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
0x00007ffa3a5e0000 - 0x00007ffa3b2fa000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
0x00007ffa8cdb0000 - 0x00007ffa8ce21000 C:\Windows\System32\WS2_32.dll
0x00007ffa8a8b0000 - 0x00007ffa8a8fd000 C:\Windows\SYSTEM32\POWRPROF.dll
0x00007ffa7c040000 - 0x00007ffa7c074000 C:\Windows\SYSTEM32\WINMM.dll
0x00007ffa8a890000 - 0x00007ffa8a8a3000 C:\Windows\SYSTEM32\UMPDC.dll
0x00007ffa89a10000 - 0x00007ffa89a28000 C:\Windows\SYSTEM32\kernel.appcore.dll
0x00007ffa7e310000 - 0x00007ffa7e31a000 C:\Program Files\Java\jdk-21\bin\jimage.dll
0x00007ffa88170000 - 0x00007ffa883a3000 C:\Windows\SYSTEM32\DBGHELP.DLL
0x00007ffa8b590000 - 0x00007ffa8b923000 C:\Windows\System32\combase.dll
0x00007ffa8cf50000 - 0x00007ffa8d027000 C:\Windows\System32\OLEAUT32.dll
0x00007ffa69a70000 - 0x00007ffa69aa2000 C:\Windows\SYSTEM32\dbgcore.DLL
0x00007ffa8b390000 - 0x00007ffa8b40b000 C:\Windows\System32\bcryptPrimitives.dll
0x00007ffa7de00000 - 0x00007ffa7de1f000 C:\Program Files\Java\jdk-21\bin\java.dll
0x00007ffa8bb70000 - 0x00007ffa8c412000 C:\Windows\System32\SHELL32.dll
0x00007ffa8afd0000 - 0x00007ffa8b10f000 C:\Windows\System32\wintypes.dll
0x00007ffa88910000 - 0x00007ffa8922d000 C:\Windows\SYSTEM32\windows.storage.dll
0x00007ffa8b9e0000 - 0x00007ffa8baec000 C:\Windows\System32\SHCORE.dll
0x00007ffa8c420000 - 0x00007ffa8c489000 C:\Windows\System32\shlwapi.dll
0x00007ffa8a910000 - 0x00007ffa8a93b000 C:\Windows\SYSTEM32\profapi.dll
0x00007ffa65ef0000 - 0x00007ffa65fc7000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
0x00007ffa7daf0000 - 0x00007ffa7db00000 C:\Program Files\Java\jdk-21\bin\net.dll
0x00007ffa85f90000 - 0x00007ffa860bc000 C:\Windows\SYSTEM32\WINHTTP.dll
0x00007ffa89e90000 - 0x00007ffa89ef9000 C:\Windows\system32\mswsock.dll
0x00007ffa6ea90000 - 0x00007ffa6eaa6000 C:\Program Files\Java\jdk-21\bin\nio.dll
0x00007ffa6c3a0000 - 0x00007ffa6c3b8000 C:\Program Files\Java\jdk-21\bin\zip.dll
0x00007ffa8a0f0000 - 0x00007ffa8a10b000 C:\Windows\SYSTEM32\CRYPTSP.dll
0x00007ffa89970000 - 0x00007ffa899a7000 C:\Windows\system32\rsaenh.dll
0x00007ffa89f80000 - 0x00007ffa89fa8000 C:\Windows\SYSTEM32\USERENV.dll
0x00007ffa8a0e0000 - 0x00007ffa8a0ec000 C:\Windows\SYSTEM32\CRYPTBASE.dll
0x00007ffa89490000 - 0x00007ffa894bd000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
0x00007ffa8cda0000 - 0x00007ffa8cda9000 C:\Windows\System32\NSI.dll
0x00007ffa308f0000 - 0x00007ffa30939000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna8874511866957782008.dll
0x00007ffa8d860000 - 0x00007ffa8d868000 C:\Windows\System32\PSAPI.DLL
0x00007ffa7da90000 - 0x00007ffa7daa0000 C:\Program Files\Java\jdk-21\bin\verify.dll
0x00007ffa62580000 - 0x00007ffa62597000 C:\Windows\system32\napinsp.dll
0x00007ffa625a0000 - 0x00007ffa625bb000 C:\Windows\system32\pnrpnsp.dll
0x00007ffa894c0000 - 0x00007ffa895b8000 C:\Windows\SYSTEM32\DNSAPI.dll
0x00007ffa625c0000 - 0x00007ffa625d1000 C:\Windows\System32\winrnr.dll
0x00007ffa62d40000 - 0x00007ffa62d5f000 C:\Windows\system32\wshbth.dll
0x00007ffa625e0000 - 0x00007ffa62601000 C:\Windows\system32\nlansp_c.dll
0x00007ffa834e0000 - 0x00007ffa834ea000 C:\Windows\System32\rasadhlp.dll
0x00007ffa849f0000 - 0x00007ffa84a74000 C:\Windows\System32\fwpuclnt.dll
0x00007ffa3a210000 - 0x00007ffa3a5d4000 C:\Windows\SYSTEM32\nvcuda.dll
0x00007ffa87510000 - 0x00007ffa87547000 C:\Windows\SYSTEM32\dxcore.dll
0x00007ffa384a0000 - 0x00007ffa3a209000 C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvcuda64.dll
0x00007ffa8a140000 - 0x00007ffa8a152000 C:\Windows\SYSTEM32\msasn1.dll
0x00007ffa84860000 - 0x00007ffa84892000 C:\Windows\SYSTEM32\cryptnet.dll
0x00007ffa8b410000 - 0x00007ffa8b577000 C:\Windows\System32\CRYPT32.dll
0x00007ffa8a1b0000 - 0x00007ffa8a200000 C:\Windows\SYSTEM32\wldp.dll
0x00007ffa845b0000 - 0x00007ffa8470a000 C:\Windows\SYSTEM32\drvstore.dll
0x00007ffa8a600000 - 0x00007ffa8a62c000 C:\Windows\SYSTEM32\devobj.dll
0x00007ffa8a5b0000 - 0x00007ffa8a5fe000 C:\Windows\SYSTEM32\cfgmgr32.dll
0x00007ffa7b160000 - 0x00007ffa7b6d5000 C:\Windows\SYSTEM32\nvapi64.dll
0x00007ffa8c920000 - 0x00007ffa8cd94000 C:\Windows\System32\SETUPAPI.dll
0x00007ffa8d560000 - 0x00007ffa8d700000 C:\Windows\System32\ole32.dll
0x00007ffa65e50000 - 0x00007ffa65ee5000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvdxgdmal64.dll
0x00007ffa5bbd0000 - 0x00007ffa5bcf2000 C:\Windows\SYSTEM32\nvml.dll
0x00007ffa37640000 - 0x00007ffa3849e000 C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvml.dll
0x00007ffa374b0000 - 0x00007ffa3763f000 C:\Program Files\Java\jdk-21\bin\awt.dll
0x00007ffa85980000 - 0x00007ffa85a17000 C:\Windows\SYSTEM32\apphelp.dll
0x00007ffa872e0000 - 0x00007ffa8730e000 C:\Windows\system32\DWMAPI.DLL
0x00007ffa87020000 - 0x00007ffa870d4000 C:\Windows\system32\uxtheme.dll
0x00007ffa54210000 - 0x00007ffa54310000 C:\Windows\system32\opengl32.dll
0x00007ffa7d8b0000 - 0x00007ffa7d8dd000 C:\Windows\SYSTEM32\GLU32.dll
0x00007ffa8c760000 - 0x00007ffa8c8c0000 C:\Windows\System32\MSCTF.dll
0x00007ffa8a9e0000 - 0x00007ffa8aa5c000 C:\Windows\System32\wintrust.dll
0x00007ffa8d210000 - 0x00007ffa8d22f000 C:\Windows\System32\imagehlp.dll
0x00007ffa2bf20000 - 0x00007ffa2c224000 C:\Windows\system32\nvspcap64.dll
0x00007ffa89b20000 - 0x00007ffa89b54000 C:\Windows\SYSTEM32\ntmarta.dll
0x00007ffa89f20000 - 0x00007ffa89f46000 C:\Windows\SYSTEM32\gpapi.dll
0x00007ffa2bcd0000 - 0x00007ffa2be84000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvppex.dll
0x00007ffa7d8a0000 - 0x00007ffa7d8ae000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
0x00007ffa8a2a0000 - 0x00007ffa8a2cd000 C:\Windows\SYSTEM32\ncrypt.dll
0x00007ffa8a260000 - 0x00007ffa8a297000 C:\Windows\SYSTEM32\NTASN1.dll
0x00007ffa65070000 - 0x00007ffa650f7000 C:\Program Files\Java\jdk-21\bin\freetype.dll
0x00007ffa5c9d0000 - 0x00007ffa5cab1000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
0x00007ffa6dec0000 - 0x00007ffa6dec6000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-1367446816773990.dll
0x00007ffa6f3a0000 - 0x00007ffa6f3a7000 C:\Program Files\Java\jdk-21\bin\jawt.dll
0x00007ffa7f740000 - 0x00007ffa7f7f3000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
0x00007ffa8d700000 - 0x00007ffa8d7b0000 C:\Windows\System32\clbcatq.dll
0x00007ffa86430000 - 0x00007ffa86539000 C:\Windows\SYSTEM32\PROPSYS.dll
0x00007ffa84920000 - 0x00007ffa8493a000 C:\Windows\system32\NetworkExplorer.dll
0x00007ffa6ada0000 - 0x00007ffa6adbe000 C:\Windows\SYSTEM32\MPR.dll
0x00007ffa62e50000 - 0x00007ffa62e7b000 C:\Windows\System32\p9np.dll
0x00007ffa6fb10000 - 0x00007ffa6fb1c000 C:\Windows\System32\drprov.dll
0x00007ffa62d20000 - 0x00007ffa62d39000 C:\Windows\System32\ntlanman.dll
0x00007ffa62e30000 - 0x00007ffa62e4f000 C:\Windows\System32\davclnt.dll
0x00007ffa8a760000 - 0x00007ffa8a7cc000 C:\Windows\System32\WINSTA.dll
0x00007ffa85b10000 - 0x00007ffa85b2a000 C:\Windows\System32\wkscli.dll
0x00007ffa631d0000 - 0x00007ffa631e2000 C:\Windows\SYSTEM32\cscapi.dll
0x00007ffa89480000 - 0x00007ffa8948c000 C:\Windows\System32\netutils.dll
0x00007ffa65ac0000 - 0x00007ffa65b1e000 C:\Windows\System32\dlnashext.dll
0x00007ffa63b60000 - 0x00007ffa63bc9000 C:\Windows\System32\PlayToDevice.dll
0x00007ffa5d530000 - 0x00007ffa5d551000 C:\Windows\System32\DevDispItemProvider.dll
0x00007ffa83770000 - 0x00007ffa8380c000 C:\Windows\System32\MMDevApi.dll
0x00007ffa6fb20000 - 0x00007ffa6fb76000 C:\Windows\SYSTEM32\rdpendp.dll
0x00007ffa75d30000 - 0x00007ffa75df1000 C:\Windows\SYSTEM32\TextShaping.dll
0x00007ffa897c0000 - 0x00007ffa897d4000 C:\Windows\SYSTEM32\WTSAPI32.dll
0x00007ffa65a10000 - 0x00007ffa65aba000 C:\Windows\system32\wpdshext.dll
0x00007ffa7fbd0000 - 0x00007ffa7fd91000 C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5547_none_57fb3de0ce17d140\gdiplus.dll
0x00007ffa86170000 - 0x00007ffa8620e000 C:\Windows\System32\PortableDeviceApi.dll
0x00007ffa58080000 - 0x00007ffa580b7000 C:\Windows\System32\EhStorShell.dll
0x00007ffa6f370000 - 0x00007ffa6f394000 C:\Windows\System32\EhStorAPI.dll
0x00007ffa86e20000 - 0x00007ffa86fd1000 C:\Windows\SYSTEM32\WindowsCodecs.dll
0x00007ffa59aa0000 - 0x00007ffa59b0a000 C:\Windows\System32\thumbcache.dll
0x00007ffa847b0000 - 0x00007ffa84855000 C:\Windows\SYSTEM32\policymanager.dll
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5547_none_57fb3de0ce17d140;C:\Windows\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25050.5-0
VM Arguments:
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache2
java_class_path (initial): sheepit-client-7.25182.0.jar
Launcher Type: SUN_STANDARD
[Global flags]
intx CICompilerCount = 12 {product} {ergonomic}
uint ConcGCThreads = 4 {product} {ergonomic}
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
size_t InitialHeapSize = 1073741824 {product} {ergonomic}
size_t MarkStackSize = 4194304 {product} {ergonomic}
size_t MaxHeapSize = 17163091968 {product} {ergonomic}
size_t MaxNewSize = 10292822016 {product} {ergonomic}
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
size_t MinHeapSize = 8388608 {product} {ergonomic}
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
bool SegmentedCodeCache = true {product} {ergonomic}
size_t SoftMaxHeapSize = 17163091968 {manageable} {ergonomic}
bool UseCompressedOops = true {product lp64_product} {ergonomic}
bool UseG1GC = true {product} {ergonomic}
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags foldmultilines=false
#1: stderr all=off uptime,level,tags foldmultilines=false
Environment Variables:
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;C:\Program Files\Blender Foundation\Blender 4.4;
USERNAME=Nathan
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
TMP=C:\Users\Nathan\AppData\Local\Temp
TEMP=C:\Users\Nathan\AppData\Local\Temp
Periodic native trim disabled
--------------- S Y S T E M ---------------
OS:
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
OS uptime: 4 days 9:04 hours
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
Processor Information for processor 0
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 1
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 2
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 3
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 4
Max Mhz: 2201, Current Mhz: 1200, Mhz Limit: 2201
Processor Information for processor 5
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 6
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 7
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 8
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 9
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 10
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 11
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 12
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 13
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 14
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 15
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 16
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 17
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 18
Max Mhz: 2201, Current Mhz: 1200, Mhz Limit: 2201
Processor Information for processor 19
Max Mhz: 2201, Current Mhz: 1200, Mhz Limit: 2201
Memory: 4k page, system-wide physical 65446M (5420M free)
TotalPageFile size 95954M (AvailPageFile size 4M)
current process WorkingSet (physical memory assigned to process): 334M, peak: 904M
current process commit charge ("private bytes"): 879M, peak: 1245M
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
END.

1042
hs_err_pid2112.log Normal file

File diff suppressed because it is too large Load Diff

784
hs_err_pid27144.log Normal file
View File

@@ -0,0 +1,784 @@
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 469762048 bytes for G1 virtual space
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
# placed in the first 32GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (os_windows.cpp:3603), pid=27144, tid=36020
#
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache0
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 63G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
Time: Sun Jul 6 14:53:28 2025 Mountain Daylight Time elapsed time: 1465.816912 seconds (0d 0h 24m 25s)
--------------- T H R E A D ---------------
Current thread (0x0000019e7affe050): VMThread "VM Thread" [id=36020, stack(0x00000021ddc00000,0x00000021ddd00000) (1024K)]
Stack: [0x00000021ddc00000,0x00000021ddd00000]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x6cae19]
V [jvm.dll+0x855741]
V [jvm.dll+0x857c6e]
V [jvm.dll+0x858343]
V [jvm.dll+0x27e0b6]
V [jvm.dll+0x6c7595]
V [jvm.dll+0x6bc0fa]
V [jvm.dll+0x353eaa]
V [jvm.dll+0x35bb26]
V [jvm.dll+0x3ae52e]
V [jvm.dll+0x3ae7d8]
V [jvm.dll+0x3281bc]
V [jvm.dll+0x328247]
V [jvm.dll+0x36cbcc]
V [jvm.dll+0x36b41e]
V [jvm.dll+0x327981]
V [jvm.dll+0x36ab3a]
V [jvm.dll+0x85e110]
V [jvm.dll+0x85f494]
V [jvm.dll+0x85f9d0]
V [jvm.dll+0x85fc73]
V [jvm.dll+0x7ffa1b]
V [jvm.dll+0x6c94fd]
C [ucrtbase.dll+0x29333]
C [KERNEL32.DLL+0x1259d]
C [ntdll.dll+0x5af78]
VM_Operation (0x00000021dd3fe980): G1CollectForAllocation, mode: safepoint, requested by thread 0x0000019e8cf4dba0
--------------- P R O C E S S ---------------
Threads class SMR info:
_java_thread_list=0x0000019e7219d0e0, length=29, elements={
0x0000019e7df5aaa0, 0x0000019e7df5bb60, 0x0000019e7df5f0d0, 0x0000019e7df620c0,
0x0000019e7df62fa0, 0x0000019e7df65610, 0x0000019e7df69930, 0x0000019e7df722c0,
0x0000019e2c7037c0, 0x0000019e2c706430, 0x0000019e7296a160, 0x0000019e2c7de690,
0x0000019e72533330, 0x0000019e73121b90, 0x0000019e73944b80, 0x0000019e73945210,
0x0000019e73943e60, 0x0000019e739444f0, 0x0000019e739458a0, 0x0000019e73942420,
0x0000019e73942ab0, 0x0000019e8cf530f0, 0x0000019e8cf4e8c0, 0x0000019e2c665a80,
0x0000019e2c662600, 0x0000019e2c663320, 0x0000019e2c666e30, 0x0000019e8cf4d510,
0x0000019e8cf4dba0
}
Java Threads: ( => current thread )
0x0000019e7df5aaa0 JavaThread "Reference Handler" daemon [_thread_blocked, id=40008, stack(0x00000021ddd00000,0x00000021dde00000) (1024K)]
0x0000019e7df5bb60 JavaThread "Finalizer" daemon [_thread_blocked, id=45908, stack(0x00000021dde00000,0x00000021ddf00000) (1024K)]
0x0000019e7df5f0d0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=45556, stack(0x00000021ddf00000,0x00000021de000000) (1024K)]
0x0000019e7df620c0 JavaThread "Attach Listener" daemon [_thread_blocked, id=45068, stack(0x00000021de000000,0x00000021de100000) (1024K)]
0x0000019e7df62fa0 JavaThread "Service Thread" daemon [_thread_blocked, id=31932, stack(0x00000021de100000,0x00000021de200000) (1024K)]
0x0000019e7df65610 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=42284, stack(0x00000021de200000,0x00000021de300000) (1024K)]
0x0000019e7df69930 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=42972, stack(0x00000021de300000,0x00000021de400000) (1024K)]
0x0000019e7df722c0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=26824, stack(0x00000021de400000,0x00000021de500000) (1024K)]
0x0000019e2c7037c0 JavaThread "Notification Thread" daemon [_thread_blocked, id=38480, stack(0x00000021de600000,0x00000021de700000) (1024K)]
0x0000019e2c706430 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=36392, stack(0x00000021de700000,0x00000021de800000) (1024K)]
0x0000019e7296a160 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=43248, stack(0x00000021dea00000,0x00000021deb00000) (1024K)]
0x0000019e2c7de690 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=44464, stack(0x00000021dd400000,0x00000021dd500000) (1024K)]
0x0000019e72533330 JavaThread "AWT-Windows" daemon [_thread_blocked, id=44564, stack(0x00000021dee00000,0x00000021def00000) (1024K)]
0x0000019e73121b90 JavaThread "Timer-0" [_thread_blocked, id=44492, stack(0x00000021e0210000,0x00000021e0310000) (1024K)]
0x0000019e73944b80 JavaThread "TimerQueue" daemon [_thread_blocked, id=44708, stack(0x00000021e0610000,0x00000021e0710000) (1024K)]
0x0000019e73945210 JavaThread "Swing-Shell" daemon [_thread_blocked, id=39952, stack(0x00000021e0010000,0x00000021e0110000) (1024K)]
0x0000019e73943e60 JavaThread "AWT-Shutdown" [_thread_blocked, id=34988, stack(0x00000021e0a10000,0x00000021e0b10000) (1024K)]
0x0000019e739444f0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=44948, stack(0x00000021e0b10000,0x00000021e0c10000) (1024K)]
0x0000019e739458a0 JavaThread "Thread-3" [_thread_in_native, id=29044, stack(0x00000021e0c10000,0x00000021e0d10000) (1024K)]
0x0000019e73942420 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=36968, stack(0x00000021e0e10000,0x00000021e0f10000) (1024K)]
0x0000019e73942ab0 JavaThread "DestroyJavaVM" [_thread_blocked, id=43412, stack(0x00000021dd500000,0x00000021dd600000) (1024K)]
0x0000019e8cf530f0 JavaThread "OkHttp client.sheepit-renderfarm.com" daemon [_thread_in_native, id=38108, stack(0x00000021e1110000,0x00000021e1210000) (1024K)]
0x0000019e8cf4e8c0 JavaThread "Thread-1" [_thread_blocked, id=34116, stack(0x00000021e0f10000,0x00000021e1010000) (1024K)]
0x0000019e2c665a80 JavaThread "Thread-4" [_thread_blocked, id=31404, stack(0x00000021e1010000,0x00000021e1110000) (1024K)]
0x0000019e2c662600 JavaThread "Timer-1" [_thread_blocked, id=38996, stack(0x00000021e1410000,0x00000021e1510000) (1024K)]
0x0000019e2c663320 JavaThread "pool-4-thread-1" [_thread_blocked, id=41040, stack(0x00000021e2520000,0x00000021e2620000) (1024K)]
0x0000019e2c666e30 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=42816, stack(0x00000021e0910000,0x00000021e0a10000) (1024K)]
0x0000019e8cf4d510 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=39340, stack(0x00000021e0d10000,0x00000021e0e10000) (1024K)]
0x0000019e8cf4dba0 JavaThread "Timer-28" [_thread_blocked, id=12916, stack(0x00000021dd300000,0x00000021dd400000) (1024K)]
Total: 29
Other Threads:
=>0x0000019e7affe050 VMThread "VM Thread" [id=36020, stack(0x00000021ddc00000,0x00000021ddd00000) (1024K)]
0x0000019e2c531180 WatcherThread "VM Periodic Task Thread" [id=39456, stack(0x00000021ddb00000,0x00000021ddc00000) (1024K)]
0x0000019e7affd570 WorkerThread "GC Thread#0" [id=42156, stack(0x00000021dd600000,0x00000021dd700000) (1024K)]
0x0000019e7affd1d0 WorkerThread "GC Thread#1" [id=32628, stack(0x00000021def00000,0x00000021df000000) (1024K)]
0x0000019e7affe3f0 WorkerThread "GC Thread#2" [id=536, stack(0x00000021df000000,0x00000021df100000) (1024K)]
0x0000019e7affca90 WorkerThread "GC Thread#3" [id=38744, stack(0x00000021df100000,0x00000021df200000) (1024K)]
0x0000019e72714030 WorkerThread "GC Thread#4" [id=40628, stack(0x00000021df200000,0x00000021df300000) (1024K)]
0x0000019e72713550 WorkerThread "GC Thread#5" [id=39592, stack(0x00000021df300000,0x00000021df400000) (1024K)]
0x0000019e72711850 WorkerThread "GC Thread#6" [id=42108, stack(0x00000021df400000,0x00000021df500000) (1024K)]
0x0000019e72711f90 WorkerThread "GC Thread#7" [id=29572, stack(0x00000021df500000,0x00000021df600000) (1024K)]
0x0000019e72710630 WorkerThread "GC Thread#8" [id=42240, stack(0x00000021df600000,0x00000021df700000) (1024K)]
0x0000019e727109d0 WorkerThread "GC Thread#9" [id=27012, stack(0x00000021df700000,0x00000021df800000) (1024K)]
0x0000019e727126d0 WorkerThread "GC Thread#10" [id=34660, stack(0x00000021df800000,0x00000021df900000) (1024K)]
0x0000019e72712330 WorkerThread "GC Thread#11" [id=30792, stack(0x00000021df900000,0x00000021dfa00000) (1024K)]
0x0000019e72710d70 WorkerThread "GC Thread#12" [id=39096, stack(0x00000021dfa00000,0x00000021dfb00000) (1024K)]
0x0000019e72711110 WorkerThread "GC Thread#13" [id=31720, stack(0x00000021dfb00000,0x00000021dfc00000) (1024K)]
0x0000019e72712e10 WorkerThread "GC Thread#14" [id=28740, stack(0x00000021dfc00000,0x00000021dfd00000) (1024K)]
0x0000019e7b0d3dd0 ConcurrentGCThread "G1 Main Marker" [id=43260, stack(0x00000021dd700000,0x00000021dd800000) (1024K)]
0x0000019e7affdcb0 WorkerThread "G1 Conc#0" [id=44568, stack(0x00000021dd800000,0x00000021dd900000) (1024K)]
0x0000019e2c7da6d0 WorkerThread "G1 Conc#1" [id=45600, stack(0x00000021de900000,0x00000021dea00000) (1024K)]
0x0000019e2c7dd250 WorkerThread "G1 Conc#2" [id=44060, stack(0x00000021dff10000,0x00000021e0010000) (1024K)]
0x0000019e2c7db550 WorkerThread "G1 Conc#3" [id=42504, stack(0x00000021e0410000,0x00000021e0510000) (1024K)]
0x0000019e7de74090 ConcurrentGCThread "G1 Refine#0" [id=32904, stack(0x00000021dd900000,0x00000021dda00000) (1024K)]
0x0000019e7de74a10 ConcurrentGCThread "G1 Service" [id=39480, stack(0x00000021dda00000,0x00000021ddb00000) (1024K)]
Total: 24
Threads with active compile tasks:
Total: 0
VM state: at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007ffe2efbde50] Threads_lock - owner thread: 0x0000019e7affe050
[0x00007ffe2efbdf50] Heap_lock - owner thread: 0x0000019e8cf4dba0
Heap address: 0x0000000401000000, size: 16368 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
CDS archive(s) mapped at: [0x0000019e2d000000-0x0000019e2dc90000-0x0000019e2dc90000), size 13172736, SharedBaseAddress: 0x0000019e2d000000, ArchiveRelocationMode: 1.
Compressed class space mapped at: 0x0000019e2e000000-0x0000019e6e000000, reserved size: 1073741824
Narrow klass base: 0x0000019e2d000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
GC Precious Log:
CardTable entry size: 512
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
CPUs: 20 total, 20 available
Memory: 65446M
Large Page Support: Disabled
NUMA Support: Disabled
Compressed Oops: Enabled (Zero based)
Heap Region Size: 8M
Heap Min Capacity: 8M
Heap Initial Capacity: 1G
Heap Max Capacity: 16368M
Pre-touch: Disabled
Parallel Workers: 15
Concurrent Workers: 4
Concurrent Refinement Workers: 15
Periodic GC: Disabled
Heap:
garbage-first heap total 139264K, used 37980K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
| 0|0x0000000401000000, 0x00000004017ffff0, 0x0000000401800000| 99%| O| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked
| 1|0x0000000401800000, 0x0000000402000000, 0x0000000402000000|100%| O| |TAMS 0x0000000401800000| PB 0x0000000401800000| Untracked
| 2|0x0000000402000000, 0x0000000402000000, 0x0000000402800000| 0%| F| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked
| 3|0x0000000402800000, 0x0000000402faa148, 0x0000000403000000| 95%| O| |TAMS 0x0000000402800000| PB 0x0000000402800000| Untracked
| 4|0x0000000403000000, 0x0000000403000000, 0x0000000403800000| 0%| F| |TAMS 0x0000000403000000| PB 0x0000000403000000| Untracked
| 5|0x0000000403800000, 0x0000000403d20d20, 0x0000000404000000| 64%| O| |TAMS 0x0000000403800000| PB 0x0000000403800000| Untracked
| 6|0x0000000404000000, 0x000000040404c530, 0x0000000404800000| 3%| S|CS|TAMS 0x0000000404000000| PB 0x0000000404000000| Complete
| 7|0x0000000404800000, 0x0000000405000000, 0x0000000405000000|100%| S|CS|TAMS 0x0000000404800000| PB 0x0000000404800000| Complete
| 8|0x0000000405000000, 0x0000000405000000, 0x0000000405800000| 0%| F| |TAMS 0x0000000405000000| PB 0x0000000405000000| Untracked
| 9|0x0000000405800000, 0x0000000405800000, 0x0000000406000000| 0%| F| |TAMS 0x0000000405800000| PB 0x0000000405800000| Untracked
| 10|0x0000000406000000, 0x0000000406000000, 0x0000000406800000| 0%| F| |TAMS 0x0000000406000000| PB 0x0000000406000000| Untracked
| 11|0x0000000406800000, 0x0000000406800000, 0x0000000407000000| 0%| F| |TAMS 0x0000000406800000| PB 0x0000000406800000| Untracked
| 12|0x0000000407000000, 0x0000000407000000, 0x0000000407800000| 0%| F| |TAMS 0x0000000407000000| PB 0x0000000407000000| Untracked
| 13|0x0000000407800000, 0x0000000407800000, 0x0000000408000000| 0%| F| |TAMS 0x0000000407800000| PB 0x0000000407800000| Untracked
| 14|0x0000000408000000, 0x0000000408000000, 0x0000000408800000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked
| 15|0x0000000408800000, 0x0000000408800000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408800000| PB 0x0000000408800000| Untracked
| 16|0x0000000409000000, 0x0000000409000000, 0x0000000409800000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked
Card table byte_map: [0x0000019e173d0000,0x0000019e193d0000] _byte_map_base: 0x0000019e153c8000
Marking Bits: (CMBitMap*) 0x0000019e7b0c3770
Bits: [0x0000019e193d0000, 0x0000019e29390000)
Polling page: 0x0000019e7afe0000
Metaspace:
Usage:
Non-class: 33.19 MB used.
Class: 3.79 MB used.
Both: 36.98 MB used.
Virtual space:
Non-class space: 64.00 MB reserved, 33.56 MB ( 52%) committed, 1 nodes.
Class space: 1.00 GB reserved, 4.19 MB ( <1%) committed, 1 nodes.
Both: 1.06 GB reserved, 37.75 MB ( 3%) committed.
Chunk freelists:
Non-Class: 14.01 MB
Class: 11.69 MB
Both: 25.70 MB
MaxMetaspaceSize: unlimited
CompressedClassSpaceSize: 1.00 GB
Initial GC threshold: 21.00 MB
Current GC threshold: 62.81 MB
CDS: on
- commit_granule_bytes: 65536.
- commit_granule_words: 8192.
- virtual_space_node_default_size: 8388608.
- enlarge_chunks_in_place: 1.
- use_allocation_guard: 0.
Internal statistics:
num_allocs_failed_limit: 3.
num_arena_births: 1468.
num_arena_deaths: 20.
num_vsnodes_births: 2.
num_vsnodes_deaths: 0.
num_space_committed: 603.
num_space_uncommitted: 0.
num_chunks_returned_to_freelist: 33.
num_chunks_taken_from_freelist: 2560.
num_chunk_merges: 5.
num_chunk_splits: 1530.
num_chunks_enlarged: 711.
num_inconsistent_stats: 0.
CodeHeap 'non-profiled nmethods': size=119168Kb used=7026Kb max_used=7178Kb free=112141Kb
bounds [0x0000019e0ff70000, 0x0000019e106c0000, 0x0000019e173d0000]
CodeHeap 'profiled nmethods': size=119104Kb used=7294Kb max_used=12629Kb free=111809Kb
bounds [0x0000019e083d0000, 0x0000019e09080000, 0x0000019e0f820000]
CodeHeap 'non-nmethods': size=7488Kb used=2033Kb max_used=3772Kb free=5454Kb
bounds [0x0000019e0f820000, 0x0000019e0fbe0000, 0x0000019e0ff70000]
total_blobs=5309 nmethods=4334 adapters=878
compilation: enabled
stopped_count=0, restarted_count=0
full_count=0
Compilation events (20 events):
Event: 1357.904 Thread 0x0000019e7df722c0 11841 3 java.util.stream.IntPipeline$10$1::accept (27 bytes)
Event: 1357.904 Thread 0x0000019e7df722c0 nmethod 11841 0x0000019e08db1e90 code [0x0000019e08db2080, 0x0000019e08db2580]
Event: 1358.376 Thread 0x0000019e7df722c0 11842 3 java.lang.ref.ReferenceQueue::await (15 bytes)
Event: 1358.377 Thread 0x0000019e7df722c0 nmethod 11842 0x0000019e08e34110 code [0x0000019e08e342c0, 0x0000019e08e34468]
Event: 1398.124 Thread 0x0000019e7df69930 11843 4 java.util.TimSort::countRunAndMakeAscending (128 bytes)
Event: 1398.186 Thread 0x0000019e7df69930 nmethod 11843 0x0000019e1047b590 code [0x0000019e1047b900, 0x0000019e1047d1b0]
Event: 1419.038 Thread 0x0000019e7df69930 11844 4 javax.swing.text.ParagraphView$Row::isJustifyEnabled (70 bytes)
Event: 1419.039 Thread 0x0000019e7df69930 nmethod 11844 0x0000019e10184f90 code [0x0000019e10185120, 0x0000019e101851e8]
Event: 1434.977 Thread 0x0000019e7df69930 11845 4 oshi.util.tuples.Triplet::<init> (20 bytes)
Event: 1434.981 Thread 0x0000019e7df69930 nmethod 11845 0x0000019e10479c90 code [0x0000019e10479e20, 0x0000019e1047a170]
Event: 1449.040 Thread 0x0000019e7df69930 11846 4 java.awt.Rectangle::<init> (9 bytes)
Event: 1449.041 Thread 0x0000019e7df69930 nmethod 11846 0x0000019e1018b110 code [0x0000019e1018b2a0, 0x0000019e1018b338]
Event: 1454.778 Thread 0x0000019e7df69930 11847 4 com.sun.jna.Memory::setPointer (16 bytes)
Event: 1454.780 Thread 0x0000019e7df69930 nmethod 11847 0x0000019e1047ae90 code [0x0000019e1047b040, 0x0000019e1047b1e0]
Event: 1455.368 Thread 0x0000019e7df69930 11848 4 com.sun.jna.Memory::setWideString (24 bytes)
Event: 1455.370 Thread 0x0000019e7df69930 nmethod 11848 0x0000019e105b6290 code [0x0000019e105b6440, 0x0000019e105b6600]
Event: 1457.040 Thread 0x0000019e7df69930 11849 ! 4 javax.swing.JComponent::_paintImmediately (891 bytes)
Event: 1457.743 Thread 0x0000019e7df69930 nmethod 11849 0x0000019e10691c10 code [0x0000019e10692760, 0x0000019e106a2d80]
Event: 1462.568 Thread 0x0000019e7df69930 11850 4 com.sun.jna.win32.W32APITypeMapper$1::toNative (38 bytes)
Event: 1462.572 Thread 0x0000019e7df69930 nmethod 11850 0x0000019e10412590 code [0x0000019e10412740, 0x0000019e10412918]
GC Heap History (20 events):
Event: 1396.523 GC heap after
{Heap after GC invocations=378 (full 58):
garbage-first heap total 139264K, used 29282K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1405.788 GC heap before
{Heap before GC invocations=378 (full 58):
garbage-first heap total 139264K, used 103010K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 0 survivors (0K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1405.816 GC heap after
{Heap after GC invocations=379 (full 58):
garbage-first heap total 139264K, used 38474K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1411.793 GC heap before
{Heap before GC invocations=380 (full 58):
garbage-first heap total 139264K, used 95818K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1411.809 GC heap after
{Heap after GC invocations=381 (full 58):
garbage-first heap total 139264K, used 36821K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1417.992 GC heap before
{Heap before GC invocations=381 (full 58):
garbage-first heap total 139264K, used 94165K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 8 young (65536K), 1 survivors (8192K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1418.014 GC heap after
{Heap after GC invocations=382 (full 58):
garbage-first heap total 139264K, used 36804K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1424.989 GC heap before
{Heap before GC invocations=382 (full 58):
garbage-first heap total 139264K, used 102340K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 1 survivors (8192K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1425.014 GC heap after
{Heap after GC invocations=383 (full 58):
garbage-first heap total 139264K, used 37879K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1431.188 GC heap before
{Heap before GC invocations=384 (full 58):
garbage-first heap total 139264K, used 95223K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1431.209 GC heap after
{Heap after GC invocations=385 (full 58):
garbage-first heap total 139264K, used 36902K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1438.173 GC heap before
{Heap before GC invocations=385 (full 58):
garbage-first heap total 139264K, used 102438K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 1 survivors (8192K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1438.192 GC heap after
{Heap after GC invocations=386 (full 58):
garbage-first heap total 139264K, used 37767K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1444.996 GC heap before
{Heap before GC invocations=386 (full 58):
garbage-first heap total 139264K, used 103303K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 10 young (81920K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1445.016 GC heap after
{Heap after GC invocations=387 (full 58):
garbage-first heap total 139264K, used 38072K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1451.999 GC heap before
{Heap before GC invocations=388 (full 58):
garbage-first heap total 139264K, used 103608K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 10 young (81920K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1452.020 GC heap after
{Heap after GC invocations=389 (full 58):
garbage-first heap total 139264K, used 37881K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1458.978 GC heap before
{Heap before GC invocations=389 (full 58):
garbage-first heap total 139264K, used 103417K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 10 young (81920K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1458.998 GC heap after
{Heap after GC invocations=390 (full 58):
garbage-first heap total 139264K, used 38085K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Event: 1465.790 GC heap before
{Heap before GC invocations=391 (full 58):
garbage-first heap total 139264K, used 103621K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 10 young (81920K), 2 survivors (16384K)
Metaspace used 37863K, committed 38656K, reserved 1114112K
class space used 3878K, committed 4288K, reserved 1048576K
}
Dll operation events (14 events):
Event: 0.010 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
Event: 0.055 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
Event: 0.076 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
Event: 0.078 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
Event: 0.089 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
Event: 0.319 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
Event: 0.835 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna737709317296926814.dll
Event: 3.648 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
Event: 86.445 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
Event: 87.183 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
Event: 87.583 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
Event: 87.585 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
Event: 87.711 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-22105613826368000.dll
Event: 93.778 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
Deoptimization events (20 events):
Event: 911.594 Thread 0x0000019e2c665a80 DEOPT PACKING pc=0x0000019e1019e684 sp=0x00000021e110e120
Event: 911.594 Thread 0x0000019e2c665a80 DEOPT UNPACKING pc=0x0000019e0f8746a2 sp=0x00000021e110e0e8 mode 2
Event: 911.594 Thread 0x0000019e2c665a80 Uncommon trap: trap_request=0xffffffbe fr.pc=0x0000019e1019e684 relative=0x00000000000010a4
Event: 911.594 Thread 0x0000019e2c665a80 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x0000019e1019e684 method=sun.security.ssl.SSLTransport.decode(Lsun/security/ssl/TransportContext;[Ljava/nio/ByteBuffer;II[Ljava/nio/ByteBuffer;II)Lsun/security/ssl/Plaintext; @ 178 c2
Event: 911.594 Thread 0x0000019e2c665a80 DEOPT PACKING pc=0x0000019e1019e684 sp=0x00000021e110e120
Event: 911.594 Thread 0x0000019e2c665a80 DEOPT UNPACKING pc=0x0000019e0f8746a2 sp=0x00000021e110e0e8 mode 2
Event: 919.510 Thread 0x0000019e8cf4fc70 DEOPT PACKING pc=0x0000019e08beb568 sp=0x00000021e040f3e0
Event: 919.510 Thread 0x0000019e8cf4fc70 DEOPT UNPACKING pc=0x0000019e0f874e42 sp=0x00000021e040e890 mode 0
Event: 1023.337 Thread 0x0000019e2c665a80 Uncommon trap: trap_request=0xffffffd6 fr.pc=0x0000019e10146c04 relative=0x00000000000008e4
Event: 1023.337 Thread 0x0000019e2c665a80 Uncommon trap: reason=array_check action=maybe_recompile pc=0x0000019e10146c04 method=java.util.stream.Nodes$FixedNodeBuilder.accept(Ljava/lang/Object;)V @ 28 c2
Event: 1023.337 Thread 0x0000019e2c665a80 DEOPT PACKING pc=0x0000019e10146c04 sp=0x00000021e110df70
Event: 1023.337 Thread 0x0000019e2c665a80 DEOPT UNPACKING pc=0x0000019e0f8746a2 sp=0x00000021e110ddf8 mode 2
Event: 1114.635 Thread 0x0000019e739444f0 Uncommon trap: trap_request=0xffffff6e fr.pc=0x0000019e103f97f4 relative=0x0000000000000e54
Event: 1114.635 Thread 0x0000019e739444f0 Uncommon trap: reason=loop_limit_check action=maybe_recompile pc=0x0000019e103f97f4 method=javax.swing.JComponent.getObscuredState(IIIII)I @ 15 c2
Event: 1114.635 Thread 0x0000019e739444f0 DEOPT PACKING pc=0x0000019e103f97f4 sp=0x00000021e0c0e460
Event: 1114.635 Thread 0x0000019e739444f0 DEOPT UNPACKING pc=0x0000019e0f8746a2 sp=0x00000021e0c0e3f0 mode 2
Event: 1227.926 Thread 0x0000019e2c6618e0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000019e102e0640 relative=0x0000000000002c80
Event: 1227.926 Thread 0x0000019e2c6618e0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000019e102e0640 method=java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(J)J @ 104 c2
Event: 1227.926 Thread 0x0000019e2c6618e0 DEOPT PACKING pc=0x0000019e102e0640 sp=0x00000021dd3fece0
Event: 1227.926 Thread 0x0000019e2c6618e0 DEOPT UNPACKING pc=0x0000019e0f8746a2 sp=0x00000021dd3fec00 mode 2
Classes loaded (20 events):
Event: 395.014 Loading class java/security/DomainCombiner
Event: 395.014 Loading class java/security/DomainCombiner done
Event: 418.183 Loading class sun/security/ssl/Alert$AlertMessage
Event: 418.183 Loading class sun/security/ssl/Alert$AlertMessage done
Event: 635.794 Loading class sun/security/ssl/PreSharedKeyExtension$PskIdentity
Event: 635.794 Loading class sun/security/ssl/PreSharedKeyExtension$PskIdentity done
Event: 635.796 Loading class sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeySpec
Event: 635.796 Loading class sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeySpec done
Event: 635.796 Loading class sun/security/ssl/PreSharedKeyExtension$PartialClientHelloMessage
Event: 635.797 Loading class sun/security/ssl/PreSharedKeyExtension$PartialClientHelloMessage done
Event: 635.797 Loading class sun/security/ssl/SSLEngineOutputRecord
Event: 635.798 Loading class sun/security/ssl/SSLEngineOutputRecord done
Event: 635.800 Loading class sun/security/ssl/SSLEngineOutputRecord$HandshakeFragment
Event: 635.800 Loading class sun/security/ssl/SSLEngineOutputRecord$HandshakeFragment done
Event: 635.801 Loading class sun/security/ssl/SSLEngineOutputRecord$HandshakeMemo
Event: 635.801 Loading class sun/security/ssl/SSLEngineOutputRecord$RecordMemo
Event: 635.802 Loading class sun/security/ssl/SSLEngineOutputRecord$RecordMemo done
Event: 635.802 Loading class sun/security/ssl/SSLEngineOutputRecord$HandshakeMemo done
Event: 911.588 Loading class sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeySpec
Event: 911.589 Loading class sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeySpec done
Classes unloaded (10 events):
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e2a2400 'java/lang/invoke/LambdaForm$MH+0x0000019e2e2a2400'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e2a1c00 'java/lang/invoke/LambdaForm$MH+0x0000019e2e2a1c00'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e2a1400 'java/lang/invoke/LambdaForm$MH+0x0000019e2e2a1400'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e2a1000 'java/lang/invoke/LambdaForm$MH+0x0000019e2e2a1000'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e2a0400 'java/lang/invoke/LambdaForm$MH+0x0000019e2e2a0400'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e29fc00 'java/lang/invoke/LambdaForm$MH+0x0000019e2e29fc00'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e29f400 'java/lang/invoke/LambdaForm$MH+0x0000019e2e29f400'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e29ec00 'java/lang/invoke/LambdaForm$MH+0x0000019e2e29ec00'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e29e400 'java/lang/invoke/LambdaForm$MH+0x0000019e2e29e400'
Event: 107.942 Thread 0x0000019e7affe050 Unloading class 0x0000019e2e29d800 'java/lang/invoke/LambdaForm$MH+0x0000019e2e29d800'
Classes redefined (0 events):
No events
Internal exceptions (20 events):
Event: 460.953 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000411845880}> (0x0000000411845880)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 516.042 Thread 0x0000019e7296a160 Implicit null exception at 0x0000019e0ff96b20 to 0x0000019e0ff97450
Event: 555.528 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040e01cce0}> (0x000000040e01cce0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 636.070 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x00000004131a9a98}> (0x00000004131a9a98)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 657.629 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c7f0}> (0x000000040901c7f0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 679.305 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000413021120}> (0x0000000413021120)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 701.203 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f82f6b0}> (0x000000040f82f6b0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 723.921 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000041301c7b8}> (0x000000041301c7b8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 744.968 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f82eeb8}> (0x000000040f82eeb8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 804.482 Thread 0x0000019e8cf4d510 Exception <a 'java/io/IOException'{0x000000040c785d90}> (0x000000040c785d90)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 823.221 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f81d410}> (0x000000040f81d410)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 911.443 Thread 0x0000019e2c665a80 Implicit null exception at 0x0000019e1019d6cf to 0x0000019e1019e650
Event: 911.588 Thread 0x0000019e2c665a80 Implicit null exception at 0x0000019e1019d6cf to 0x0000019e1019e650
Event: 911.594 Thread 0x0000019e2c665a80 Implicit null exception at 0x0000019e1019d6cf to 0x0000019e1019e650
Event: 911.594 Thread 0x0000019e2c665a80 Implicit null exception at 0x0000019e1019d6cf to 0x0000019e1019e650
Event: 935.832 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c840}> (0x000000040901c840)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1047.378 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040781c6b0}> (0x000000040781c6b0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1149.244 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000407821b00}> (0x0000000407821b00)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1264.354 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000407824930}> (0x0000000407824930)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1397.561 Thread 0x0000019e739458a0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c6e8}> (0x000000040901c6e8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
ZGC Phase Switch (0 events):
No events
VM Operations (20 events):
Event: 1445.016 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 1445.052 Executing VM operation: G1PauseRemark
Event: 1445.055 Executing VM operation: G1PauseRemark done
Event: 1445.064 Executing VM operation: G1PauseCleanup
Event: 1445.065 Executing VM operation: G1PauseCleanup done
Event: 1451.999 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 1452.020 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 1455.022 Executing VM operation: Cleanup
Event: 1455.022 Executing VM operation: Cleanup done
Event: 1456.023 Executing VM operation: Cleanup
Event: 1456.023 Executing VM operation: Cleanup done
Event: 1458.978 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 1458.999 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 1459.025 Executing VM operation: G1PauseRemark
Event: 1459.028 Executing VM operation: G1PauseRemark done
Event: 1459.035 Executing VM operation: G1PauseCleanup
Event: 1459.035 Executing VM operation: G1PauseCleanup done
Event: 1460.036 Executing VM operation: Cleanup
Event: 1460.036 Executing VM operation: Cleanup done
Event: 1465.790 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Events (20 events):
Event: 1356.143 Thread 0x0000019e8cf4ce80 Thread added: 0x0000019e8cf4ce80
Event: 1356.466 Thread 0x0000019e8cf4d510 Thread added: 0x0000019e8cf4d510
Event: 1356.607 Thread 0x0000019e8cf4fc70 Thread added: 0x0000019e8cf4fc70
Event: 1395.361 Thread 0x0000019e8cf4c7f0 Thread exited: 0x0000019e8cf4c7f0
Event: 1395.361 Thread 0x0000019e8cf4c160 Thread exited: 0x0000019e8cf4c160
Event: 1395.369 Thread 0x0000019e8cf51d40 Thread exited: 0x0000019e8cf51d40
Event: 1395.369 Thread 0x0000019e8cf4bad0 Thread exited: 0x0000019e8cf4bad0
Event: 1395.369 Thread 0x0000019e8cf4ce80 Thread exited: 0x0000019e8cf4ce80
Event: 1396.411 Thread 0x0000019e8cf4ef50 Thread exited: 0x0000019e8cf4ef50
Event: 1396.492 Thread 0x0000019e7affe050 flushing nmethod 0x0000019e0868da90
Event: 1396.492 Thread 0x0000019e7affe050 flushing nmethod 0x0000019e08cc1190
Event: 1396.492 Thread 0x0000019e7affe050 flushing nmethod 0x0000019e08d91810
Event: 1396.492 Thread 0x0000019e7affe050 flushing nmethod 0x0000019e083d8490
Event: 1396.492 Thread 0x0000019e7affe050 flushing nmethod 0x0000019e08be5b90
Event: 1398.123 Thread 0x0000019e8cf4dba0 Thread added: 0x0000019e8cf4dba0
Event: 1416.609 Thread 0x0000019e8cf4fc70 Thread exited: 0x0000019e8cf4fc70
Event: 1416.609 Thread 0x0000019e2c661250 Thread exited: 0x0000019e2c661250
Event: 1417.904 Thread 0x0000019e2c666110 Thread exited: 0x0000019e2c666110
Event: 1445.055 Thread 0x0000019e7affe050 flushing nmethod 0x0000019e0862d290
Event: 1459.028 Thread 0x0000019e7affe050 flushing nmethod 0x0000019e08c54d90
Dynamic libraries:
0x00007ff6f5f60000 - 0x00007ff6f5f70000 C:\Program Files\Java\jdk-21\bin\java.exe
0x00007ffeb14d0000 - 0x00007ffeb16e7000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffeb04c0000 - 0x00007ffeb0584000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffeae6f0000 - 0x00007ffeaeac2000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffeaef20000 - 0x00007ffeaf031000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffe97c90000 - 0x00007ffe97ca9000 C:\Program Files\Java\jdk-21\bin\jli.dll
0x00007ffe8ce30000 - 0x00007ffe8ce4b000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
0x00007ffeafe30000 - 0x00007ffeafee1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffeb0590000 - 0x00007ffeb0637000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffeb0ac0000 - 0x00007ffeb0b68000 C:\WINDOWS\System32\sechost.dll
0x00007ffeaead0000 - 0x00007ffeaeaf8000 C:\WINDOWS\System32\bcrypt.dll
0x00007ffeb0640000 - 0x00007ffeb0754000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffeb07f0000 - 0x00007ffeb09a1000 C:\WINDOWS\System32\USER32.dll
0x00007ffeaeb00000 - 0x00007ffeaeb26000 C:\WINDOWS\System32\win32u.dll
0x00007ffe83da0000 - 0x00007ffe8403b000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da\COMCTL32.dll
0x00007ffeb10c0000 - 0x00007ffeb10e9000 C:\WINDOWS\System32\GDI32.dll
0x00007ffeae5c0000 - 0x00007ffeae6e3000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffeaf040000 - 0x00007ffeaf0da000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffeaa470000 - 0x00007ffeaa47a000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffeb1080000 - 0x00007ffeb10b1000 C:\WINDOWS\System32\IMM32.DLL
0x00007ffea7340000 - 0x00007ffea734c000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
0x00007ffe7fc50000 - 0x00007ffe7fcde000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
0x00007ffe2e380000 - 0x00007ffe2f09a000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
0x00007ffeaf490000 - 0x00007ffeaf501000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffeae4a0000 - 0x00007ffeae4ed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
0x00007ffea5860000 - 0x00007ffea5894000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffeae470000 - 0x00007ffeae483000 C:\WINDOWS\SYSTEM32\UMPDC.dll
0x00007ffead5f0000 - 0x00007ffead608000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
0x00007ffea18a0000 - 0x00007ffea18aa000 C:\Program Files\Java\jdk-21\bin\jimage.dll
0x00007ffea8110000 - 0x00007ffea8343000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
0x00007ffeb10f0000 - 0x00007ffeb1483000 C:\WINDOWS\System32\combase.dll
0x00007ffeaf160000 - 0x00007ffeaf237000 C:\WINDOWS\System32\OLEAUT32.dll
0x00007ffea7b20000 - 0x00007ffea7b52000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
0x00007ffeaf0e0000 - 0x00007ffeaf15b000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffe8cb90000 - 0x00007ffe8cbaf000 C:\Program Files\Java\jdk-21\bin\java.dll
0x00007ffeaf580000 - 0x00007ffeafe22000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffeaed20000 - 0x00007ffeaee5f000 C:\WINDOWS\System32\wintypes.dll
0x00007ffeac4f0000 - 0x00007ffeace0e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
0x00007ffeb09b0000 - 0x00007ffeb0abb000 C:\WINDOWS\System32\SHCORE.dll
0x00007ffeaf410000 - 0x00007ffeaf479000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffeae4f0000 - 0x00007ffeae51b000 C:\WINDOWS\SYSTEM32\profapi.dll
0x00007ffe7c7c0000 - 0x00007ffe7c897000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
0x00007ffea0fe0000 - 0x00007ffea0ff0000 C:\Program Files\Java\jdk-21\bin\net.dll
0x00007ffea8f70000 - 0x00007ffea909c000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
0x00007ffeada70000 - 0x00007ffeadad9000 C:\WINDOWS\system32\mswsock.dll
0x00007ffe89850000 - 0x00007ffe89866000 C:\Program Files\Java\jdk-21\bin\nio.dll
0x00007ffe80dc0000 - 0x00007ffe80dd8000 C:\Program Files\Java\jdk-21\bin\zip.dll
0x00007ffeadcd0000 - 0x00007ffeadceb000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffead550000 - 0x00007ffead587000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffeadb60000 - 0x00007ffeadb88000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffeadcc0000 - 0x00007ffeadccc000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffead070000 - 0x00007ffead09d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffeaffc0000 - 0x00007ffeaffc9000 C:\WINDOWS\System32\NSI.dll
0x00007ffea6eb0000 - 0x00007ffea6ef9000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna737709317296926814.dll
0x00007ffeaf480000 - 0x00007ffeaf488000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffea08b0000 - 0x00007ffea08c0000 C:\Program Files\Java\jdk-21\bin\verify.dll
0x00007ffea0e00000 - 0x00007ffea0e17000 C:\WINDOWS\system32\napinsp.dll
0x00007ffe9d720000 - 0x00007ffe9d73b000 C:\WINDOWS\system32\pnrpnsp.dll
0x00007ffead0e0000 - 0x00007ffead1d8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
0x00007ffea7750000 - 0x00007ffea7761000 C:\WINDOWS\System32\winrnr.dll
0x00007ffe9be40000 - 0x00007ffe9be5f000 C:\WINDOWS\system32\wshbth.dll
0x00007ffe9e7c0000 - 0x00007ffe9e7e1000 C:\WINDOWS\system32\nlansp_c.dll
0x00007ffea5ab0000 - 0x00007ffea5aba000 C:\Windows\System32\rasadhlp.dll
0x00007ffea84a0000 - 0x00007ffea8524000 C:\WINDOWS\System32\fwpuclnt.dll
0x00007ffe4dcb0000 - 0x00007ffe4e074000 C:\WINDOWS\SYSTEM32\nvcuda.dll
0x00007ffeabc50000 - 0x00007ffeabc87000 C:\WINDOWS\SYSTEM32\dxcore.dll
0x00007ffe2ada0000 - 0x00007ffe2cb09000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvcuda64.dll
0x00007ffeadd20000 - 0x00007ffeadd32000 C:\WINDOWS\SYSTEM32\msasn1.dll
0x00007ffea87a0000 - 0x00007ffea87d2000 C:\WINDOWS\SYSTEM32\cryptnet.dll
0x00007ffeaeb30000 - 0x00007ffeaec97000 C:\WINDOWS\System32\CRYPT32.dll
0x00007ffeadd90000 - 0x00007ffeadde0000 C:\WINDOWS\SYSTEM32\wldp.dll
0x00007ffea8580000 - 0x00007ffea86da000 C:\WINDOWS\SYSTEM32\drvstore.dll
0x00007ffeae190000 - 0x00007ffeae1bc000 C:\WINDOWS\SYSTEM32\devobj.dll
0x00007ffeae1c0000 - 0x00007ffeae20e000 C:\WINDOWS\SYSTEM32\CFGMGR32.dll
0x00007ffea3ae0000 - 0x00007ffea4055000 C:\WINDOWS\SYSTEM32\nvapi64.dll
0x00007ffeaffe0000 - 0x00007ffeb0454000 C:\WINDOWS\System32\SETUPAPI.dll
0x00007ffeb0d10000 - 0x00007ffeb0eb0000 C:\WINDOWS\System32\ole32.dll
0x00007ffe7e110000 - 0x00007ffe7e1a5000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvdxgdmal64.dll
0x00007ffe5ef60000 - 0x00007ffe5f082000 C:\WINDOWS\SYSTEM32\nvml.dll
0x00007ffe243d0000 - 0x00007ffe2522e000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvml.dll
0x00007ffe55210000 - 0x00007ffe5539f000 C:\Program Files\Java\jdk-21\bin\awt.dll
0x00007ffeab040000 - 0x00007ffeab0d8000 C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ffeabf90000 - 0x00007ffeabfbe000 C:\WINDOWS\system32\DWMAPI.DLL
0x00007ffeabb60000 - 0x00007ffeabc14000 C:\WINDOWS\system32\uxtheme.dll
0x00007ffe75360000 - 0x00007ffe75460000 C:\WINDOWS\system32\opengl32.dll
0x00007ffe80090000 - 0x00007ffe800bd000 C:\WINDOWS\SYSTEM32\GLU32.dll
0x00007ffeb0f20000 - 0x00007ffeb1080000 C:\WINDOWS\System32\MSCTF.dll
0x00007ffe8a090000 - 0x00007ffe8a238000 C:\WINDOWS\system32\d3d9.dll
0x00007ffeaeca0000 - 0x00007ffeaed1c000 C:\WINDOWS\System32\wintrust.dll
0x00007ffeaf560000 - 0x00007ffeaf57f000 C:\WINDOWS\System32\imagehlp.dll
0x00007ffea2850000 - 0x00007ffea289a000 C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll
0x00007ffe97700000 - 0x00007ffe977c2000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvldumdx.dll
0x00007ffe93a40000 - 0x00007ffe971da000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvgpucomp64.dll
0x00007ffe93960000 - 0x00007ffe93a37000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\NvMemMapStoragex.dll
0x00007ffe2f8c0000 - 0x00007ffe31987000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvd3dumx.dll
0x00007ffe8afe0000 - 0x00007ffe8b2e4000 C:\WINDOWS\system32\nvspcap64.dll
0x00007ffead700000 - 0x00007ffead734000 C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007ffeadb00000 - 0x00007ffeadb26000 C:\WINDOWS\SYSTEM32\gpapi.dll
0x00007ffe8ae20000 - 0x00007ffe8afd4000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvppex.dll
0x00007ffe9d520000 - 0x00007ffe9d52e000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
0x00007ffeade80000 - 0x00007ffeadead000 C:\WINDOWS\SYSTEM32\ncrypt.dll
0x00007ffeade40000 - 0x00007ffeade77000 C:\WINDOWS\SYSTEM32\NTASN1.dll
0x00007ffe7e240000 - 0x00007ffe7e2c7000 C:\Program Files\Java\jdk-21\bin\freetype.dll
0x00007ffe5c3a0000 - 0x00007ffe5c481000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
0x00007ffe7ede0000 - 0x00007ffe7ede6000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-22105613826368000.dll
0x00007ffe9c3a0000 - 0x00007ffe9c3a7000 C:\Program Files\Java\jdk-21\bin\jawt.dll
0x00007ffe83c00000 - 0x00007ffe83cb3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
0x00007ffeafef0000 - 0x00007ffeaffa0000 C:\WINDOWS\System32\clbcatq.dll
0x00007ffea8e60000 - 0x00007ffea8f69000 C:\WINDOWS\SYSTEM32\PROPSYS.dll
0x00007ffe5d800000 - 0x00007ffe5d81a000 C:\WINDOWS\system32\NetworkExplorer.dll
0x00007ffea0210000 - 0x00007ffea022e000 C:\WINDOWS\SYSTEM32\MPR.dll
0x00007ffe8cbc0000 - 0x00007ffe8cbeb000 C:\WINDOWS\System32\p9np.dll
0x00007ffe9f610000 - 0x00007ffe9f61c000 C:\WINDOWS\System32\drprov.dll
0x00007ffe9d700000 - 0x00007ffe9d719000 C:\WINDOWS\System32\ntlanman.dll
0x00007ffe9c920000 - 0x00007ffe9c93f000 C:\WINDOWS\System32\davclnt.dll
0x00007ffeae3f0000 - 0x00007ffeae45c000 C:\WINDOWS\System32\WINSTA.dll
0x00007ffea8ba0000 - 0x00007ffea8bba000 C:\WINDOWS\System32\wkscli.dll
0x00007ffe9ca40000 - 0x00007ffe9ca52000 C:\WINDOWS\SYSTEM32\cscapi.dll
0x00007ffead060000 - 0x00007ffead06c000 C:\WINDOWS\System32\netutils.dll
0x00007ffe89670000 - 0x00007ffe896ce000 C:\Windows\System32\dlnashext.dll
0x00007ffe8bd50000 - 0x00007ffe8bdb9000 C:\Windows\System32\PlayToDevice.dll
0x00007ffe9c820000 - 0x00007ffe9c841000 C:\Windows\System32\DevDispItemProvider.dll
0x00007ffea7b60000 - 0x00007ffea7bfe000 C:\WINDOWS\System32\MMDevApi.dll
0x00007ffe9c330000 - 0x00007ffe9c386000 C:\WINDOWS\SYSTEM32\rdpendp.dll
0x00007ffe8daf0000 - 0x00007ffe8dbb1000 C:\WINDOWS\SYSTEM32\TextShaping.dll
0x00007ffead3a0000 - 0x00007ffead3b4000 C:\WINDOWS\SYSTEM32\WTSAPI32.dll
0x00007ffe7ab80000 - 0x00007ffe7ac2a000 C:\WINDOWS\system32\wpdshext.dll
0x00007ffe9bc00000 - 0x00007ffe9bdc1000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8\gdiplus.dll
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8;C:\WINDOWS\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25050.5-0
VM Arguments:
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache0
java_class_path (initial): sheepit-client-7.25182.0.jar
Launcher Type: SUN_STANDARD
[Global flags]
intx CICompilerCount = 12 {product} {ergonomic}
uint ConcGCThreads = 4 {product} {ergonomic}
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
size_t InitialHeapSize = 1073741824 {product} {ergonomic}
size_t MarkStackSize = 4194304 {product} {ergonomic}
size_t MaxHeapSize = 17163091968 {product} {ergonomic}
size_t MaxNewSize = 10292822016 {product} {ergonomic}
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
size_t MinHeapSize = 8388608 {product} {ergonomic}
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
bool SegmentedCodeCache = true {product} {ergonomic}
size_t SoftMaxHeapSize = 17163091968 {manageable} {ergonomic}
bool UseCompressedOops = true {product lp64_product} {ergonomic}
bool UseG1GC = true {product} {ergonomic}
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags foldmultilines=false
#1: stderr all=off uptime,level,tags foldmultilines=false
Environment Variables:
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;C:\Program Files\Blender Foundation\Blender 4.4;
USERNAME=Nathan
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
TMP=C:\Users\Nathan\AppData\Local\Temp
TEMP=C:\Users\Nathan\AppData\Local\Temp
Periodic native trim disabled
--------------- S Y S T E M ---------------
OS:
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
OS uptime: 25 days 14:25 hours
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
Processor Information for all 20 processors :
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Memory: 4k page, system-wide physical 65446M (7156M free)
TotalPageFile size 79730M (AvailPageFile size 217M)
current process WorkingSet (physical memory assigned to process): 406M, peak: 896M
current process commit charge ("private bytes"): 427M, peak: 1243M
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
END.

835
hs_err_pid30576.log Normal file
View File

@@ -0,0 +1,835 @@
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 469762048 bytes for G1 virtual space
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
# placed in the first 32GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (os_windows.cpp:3603), pid=30576, tid=30340
#
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache1
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 63G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
Time: Fri Jul 4 18:46:42 2025 Mountain Daylight Time elapsed time: 23892.781325 seconds (0d 6h 38m 12s)
--------------- T H R E A D ---------------
Current thread (0x0000015b32c5b280): VMThread "VM Thread" [id=30340, stack(0x000000243f700000,0x000000243f800000) (1024K)]
Stack: [0x000000243f700000,0x000000243f800000]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x6cae19]
V [jvm.dll+0x855741]
V [jvm.dll+0x857c6e]
V [jvm.dll+0x858343]
V [jvm.dll+0x27e0b6]
V [jvm.dll+0x6c7595]
V [jvm.dll+0x6bc0fa]
V [jvm.dll+0x353eaa]
V [jvm.dll+0x35bb26]
V [jvm.dll+0x3ae52e]
V [jvm.dll+0x3ae7d8]
V [jvm.dll+0x3281bc]
V [jvm.dll+0x328247]
V [jvm.dll+0x36cbcc]
V [jvm.dll+0x36b41e]
V [jvm.dll+0x327981]
V [jvm.dll+0x36ab3a]
V [jvm.dll+0x85e110]
V [jvm.dll+0x85f494]
V [jvm.dll+0x85f9d0]
V [jvm.dll+0x85fc73]
V [jvm.dll+0x7ffa1b]
V [jvm.dll+0x6c94fd]
C [ucrtbase.dll+0x29333]
C [KERNEL32.DLL+0x1259d]
C [ntdll.dll+0x5af78]
VM_Operation (0x0000002441ffdee0): G1CollectForAllocation, mode: safepoint, requested by thread 0x0000015b9058fa00
--------------- P R O C E S S ---------------
Threads class SMR info:
_java_thread_list=0x0000015b91f6b990, length=29, elements={
0x0000015b32c74910, 0x0000015b32c75820, 0x0000015b32c77eb0, 0x0000015b32c7a510,
0x0000015b32c7df50, 0x0000015b32c812c0, 0x0000015b32c82710, 0x0000015b32c85d70,
0x0000015b8b257b50, 0x0000015b8b25c3c0, 0x0000015b8ba946e0, 0x0000015b90a827f0,
0x0000015b902da210, 0x0000015b911bcfa0, 0x0000015b9151ef30, 0x0000015b915223b0,
0x0000015b9151fc50, 0x0000015b915202e0, 0x0000015b91520970, 0x0000015b91521000,
0x0000015b91521690, 0x0000015ba3365450, 0x0000015b8b655cf0, 0x0000015b8b656380,
0x0000015b8b652f00, 0x0000015ba3e2d060, 0x0000015ba3363a10, 0x0000015b8b2a5060,
0x0000015b9058fa00
}
Java Threads: ( => current thread )
0x0000015b32c74910 JavaThread "Reference Handler" daemon [_thread_blocked, id=15528, stack(0x000000243f800000,0x000000243f900000) (1024K)]
0x0000015b32c75820 JavaThread "Finalizer" daemon [_thread_blocked, id=20188, stack(0x000000243f900000,0x000000243fa00000) (1024K)]
0x0000015b32c77eb0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=29884, stack(0x000000243fa00000,0x000000243fb00000) (1024K)]
0x0000015b32c7a510 JavaThread "Attach Listener" daemon [_thread_blocked, id=28428, stack(0x000000243fb00000,0x000000243fc00000) (1024K)]
0x0000015b32c7df50 JavaThread "Service Thread" daemon [_thread_blocked, id=29808, stack(0x000000243fc00000,0x000000243fd00000) (1024K)]
0x0000015b32c812c0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=21140, stack(0x000000243fd00000,0x000000243fe00000) (1024K)]
0x0000015b32c82710 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=26200, stack(0x000000243fe00000,0x000000243ff00000) (1024K)]
0x0000015b32c85d70 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=28488, stack(0x000000243ff00000,0x0000002440000000) (1024K)]
0x0000015b8b257b50 JavaThread "Notification Thread" daemon [_thread_blocked, id=5608, stack(0x0000002440100000,0x0000002440200000) (1024K)]
0x0000015b8b25c3c0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=27800, stack(0x0000002440200000,0x0000002440300000) (1024K)]
0x0000015b8ba946e0 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=29656, stack(0x0000002440600000,0x0000002440700000) (1024K)]
0x0000015b90a827f0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=17660, stack(0x0000002440900000,0x0000002440a00000) (1024K)]
0x0000015b902da210 JavaThread "AWT-Windows" daemon [_thread_in_native, id=24052, stack(0x0000002441c00000,0x0000002441d00000) (1024K)]
0x0000015b911bcfa0 JavaThread "Timer-0" [_thread_blocked, id=28972, stack(0x0000002440700000,0x0000002440800000) (1024K)]
0x0000015b9151ef30 JavaThread "TimerQueue" daemon [_thread_blocked, id=29956, stack(0x0000002442000000,0x0000002442100000) (1024K)]
0x0000015b915223b0 JavaThread "Swing-Shell" daemon [_thread_blocked, id=29044, stack(0x0000002442100000,0x0000002442200000) (1024K)]
0x0000015b9151fc50 JavaThread "AWT-Shutdown" [_thread_blocked, id=29364, stack(0x0000002442700000,0x0000002442800000) (1024K)]
0x0000015b915202e0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=17804, stack(0x0000002442800000,0x0000002442900000) (1024K)]
0x0000015b91520970 JavaThread "Thread-3" [_thread_in_native, id=20924, stack(0x0000002442900000,0x0000002442a00000) (1024K)]
0x0000015b91521000 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=30104, stack(0x0000002442a00000,0x0000002442b00000) (1024K)]
0x0000015b91521690 JavaThread "DestroyJavaVM" [_thread_blocked, id=29160, stack(0x000000243f000000,0x000000243f100000) (1024K)]
0x0000015ba3365450 JavaThread "Thread-1" [_thread_blocked, id=21052, stack(0x0000002442c00000,0x0000002442d00000) (1024K)]
0x0000015b8b655cf0 JavaThread "Thread-4" [_thread_blocked, id=28088, stack(0x0000002444000000,0x0000002444100000) (1024K)]
0x0000015b8b656380 JavaThread "Timer-1" [_thread_blocked, id=29180, stack(0x0000002444100000,0x0000002444200000) (1024K)]
0x0000015b8b652f00 JavaThread "pool-4-thread-1" [_thread_blocked, id=28036, stack(0x000000243ed00000,0x000000243ee00000) (1024K)]
0x0000015ba3e2d060 JavaThread "OkHttp client.sheepit-renderfarm.com" daemon [_thread_in_native, id=32372, stack(0x0000002440a00000,0x0000002440b00000) (1024K)]
0x0000015ba3363a10 JavaThread "OkHttp shepherd-larissa-de.sheepit-renderfarm.com" daemon [_thread_in_native, id=35888, stack(0x0000002442d00000,0x0000002442e00000) (1024K)]
0x0000015b8b2a5060 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=21448, stack(0x0000002442e00000,0x0000002442f00000) (1024K)]
0x0000015b9058fa00 JavaThread "Timer-115" [_thread_blocked, id=11232, stack(0x0000002441f00000,0x0000002442000000) (1024K)]
Total: 29
Other Threads:
=>0x0000015b32c5b280 VMThread "VM Thread" [id=30340, stack(0x000000243f700000,0x000000243f800000) (1024K)]
0x0000015b32c471e0 WatcherThread "VM Periodic Task Thread" [id=28168, stack(0x000000243f600000,0x000000243f700000) (1024K)]
0x0000015b32b20750 WorkerThread "GC Thread#0" [id=21844, stack(0x000000243f100000,0x000000243f200000) (1024K)]
0x0000015b907c3ca0 WorkerThread "GC Thread#1" [id=30444, stack(0x0000002440c00000,0x0000002440d00000) (1024K)]
0x0000015b907c4040 WorkerThread "GC Thread#2" [id=24620, stack(0x0000002440d00000,0x0000002440e00000) (1024K)]
0x0000015b90878b60 WorkerThread "GC Thread#3" [id=24804, stack(0x0000002440e00000,0x0000002440f00000) (1024K)]
0x0000015b907b1470 WorkerThread "GC Thread#4" [id=2288, stack(0x0000002440f00000,0x0000002441000000) (1024K)]
0x0000015b907b1810 WorkerThread "GC Thread#5" [id=26072, stack(0x0000002441000000,0x0000002441100000) (1024K)]
0x0000015b90619f40 WorkerThread "GC Thread#6" [id=3140, stack(0x0000002441100000,0x0000002441200000) (1024K)]
0x0000015b900673d0 WorkerThread "GC Thread#7" [id=20436, stack(0x0000002441200000,0x0000002441300000) (1024K)]
0x0000015b90067770 WorkerThread "GC Thread#8" [id=9660, stack(0x0000002441300000,0x0000002441400000) (1024K)]
0x0000015b90067b10 WorkerThread "GC Thread#9" [id=30372, stack(0x0000002441400000,0x0000002441500000) (1024K)]
0x0000015b90878340 WorkerThread "GC Thread#10" [id=23148, stack(0x0000002441500000,0x0000002441600000) (1024K)]
0x0000015b8b520380 WorkerThread "GC Thread#11" [id=30360, stack(0x0000002441600000,0x0000002441700000) (1024K)]
0x0000015b8b520ac0 WorkerThread "GC Thread#12" [id=16304, stack(0x0000002441700000,0x0000002441800000) (1024K)]
0x0000015b8b521940 WorkerThread "GC Thread#13" [id=22412, stack(0x0000002441800000,0x0000002441900000) (1024K)]
0x0000015b8b520720 WorkerThread "GC Thread#14" [id=27544, stack(0x0000002441900000,0x0000002441a00000) (1024K)]
0x0000015b1a4b39a0 ConcurrentGCThread "G1 Main Marker" [id=21888, stack(0x000000243f200000,0x000000243f300000) (1024K)]
0x0000015b1a4b4c40 WorkerThread "G1 Conc#0" [id=16084, stack(0x000000243f300000,0x000000243f400000) (1024K)]
0x0000015b90cd94f0 WorkerThread "G1 Conc#1" [id=24848, stack(0x0000002440300000,0x0000002440400000) (1024K)]
0x0000015b90cdcb50 WorkerThread "G1 Conc#2" [id=3256, stack(0x0000002440400000,0x0000002440500000) (1024K)]
0x0000015b90cda370 WorkerThread "G1 Conc#3" [id=29240, stack(0x0000002440500000,0x0000002440600000) (1024K)]
0x0000015b32b8aba0 ConcurrentGCThread "G1 Refine#0" [id=29008, stack(0x000000243f400000,0x000000243f500000) (1024K)]
0x0000015b32b8b520 ConcurrentGCThread "G1 Service" [id=524, stack(0x000000243f500000,0x000000243f600000) (1024K)]
Total: 24
Threads with active compile tasks:
Total: 0
VM state: at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007ffe2ca2de50] Threads_lock - owner thread: 0x0000015b32c5b280
[0x00007ffe2ca2df50] Heap_lock - owner thread: 0x0000015b9058fa00
Heap address: 0x0000000401000000, size: 16368 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
CDS archive(s) mapped at: [0x0000015b4a000000-0x0000015b4ac90000-0x0000015b4ac90000), size 13172736, SharedBaseAddress: 0x0000015b4a000000, ArchiveRelocationMode: 1.
Compressed class space mapped at: 0x0000015b4b000000-0x0000015b8b000000, reserved size: 1073741824
Narrow klass base: 0x0000015b4a000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
GC Precious Log:
CardTable entry size: 512
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
CPUs: 20 total, 20 available
Memory: 65446M
Large Page Support: Disabled
NUMA Support: Disabled
Compressed Oops: Enabled (Zero based)
Heap Region Size: 8M
Heap Min Capacity: 8M
Heap Initial Capacity: 1G
Heap Max Capacity: 16368M
Pre-touch: Disabled
Parallel Workers: 15
Concurrent Workers: 4
Concurrent Refinement Workers: 15
Periodic GC: Disabled
Heap:
garbage-first heap total 139264K, used 43413K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
| 0|0x0000000401000000, 0x0000000401800000, 0x0000000401800000|100%| O| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked
| 1|0x0000000401800000, 0x0000000401fffa68, 0x0000000402000000| 99%| O| |TAMS 0x0000000401800000| PB 0x0000000401800000| Untracked
| 2|0x0000000402000000, 0x00000004022cf070, 0x0000000402800000| 35%| O| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked
| 3|0x0000000402800000, 0x0000000403000000, 0x0000000403000000|100%|HS| |TAMS 0x0000000402800000| PB 0x0000000402800000| Complete
| 4|0x0000000403000000, 0x0000000403000000, 0x0000000403800000| 0%| F| |TAMS 0x0000000403000000| PB 0x0000000403000000| Untracked
| 5|0x0000000403800000, 0x0000000403800000, 0x0000000404000000| 0%| F| |TAMS 0x0000000403800000| PB 0x0000000403800000| Untracked
| 6|0x0000000404000000, 0x0000000404000000, 0x0000000404800000| 0%| F| |TAMS 0x0000000404000000| PB 0x0000000404000000| Untracked
| 7|0x0000000404800000, 0x0000000405000000, 0x0000000405000000|100%| O|Cm|TAMS 0x0000000404800000| PB 0x0000000404800000| Complete
| 8|0x0000000405000000, 0x0000000405000000, 0x0000000405800000| 0%| F| |TAMS 0x0000000405000000| PB 0x0000000405000000| Untracked
| 9|0x0000000405800000, 0x0000000405f96bf0, 0x0000000406000000| 94%| S|CS|TAMS 0x0000000405800000| PB 0x0000000405800000| Complete
| 10|0x0000000406000000, 0x0000000406000000, 0x0000000406800000| 0%| F| |TAMS 0x0000000406000000| PB 0x0000000406000000| Untracked
| 11|0x0000000406800000, 0x0000000406800000, 0x0000000407000000| 0%| F| |TAMS 0x0000000406800000| PB 0x0000000406800000| Untracked
| 12|0x0000000407000000, 0x0000000407000000, 0x0000000407800000| 0%| F| |TAMS 0x0000000407000000| PB 0x0000000407000000| Untracked
| 13|0x0000000407800000, 0x0000000407800000, 0x0000000408000000| 0%| F| |TAMS 0x0000000407800000| PB 0x0000000407800000| Untracked
| 14|0x0000000408000000, 0x0000000408000000, 0x0000000408800000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked
| 15|0x0000000408800000, 0x0000000408800000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408800000| PB 0x0000000408800000| Untracked
| 16|0x0000000409000000, 0x0000000409000000, 0x0000000409800000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked
Card table byte_map: [0x0000015b34ca0000,0x0000015b36ca0000] _byte_map_base: 0x0000015b32c98000
Marking Bits: (CMBitMap*) 0x0000015b1a4a3100
Bits: [0x0000015b36ca0000, 0x0000015b46c60000)
Polling page: 0x0000015b18b40000
Metaspace:
Usage:
Non-class: 35.42 MB used.
Class: 3.81 MB used.
Both: 39.23 MB used.
Virtual space:
Non-class space: 64.00 MB reserved, 35.81 MB ( 56%) committed, 1 nodes.
Class space: 1.00 GB reserved, 4.38 MB ( <1%) committed, 1 nodes.
Both: 1.06 GB reserved, 40.19 MB ( 4%) committed.
Chunk freelists:
Non-Class: 12.19 MB
Class: 11.82 MB
Both: 24.01 MB
MaxMetaspaceSize: unlimited
CompressedClassSpaceSize: 1.00 GB
Initial GC threshold: 21.00 MB
Current GC threshold: 67.00 MB
CDS: on
- commit_granule_bytes: 65536.
- commit_granule_words: 8192.
- virtual_space_node_default_size: 8388608.
- enlarge_chunks_in_place: 1.
- use_allocation_guard: 0.
Internal statistics:
num_allocs_failed_limit: 3.
num_arena_births: 1574.
num_arena_deaths: 418.
num_vsnodes_births: 2.
num_vsnodes_deaths: 0.
num_space_committed: 642.
num_space_uncommitted: 0.
num_chunks_returned_to_freelist: 488.
num_chunks_taken_from_freelist: 2807.
num_chunk_merges: 124.
num_chunk_splits: 1611.
num_chunks_enlarged: 740.
num_inconsistent_stats: 0.
CodeHeap 'non-profiled nmethods': size=119168Kb used=10860Kb max_used=10860Kb free=108307Kb
bounds [0x0000015b2a450000, 0x0000015b2af30000, 0x0000015b318b0000]
CodeHeap 'profiled nmethods': size=119104Kb used=8590Kb max_used=16483Kb free=110513Kb
bounds [0x0000015b228b0000, 0x0000015b238d0000, 0x0000015b29d00000]
CodeHeap 'non-nmethods': size=7488Kb used=2039Kb max_used=3770Kb free=5448Kb
bounds [0x0000015b29d00000, 0x0000015b2a0f0000, 0x0000015b2a450000]
total_blobs=6478 nmethods=5498 adapters=882
compilation: enabled
stopped_count=0, restarted_count=0
full_count=0
Compilation events (20 events):
Event: 23824.507 Thread 0x0000015b32c85d70 16880 3 sun.awt.SunToolkit::isContainingTopLevelTranslucent (24 bytes)
Event: 23824.508 Thread 0x0000015b32c85d70 nmethod 16880 0x0000015b2301a490 code [0x0000015b2301a680, 0x0000015b2301ace0]
Event: 23824.508 Thread 0x0000015b32c85d70 16881 3 com.formdev.flatlaf.ui.FlatBorder::isFocused (50 bytes)
Event: 23824.509 Thread 0x0000015b32c85d70 nmethod 16881 0x0000015b22d5c110 code [0x0000015b22d5c3a0, 0x0000015b22d5d300]
Event: 23824.510 Thread 0x0000015b32c85d70 16882 3 java.awt.RenderingHints::<init> (30 bytes)
Event: 23824.510 Thread 0x0000015b32c82710 16883 4 sun.java2d.ReentrantContextProviderTL::acquire (71 bytes)
Event: 23824.510 Thread 0x0000015b32c85d70 nmethod 16882 0x0000015b22a3ae90 code [0x0000015b22a3b0a0, 0x0000015b22a3b4f0]
Event: 23824.510 Thread 0x0000015b32c85d70 16885 1 sun.java2d.SurfaceData::getColorModel (5 bytes)
Event: 23824.511 Thread 0x0000015b32c85d70 nmethod 16885 0x0000015b2ad02e10 code [0x0000015b2ad02fa0, 0x0000015b2ad03070]
Event: 23824.515 Thread 0x0000015b32c82710 nmethod 16883 0x0000015b2ac6a790 code [0x0000015b2ac6a960, 0x0000015b2ac6ad10]
Event: 23824.515 Thread 0x0000015b32c82710 16884 4 sun.java2d.marlin.TransformingPathConsumer2D$CurveClipSplitter::init (63 bytes)
Event: 23824.516 Thread 0x0000015b32c82710 nmethod 16884 0x0000015b2ac6a410 code [0x0000015b2ac6a5c0, 0x0000015b2ac6a6c0]
Event: 23840.505 Thread 0x0000015b32c85d70 16886 3 java.io.Writer::<init> (47 bytes)
Event: 23840.506 Thread 0x0000015b32c85d70 nmethod 16886 0x0000015b22d5b310 code [0x0000015b22d5b540, 0x0000015b22d5be78]
Event: 23840.506 Thread 0x0000015b32c85d70 16887 3 java.nio.CharBuffer::allocate (20 bytes)
Event: 23840.506 Thread 0x0000015b32c85d70 nmethod 16887 0x0000015b2367ec90 code [0x0000015b2367ee60, 0x0000015b2367f080]
Event: 23840.506 Thread 0x0000015b32c85d70 16888 3 java.nio.CharBuffer::flip (7 bytes)
Event: 23840.507 Thread 0x0000015b32c85d70 nmethod 16888 0x0000015b22d29a90 code [0x0000015b22d29c40, 0x0000015b22d29dc0]
Event: 23858.848 Thread 0x0000015b32c82710 16889 % 4 java.awt.GridBagLayout::ArrangeGrid @ 547 (1017 bytes)
Event: 23858.881 Thread 0x0000015b32c82710 nmethod 16889% 0x0000015b2aaed210 code [0x0000015b2aaed480, 0x0000015b2aaee670]
GC Heap History (20 events):
Event: 23835.421 GC heap after
{Heap after GC invocations=3224 (full 241):
garbage-first heap total 598016K, used 38987K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23840.171 GC heap before
{Heap before GC invocations=3224 (full 241):
garbage-first heap total 598016K, used 366667K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 43 young (352256K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23840.215 GC heap after
{Heap after GC invocations=3225 (full 242):
garbage-first heap total 221184K, used 31567K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23840.215 GC heap before
{Heap before GC invocations=3225 (full 242):
garbage-first heap total 221184K, used 31567K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 0 survivors (0K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23840.277 GC heap after
{Heap after GC invocations=3226 (full 243):
garbage-first heap total 139264K, used 31567K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23848.753 GC heap before
{Heap before GC invocations=3226 (full 243):
garbage-first heap total 139264K, used 113487K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 10 young (81920K), 0 survivors (0K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23848.776 GC heap after
{Heap after GC invocations=3227 (full 243):
garbage-first heap total 139264K, used 41694K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23854.384 GC heap before
{Heap before GC invocations=3228 (full 243):
garbage-first heap total 139264K, used 99038K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23854.403 GC heap after
{Heap after GC invocations=3229 (full 243):
garbage-first heap total 139264K, used 38930K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23861.161 GC heap before
{Heap before GC invocations=3229 (full 243):
garbage-first heap total 139264K, used 104466K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23861.186 GC heap after
{Heap after GC invocations=3230 (full 243):
garbage-first heap total 139264K, used 44114K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23867.157 GC heap before
{Heap before GC invocations=3230 (full 243):
garbage-first heap total 139264K, used 101458K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23867.175 GC heap after
{Heap after GC invocations=3231 (full 243):
garbage-first heap total 139264K, used 43503K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23874.160 GC heap before
{Heap before GC invocations=3232 (full 243):
garbage-first heap total 139264K, used 109039K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23874.185 GC heap after
{Heap after GC invocations=3233 (full 243):
garbage-first heap total 139264K, used 44336K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23880.148 GC heap before
{Heap before GC invocations=3233 (full 243):
garbage-first heap total 139264K, used 101680K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23880.165 GC heap after
{Heap after GC invocations=3234 (full 243):
garbage-first heap total 139264K, used 43189K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23886.848 GC heap before
{Heap before GC invocations=3234 (full 243):
garbage-first heap total 139264K, used 108725K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 1 survivors (8192K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23886.874 GC heap after
{Heap after GC invocations=3235 (full 243):
garbage-first heap total 139264K, used 44022K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Event: 23892.754 GC heap before
{Heap before GC invocations=3236 (full 243):
garbage-first heap total 139264K, used 101366K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 9 young (73728K), 2 survivors (16384K)
Metaspace used 40173K, committed 41152K, reserved 1114112K
class space used 3905K, committed 4480K, reserved 1048576K
}
Dll operation events (15 events):
Event: 0.015 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
Event: 0.067 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
Event: 0.088 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
Event: 0.090 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
Event: 0.100 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
Event: 0.354 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
Event: 0.755 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna13259727568843763746.dll
Event: 1.493 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
Event: 1.734 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
Event: 2.436 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
Event: 2.763 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
Event: 2.764 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
Event: 2.837 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-20292399237016000.dll
Event: 6.133 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
Event: 5213.875 Loaded shared library C:\Program Files\Java\jdk-21\bin\javajpeg.dll
Deoptimization events (20 events):
Event: 22775.058 Thread 0x0000015b8b655cf0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000015b2ab3ae60 relative=0x0000000000000520
Event: 22775.058 Thread 0x0000015b8b655cf0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000015b2ab3ae60 method=java.awt.image.ComponentSampleModel.getPixel(II[ILjava/awt/image/DataBuffer;)[I @ 35 c2
Event: 22775.058 Thread 0x0000015b8b655cf0 DEOPT PACKING pc=0x0000015b2ab3ae60 sp=0x00000024440fee10
Event: 22775.058 Thread 0x0000015b8b655cf0 DEOPT UNPACKING pc=0x0000015b29d546a2 sp=0x00000024440fedc8 mode 2
Event: 22911.876 Thread 0x0000015b90a827f0 DEOPT PACKING pc=0x0000015b22a3c89d sp=0x00000024409ff000
Event: 22911.876 Thread 0x0000015b90a827f0 DEOPT UNPACKING pc=0x0000015b29d54e42 sp=0x00000024409fe4f8 mode 0
Event: 23069.036 Thread 0x0000015b8b655cf0 DEOPT PACKING pc=0x0000015b22bf5a6d sp=0x00000024440fd340
Event: 23069.036 Thread 0x0000015b8b655cf0 DEOPT UNPACKING pc=0x0000015b29d54e42 sp=0x00000024440fc818 mode 0
Event: 23112.657 Thread 0x0000015b91520970 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000015b2a7bb31c relative=0x00000000000016dc
Event: 23112.657 Thread 0x0000015b91520970 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000015b2a7bb31c method=javax.swing.text.html.parser.Parser.parseContent()V @ 175 c2
Event: 23112.657 Thread 0x0000015b91520970 DEOPT PACKING pc=0x0000015b2a7bb31c sp=0x00000024429fef80
Event: 23112.657 Thread 0x0000015b91520970 DEOPT UNPACKING pc=0x0000015b29d546a2 sp=0x00000024429fef68 mode 2
Event: 23112.658 Thread 0x0000015b91520970 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000015b2ac88d78 relative=0x00000000000034d8
Event: 23112.658 Thread 0x0000015b91520970 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000015b2ac88d78 method=javax.swing.text.html.parser.Parser.getEndOfLineString()Ljava/lang/String; @ 19 c2
Event: 23112.658 Thread 0x0000015b91520970 DEOPT PACKING pc=0x0000015b2ac88d78 sp=0x00000024429ff020
Event: 23112.658 Thread 0x0000015b91520970 DEOPT UNPACKING pc=0x0000015b29d546a2 sp=0x00000024429feec0 mode 2
Event: 23112.670 Thread 0x0000015b915202e0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000015b2a7a11cc relative=0x0000000000001a2c
Event: 23112.670 Thread 0x0000015b915202e0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000015b2a7a11cc method=java.awt.GridBagLayout.ArrangeGrid(Ljava/awt/Container;)V @ 924 c2
Event: 23112.670 Thread 0x0000015b915202e0 DEOPT PACKING pc=0x0000015b2a7a11cc sp=0x00000024428fede0
Event: 23112.670 Thread 0x0000015b915202e0 DEOPT UNPACKING pc=0x0000015b29d546a2 sp=0x00000024428fed90 mode 2
Classes loaded (20 events):
Event: 5213.877 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer
Event: 5213.877 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer done
Event: 5213.877 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator
Event: 5213.877 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator done
Event: 17874.781 Loading class sun/font/StrikeCache$2
Event: 17874.781 Loading class sun/font/StrikeCache$2 done
Event: 20777.280 Loading class java/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter
Event: 20777.280 Loading class java/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter done
Event: 22033.646 Loading class java/awt/image/DataBufferUShort
Event: 22033.648 Loading class java/awt/image/DataBufferUShort done
Event: 22033.674 Loading class sun/awt/image/ShortInterleavedRaster
Event: 22033.675 Loading class sun/awt/image/ShortInterleavedRaster done
Event: 22669.054 Loading class javax/net/ssl/SSLHandshakeException
Event: 22669.054 Loading class javax/net/ssl/SSLHandshakeException done
Event: 23088.280 Loading class java/lang/Throwable$WrappedPrintWriter
Event: 23088.280 Loading class java/lang/Throwable$PrintStreamOrWriter
Event: 23088.280 Loading class java/lang/Throwable$PrintStreamOrWriter done
Event: 23088.280 Loading class java/lang/Throwable$WrappedPrintWriter done
Event: 23112.652 Loading class sun/net/util/SocketExceptions
Event: 23112.653 Loading class sun/net/util/SocketExceptions done
Classes unloaded (20 events):
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b3a4800 'java/lang/invoke/LambdaForm$MH+0x0000015b4b3a4800'
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b3a1000 'java/lang/invoke/LambdaForm$MH+0x0000015b4b3a1000'
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b39ac00 'java/lang/invoke/LambdaForm$MH+0x0000015b4b39ac00'
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0b9400 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0b9400'
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0b9000 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0b9000'
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0b8800 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0b8800'
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0b8000 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0b8000'
Event: 16959.662 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0b6c00 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0b6c00'
Event: 17874.678 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b44e000 'java/lang/invoke/LambdaForm$MH+0x0000015b4b44e000'
Event: 17874.678 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b44dc00 'java/lang/invoke/LambdaForm$MH+0x0000015b4b44dc00'
Event: 17874.678 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b44d800 'java/lang/invoke/LambdaForm$MH+0x0000015b4b44d800'
Event: 17874.678 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b140000 'java/lang/invoke/LambdaForm$MH+0x0000015b4b140000'
Event: 18158.556 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b2a1000 'java/lang/invoke/LambdaForm$MH+0x0000015b4b2a1000'
Event: 18158.556 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b2a0800 'java/lang/invoke/LambdaForm$MH+0x0000015b4b2a0800'
Event: 18158.556 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b2a0400 'java/lang/invoke/LambdaForm$MH+0x0000015b4b2a0400'
Event: 19959.311 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0af800 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0af800'
Event: 19959.311 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0ae800 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0ae800'
Event: 19959.311 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0ae400 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0ae400'
Event: 19959.311 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0ad800 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0ad800'
Event: 19959.311 Thread 0x0000015b32c5b280 Unloading class 0x0000015b4b0ad000 'java/lang/invoke/LambdaForm$MH+0x0000015b4b0ad000'
Classes redefined (0 events):
No events
Internal exceptions (20 events):
Event: 23069.038 Thread 0x0000015b8b655cf0 Implicit null exception at 0x0000015b22da92fa to 0x0000015b22da9ee4
Event: 23069.038 Thread 0x0000015b8b655cf0 Exception <a 'java/lang/NullPointerException'{0x00000004250814e8}> (0x00000004250814e8)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 23080.508 Thread 0x0000015ba3362cf0 Exception <a 'sun/net/ConnectionResetException'{0x000000042555e788}: Connection reset> (0x000000042555e788)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 23080.508 Thread 0x0000015ba3362cf0 Exception <a 'java/io/IOException'{0x000000042555f510}: Connection reset by peer> (0x000000042555f510)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 23088.264 Thread 0x0000015ba3e2d6f0 Exception <a 'sun/net/ConnectionResetException'{0x00000004252a3458}: Connection reset> (0x00000004252a3458)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 23088.264 Thread 0x0000015b8b655cf0 Exception <a 'java/io/IOException'{0x00000004250ac108}: Connection reset by peer> (0x00000004250ac108)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 23088.265 Thread 0x0000015ba3e2d6f0 Exception <a 'java/io/IOException'{0x00000004252a4230}: Connection reset by peer> (0x00000004252a4230)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 23112.652 Thread 0x0000015b91520970 Exception <a 'java/net/ConnectException'{0x000000042519b8c8}: Connection timed out: getsockopt> (0x000000042519b8c8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 23131.313 Thread 0x0000015b8b655cf0 Exception <a 'java/net/ConnectException'{0x00000004250d98e0}: Connection timed out: getsockopt> (0x00000004250d98e0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 539]
Event: 23146.426 Thread 0x0000015b91520970 Exception <a 'sun/nio/fs/WindowsException'{0x0000000409020e20}> (0x0000000409020e20)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23249.554 Thread 0x0000015b91520970 Exception <a 'sun/nio/fs/WindowsException'{0x000000040781cbc8}> (0x000000040781cbc8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23377.337 Thread 0x0000015b91520970 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901d028}> (0x000000040901d028)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23460.879 Thread 0x0000015b8b655cf0 Implicit null exception at 0x0000015b22da92fa to 0x0000015b22da9ee4
Event: 23460.879 Thread 0x0000015b8b655cf0 Exception <a 'java/lang/NullPointerException'{0x0000000409728550}> (0x0000000409728550)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 23478.242 Thread 0x0000015b91520970 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c2c0}> (0x000000040901c2c0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23598.980 Thread 0x0000015b91520970 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c350}> (0x000000040901c350)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23734.562 Thread 0x0000015b91520970 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901ceb0}> (0x000000040901ceb0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23821.346 Thread 0x0000015b8b655cf0 Implicit null exception at 0x0000015b22da92fa to 0x0000015b22da9ee4
Event: 23821.346 Thread 0x0000015b8b655cf0 Exception <a 'java/lang/NullPointerException'{0x0000000407131eb8}> (0x0000000407131eb8)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 23840.501 Thread 0x0000015b91520970 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901ceb0}> (0x000000040901ceb0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
ZGC Phase Switch (0 events):
No events
VM Operations (20 events):
Event: 23867.175 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23867.199 Executing VM operation: G1PauseRemark
Event: 23867.203 Executing VM operation: G1PauseRemark done
Event: 23867.208 Executing VM operation: G1PauseCleanup
Event: 23867.208 Executing VM operation: G1PauseCleanup done
Event: 23874.160 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 23874.185 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23880.148 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 23880.165 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23886.848 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 23886.874 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23886.897 Executing VM operation: G1PauseRemark
Event: 23886.900 Executing VM operation: G1PauseRemark done
Event: 23886.906 Executing VM operation: G1PauseCleanup
Event: 23886.906 Executing VM operation: G1PauseCleanup done
Event: 23890.323 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation)
Event: 23890.323 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation) done
Event: 23890.324 Executing VM operation: RendezvousGCThreads
Event: 23890.324 Executing VM operation: RendezvousGCThreads done
Event: 23892.754 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Events (20 events):
Event: 23821.537 Thread 0x0000015b91bf9060 Thread added: 0x0000015b91bf9060
Event: 23821.537 Thread 0x0000015b91bf96f0 Thread added: 0x0000015b91bf96f0
Event: 23821.537 Thread 0x0000015b91bf9d80 Thread added: 0x0000015b91bf9d80
Event: 23821.557 Thread 0x0000015b8b2a5060 Thread added: 0x0000015b8b2a5060
Event: 23821.756 Thread 0x0000015ba2d6ee40 Thread added: 0x0000015ba2d6ee40
Event: 23823.862 Thread 0x0000015b32c5b280 flushing nmethod 0x0000015b2367ec90
Event: 23824.427 Thread 0x0000015b32c5b280 flushing nmethod 0x0000015b22a5cf10
Event: 23824.427 Thread 0x0000015b32c5b280 flushing nmethod 0x0000015b22d29a90
Event: 23824.427 Thread 0x0000015b32c5b280 flushing nmethod 0x0000015b22d2e910
Event: 23824.427 Thread 0x0000015b32c5b280 flushing nmethod 0x0000015b2301a490
Event: 23840.135 Thread 0x0000015b91bf9060 Thread exited: 0x0000015b91bf9060
Event: 23840.137 Thread 0x0000015b91bf96f0 Thread exited: 0x0000015b91bf96f0
Event: 23840.137 Thread 0x0000015b90590720 Thread exited: 0x0000015b90590720
Event: 23840.137 Thread 0x0000015b90590090 Thread exited: 0x0000015b90590090
Event: 23840.141 Thread 0x0000015b91bf9d80 Thread exited: 0x0000015b91bf9d80
Event: 23840.171 Thread 0x0000015b9058fa00 Thread exited: 0x0000015b9058fa00
Event: 23840.505 Thread 0x0000015b9058fa00 Thread added: 0x0000015b9058fa00
Event: 23881.757 Thread 0x0000015ba2d6ee40 Thread exited: 0x0000015ba2d6ee40
Event: 23881.757 Thread 0x0000015ba3362cf0 Thread exited: 0x0000015ba3362cf0
Event: 23884.405 Thread 0x0000015b9058f370 Thread exited: 0x0000015b9058f370
Dynamic libraries:
0x00007ff6f5f60000 - 0x00007ff6f5f70000 C:\Program Files\Java\jdk-21\bin\java.exe
0x00007ffeb14d0000 - 0x00007ffeb16e7000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffeb04c0000 - 0x00007ffeb0584000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffeae6f0000 - 0x00007ffeaeac2000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffeaef20000 - 0x00007ffeaf031000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffe85410000 - 0x00007ffe85429000 C:\Program Files\Java\jdk-21\bin\jli.dll
0x00007ffe808c0000 - 0x00007ffe808db000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
0x00007ffeafe30000 - 0x00007ffeafee1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffeb0590000 - 0x00007ffeb0637000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffeb0ac0000 - 0x00007ffeb0b68000 C:\WINDOWS\System32\sechost.dll
0x00007ffeaead0000 - 0x00007ffeaeaf8000 C:\WINDOWS\System32\bcrypt.dll
0x00007ffeb0640000 - 0x00007ffeb0754000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffeb07f0000 - 0x00007ffeb09a1000 C:\WINDOWS\System32\USER32.dll
0x00007ffeaeb00000 - 0x00007ffeaeb26000 C:\WINDOWS\System32\win32u.dll
0x00007ffeb10c0000 - 0x00007ffeb10e9000 C:\WINDOWS\System32\GDI32.dll
0x00007ffe83da0000 - 0x00007ffe8403b000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da\COMCTL32.dll
0x00007ffeae5c0000 - 0x00007ffeae6e3000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffeaf040000 - 0x00007ffeaf0da000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffeaa470000 - 0x00007ffeaa47a000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffeb1080000 - 0x00007ffeb10b1000 C:\WINDOWS\System32\IMM32.DLL
0x00007ffea18a0000 - 0x00007ffea18ac000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
0x00007ffe7ede0000 - 0x00007ffe7ee6e000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
0x00007ffe2bdf0000 - 0x00007ffe2cb0a000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
0x00007ffeaf490000 - 0x00007ffeaf501000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffeae4a0000 - 0x00007ffeae4ed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
0x00007ffea5860000 - 0x00007ffea5894000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffeae470000 - 0x00007ffeae483000 C:\WINDOWS\SYSTEM32\UMPDC.dll
0x00007ffead5f0000 - 0x00007ffead608000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
0x00007ffea08b0000 - 0x00007ffea08ba000 C:\Program Files\Java\jdk-21\bin\jimage.dll
0x00007ffea8110000 - 0x00007ffea8343000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
0x00007ffeb10f0000 - 0x00007ffeb1483000 C:\WINDOWS\System32\combase.dll
0x00007ffeaf160000 - 0x00007ffeaf237000 C:\WINDOWS\System32\OLEAUT32.dll
0x00007ffea7b20000 - 0x00007ffea7b52000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
0x00007ffeaf0e0000 - 0x00007ffeaf15b000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffe800f0000 - 0x00007ffe8010f000 C:\Program Files\Java\jdk-21\bin\java.dll
0x00007ffeaf580000 - 0x00007ffeafe22000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffeaed20000 - 0x00007ffeaee5f000 C:\WINDOWS\System32\wintypes.dll
0x00007ffeac4f0000 - 0x00007ffeace0e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
0x00007ffeb09b0000 - 0x00007ffeb0abb000 C:\WINDOWS\System32\SHCORE.dll
0x00007ffeaf410000 - 0x00007ffeaf479000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffeae4f0000 - 0x00007ffeae51b000 C:\WINDOWS\SYSTEM32\profapi.dll
0x00007ffe5c550000 - 0x00007ffe5c627000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
0x00007ffe9c810000 - 0x00007ffe9c820000 C:\Program Files\Java\jdk-21\bin\net.dll
0x00007ffea8f70000 - 0x00007ffea909c000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
0x00007ffeada70000 - 0x00007ffeadad9000 C:\WINDOWS\system32\mswsock.dll
0x00007ffe800d0000 - 0x00007ffe800e6000 C:\Program Files\Java\jdk-21\bin\nio.dll
0x00007ffe800b0000 - 0x00007ffe800c8000 C:\Program Files\Java\jdk-21\bin\zip.dll
0x00007ffeadcd0000 - 0x00007ffeadceb000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffead550000 - 0x00007ffead587000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffeadb60000 - 0x00007ffeadb88000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffeadcc0000 - 0x00007ffeadccc000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffead070000 - 0x00007ffead09d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffeaffc0000 - 0x00007ffeaffc9000 C:\WINDOWS\System32\NSI.dll
0x00007ffe7cc30000 - 0x00007ffe7cc79000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna13259727568843763746.dll
0x00007ffeaf480000 - 0x00007ffeaf488000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffe9c3a0000 - 0x00007ffe9c3b0000 C:\Program Files\Java\jdk-21\bin\verify.dll
0x00007ffea0e00000 - 0x00007ffea0e17000 C:\WINDOWS\system32\napinsp.dll
0x00007ffe9d720000 - 0x00007ffe9d73b000 C:\WINDOWS\system32\pnrpnsp.dll
0x00007ffead0e0000 - 0x00007ffead1d8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
0x00007ffea7750000 - 0x00007ffea7761000 C:\WINDOWS\System32\winrnr.dll
0x00007ffe9be40000 - 0x00007ffe9be5f000 C:\WINDOWS\system32\wshbth.dll
0x00007ffe9e7c0000 - 0x00007ffe9e7e1000 C:\WINDOWS\system32\nlansp_c.dll
0x00007ffea5ab0000 - 0x00007ffea5aba000 C:\Windows\System32\rasadhlp.dll
0x00007ffea84a0000 - 0x00007ffea8524000 C:\WINDOWS\System32\fwpuclnt.dll
0x00007ffe2ba20000 - 0x00007ffe2bde4000 C:\WINDOWS\SYSTEM32\nvcuda.dll
0x00007ffeabc50000 - 0x00007ffeabc87000 C:\WINDOWS\SYSTEM32\dxcore.dll
0x00007ffe23d10000 - 0x00007ffe25a79000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvcuda64.dll
0x00007ffeadd20000 - 0x00007ffeadd32000 C:\WINDOWS\SYSTEM32\msasn1.dll
0x00007ffea87a0000 - 0x00007ffea87d2000 C:\WINDOWS\SYSTEM32\cryptnet.dll
0x00007ffeaeb30000 - 0x00007ffeaec97000 C:\WINDOWS\System32\CRYPT32.dll
0x00007ffeadd90000 - 0x00007ffeadde0000 C:\WINDOWS\SYSTEM32\wldp.dll
0x00007ffea8580000 - 0x00007ffea86da000 C:\WINDOWS\SYSTEM32\drvstore.dll
0x00007ffeae190000 - 0x00007ffeae1bc000 C:\WINDOWS\SYSTEM32\devobj.dll
0x00007ffeae1c0000 - 0x00007ffeae20e000 C:\WINDOWS\SYSTEM32\CFGMGR32.dll
0x00007ffea3ae0000 - 0x00007ffea4055000 C:\WINDOWS\SYSTEM32\nvapi64.dll
0x00007ffeaffe0000 - 0x00007ffeb0454000 C:\WINDOWS\System32\SETUPAPI.dll
0x00007ffeb0d10000 - 0x00007ffeb0eb0000 C:\WINDOWS\System32\ole32.dll
0x00007ffe79c80000 - 0x00007ffe79d15000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvdxgdmal64.dll
0x00007ffe5c420000 - 0x00007ffe5c542000 C:\WINDOWS\SYSTEM32\nvml.dll
0x00007ffe2abc0000 - 0x00007ffe2ba1e000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvml.dll
0x00007ffe57550000 - 0x00007ffe576df000 C:\Program Files\Java\jdk-21\bin\awt.dll
0x00007ffeab040000 - 0x00007ffeab0d8000 C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ffeabf90000 - 0x00007ffeabfbe000 C:\WINDOWS\system32\DWMAPI.DLL
0x00007ffeabb60000 - 0x00007ffeabc14000 C:\WINDOWS\system32\uxtheme.dll
0x00007ffe57450000 - 0x00007ffe57550000 C:\WINDOWS\system32\opengl32.dll
0x00007ffe7e000000 - 0x00007ffe7e02d000 C:\WINDOWS\SYSTEM32\GLU32.dll
0x00007ffeb0f20000 - 0x00007ffeb1080000 C:\WINDOWS\System32\MSCTF.dll
0x00007ffeaeca0000 - 0x00007ffeaed1c000 C:\WINDOWS\System32\wintrust.dll
0x00007ffeaf560000 - 0x00007ffeaf57f000 C:\WINDOWS\System32\imagehlp.dll
0x00007ffe8afe0000 - 0x00007ffe8b2e4000 C:\WINDOWS\system32\nvspcap64.dll
0x00007ffead700000 - 0x00007ffead734000 C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007ffeadb00000 - 0x00007ffeadb26000 C:\WINDOWS\SYSTEM32\gpapi.dll
0x00007ffe8ae20000 - 0x00007ffe8afd4000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvppex.dll
0x00007ffe9b420000 - 0x00007ffe9b42e000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
0x00007ffeade80000 - 0x00007ffeadead000 C:\WINDOWS\SYSTEM32\ncrypt.dll
0x00007ffeade40000 - 0x00007ffeade77000 C:\WINDOWS\SYSTEM32\NTASN1.dll
0x00007ffe7aba0000 - 0x00007ffe7ac27000 C:\Program Files\Java\jdk-21\bin\freetype.dll
0x00007ffe57f20000 - 0x00007ffe58001000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
0x00007ffe89a20000 - 0x00007ffe89a26000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-20292399237016000.dll
0x00007ffe8bee0000 - 0x00007ffe8bee7000 C:\Program Files\Java\jdk-21\bin\jawt.dll
0x00007ffe83c00000 - 0x00007ffe83cb3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
0x00007ffeafef0000 - 0x00007ffeaffa0000 C:\WINDOWS\System32\clbcatq.dll
0x00007ffea8e60000 - 0x00007ffea8f69000 C:\WINDOWS\SYSTEM32\PROPSYS.dll
0x00007ffe5d800000 - 0x00007ffe5d81a000 C:\WINDOWS\system32\NetworkExplorer.dll
0x00007ffea0210000 - 0x00007ffea022e000 C:\WINDOWS\SYSTEM32\MPR.dll
0x00007ffe8cbc0000 - 0x00007ffe8cbeb000 C:\WINDOWS\System32\p9np.dll
0x00007ffe9f610000 - 0x00007ffe9f61c000 C:\WINDOWS\System32\drprov.dll
0x00007ffe9d700000 - 0x00007ffe9d719000 C:\WINDOWS\System32\ntlanman.dll
0x00007ffe9c920000 - 0x00007ffe9c93f000 C:\WINDOWS\System32\davclnt.dll
0x00007ffeae3f0000 - 0x00007ffeae45c000 C:\WINDOWS\System32\WINSTA.dll
0x00007ffea8ba0000 - 0x00007ffea8bba000 C:\WINDOWS\System32\wkscli.dll
0x00007ffe9ca40000 - 0x00007ffe9ca52000 C:\WINDOWS\SYSTEM32\cscapi.dll
0x00007ffead060000 - 0x00007ffead06c000 C:\WINDOWS\System32\netutils.dll
0x00007ffe89670000 - 0x00007ffe896ce000 C:\Windows\System32\dlnashext.dll
0x00007ffe7a410000 - 0x00007ffe7a479000 C:\Windows\System32\PlayToDevice.dll
0x00007ffe9c820000 - 0x00007ffe9c841000 C:\Windows\System32\DevDispItemProvider.dll
0x00007ffea7b60000 - 0x00007ffea7bfe000 C:\WINDOWS\System32\MMDevApi.dll
0x00007ffe9c330000 - 0x00007ffe9c386000 C:\WINDOWS\SYSTEM32\rdpendp.dll
0x00007ffe8daf0000 - 0x00007ffe8dbb1000 C:\WINDOWS\SYSTEM32\TextShaping.dll
0x00007ffead3a0000 - 0x00007ffead3b4000 C:\WINDOWS\SYSTEM32\WTSAPI32.dll
0x00007ffe7a890000 - 0x00007ffe7a93a000 C:\WINDOWS\system32\wpdshext.dll
0x00007ffe9bc00000 - 0x00007ffe9bdc1000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8\gdiplus.dll
0x00007ffe8bb50000 - 0x00007ffe8bbee000 C:\Windows\System32\PortableDeviceApi.dll
0x00007ffe522b0000 - 0x00007ffe522e7000 C:\Windows\System32\EhStorShell.dll
0x00007ffe80050000 - 0x00007ffe80074000 C:\Windows\System32\EhStorAPI.dll
0x00007ffeab940000 - 0x00007ffeabaf0000 C:\WINDOWS\SYSTEM32\WindowsCodecs.dll
0x00007ffe79460000 - 0x00007ffe794ca000 C:\Windows\System32\thumbcache.dll
0x00007ffea0010000 - 0x00007ffea0205000 C:\Windows\System32\urlmon.dll
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8;C:\WINDOWS\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25050.5-0
VM Arguments:
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache1
java_class_path (initial): sheepit-client-7.25182.0.jar
Launcher Type: SUN_STANDARD
[Global flags]
intx CICompilerCount = 12 {product} {ergonomic}
uint ConcGCThreads = 4 {product} {ergonomic}
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
size_t InitialHeapSize = 1073741824 {product} {ergonomic}
size_t MarkStackSize = 4194304 {product} {ergonomic}
size_t MaxHeapSize = 17163091968 {product} {ergonomic}
size_t MaxNewSize = 10292822016 {product} {ergonomic}
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
size_t MinHeapSize = 8388608 {product} {ergonomic}
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
bool SegmentedCodeCache = true {product} {ergonomic}
size_t SoftMaxHeapSize = 17163091968 {manageable} {ergonomic}
bool UseCompressedOops = true {product lp64_product} {ergonomic}
bool UseG1GC = true {product} {ergonomic}
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags foldmultilines=false
#1: stderr all=off uptime,level,tags foldmultilines=false
Environment Variables:
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;C:\Program Files\Blender Foundation\Blender 4.4;
USERNAME=Nathan
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
TMP=C:\Users\Nathan\AppData\Local\Temp
TEMP=C:\Users\Nathan\AppData\Local\Temp
Periodic native trim disabled
--------------- S Y S T E M ---------------
OS:
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
OS uptime: 23 days 18:18 hours
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
Processor Information for processor 0
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 1
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 2
Max Mhz: 2201, Current Mhz: 1200, Mhz Limit: 2201
Processor Information for processor 3
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 4
Max Mhz: 2201, Current Mhz: 1200, Mhz Limit: 2201
Processor Information for processor 5
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 6
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 7
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 8
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 9
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 10
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 11
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 12
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 13
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 14
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 15
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 16
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 17
Max Mhz: 2201, Current Mhz: 1200, Mhz Limit: 2201
Processor Information for processor 18
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 19
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Memory: 4k page, system-wide physical 65446M (16343M free)
TotalPageFile size 79587M (AvailPageFile size 218M)
current process WorkingSet (physical memory assigned to process): 339M, peak: 1099M
current process commit charge ("private bytes"): 432M, peak: 1251M
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
END.

838
hs_err_pid38424.log Normal file
View File

@@ -0,0 +1,838 @@
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 452984832 bytes for G1 virtual space
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
# placed in the first 32GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (os_windows.cpp:3603), pid=38424, tid=29768
#
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache1
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 63G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
Time: Sun Jul 6 17:58:40 2025 Mountain Daylight Time elapsed time: 23985.315640 seconds (0d 6h 39m 45s)
--------------- T H R E A D ---------------
Current thread (0x000001ee6203fe90): VMThread "VM Thread" [id=29768, stack(0x0000007b83300000,0x0000007b83400000) (1024K)]
Stack: [0x0000007b83300000,0x0000007b83400000]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x6cae19]
V [jvm.dll+0x855741]
V [jvm.dll+0x857c6e]
V [jvm.dll+0x858343]
V [jvm.dll+0x27e0b6]
V [jvm.dll+0x6c7595]
V [jvm.dll+0x6bc0fa]
V [jvm.dll+0x353eaa]
V [jvm.dll+0x35bb26]
V [jvm.dll+0x3ae52e]
V [jvm.dll+0x3ae7d8]
V [jvm.dll+0x3281bc]
V [jvm.dll+0x328247]
V [jvm.dll+0x36cbcc]
V [jvm.dll+0x36b41e]
V [jvm.dll+0x327981]
V [jvm.dll+0x36ab3a]
V [jvm.dll+0x85e110]
V [jvm.dll+0x85f494]
V [jvm.dll+0x85f9d0]
V [jvm.dll+0x85fc73]
V [jvm.dll+0x7ffa1b]
V [jvm.dll+0x6c94fd]
C [ucrtbase.dll+0x29333]
C [KERNEL32.DLL+0x1259d]
C [ntdll.dll+0x5af78]
VM_Operation (0x0000007b858feb00): G1CollectForAllocation, mode: safepoint, requested by thread 0x000001ee41d6cf00
--------------- P R O C E S S ---------------
Threads class SMR info:
_java_thread_list=0x000001ee9356ec60, length=30, elements={
0x000001ee62059d90, 0x000001ee6205aca0, 0x000001ee6205e610, 0x000001ee62061500,
0x000001ee620622b0, 0x000001ee62064e40, 0x000001ee620691f0, 0x000001ee62069db0,
0x000001ee793d4440, 0x000001ee793d5c80, 0x000001ee7e326df0, 0x000001ee7e4aad00,
0x000001ee7ebe8a50, 0x000001ee419fb830, 0x000001ee41c76240, 0x000001ee41c78310,
0x000001ee41c75520, 0x000001ee41c76f60, 0x000001ee41c75bb0, 0x000001ee41c768d0,
0x000001ee41c775f0, 0x000001ee7eb47090, 0x000001ee7eb47720, 0x000001ee7e59b3c0,
0x000001ee41d6e940, 0x000001ee41d69a80, 0x000001ee41d6c870, 0x000001ee7eb48ad0,
0x000001ee7eb45ce0, 0x000001ee41d6cf00
}
Java Threads: ( => current thread )
0x000001ee62059d90 JavaThread "Reference Handler" daemon [_thread_blocked, id=32308, stack(0x0000007b83400000,0x0000007b83500000) (1024K)]
0x000001ee6205aca0 JavaThread "Finalizer" daemon [_thread_blocked, id=32772, stack(0x0000007b83500000,0x0000007b83600000) (1024K)]
0x000001ee6205e610 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=45264, stack(0x0000007b83600000,0x0000007b83700000) (1024K)]
0x000001ee62061500 JavaThread "Attach Listener" daemon [_thread_blocked, id=44876, stack(0x0000007b83700000,0x0000007b83800000) (1024K)]
0x000001ee620622b0 JavaThread "Service Thread" daemon [_thread_blocked, id=45328, stack(0x0000007b83800000,0x0000007b83900000) (1024K)]
0x000001ee62064e40 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=43244, stack(0x0000007b83900000,0x0000007b83a00000) (1024K)]
0x000001ee620691f0 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=45572, stack(0x0000007b83a00000,0x0000007b83b00000) (1024K)]
0x000001ee62069db0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=29388, stack(0x0000007b83b00000,0x0000007b83c00000) (1024K)]
0x000001ee793d4440 JavaThread "Notification Thread" daemon [_thread_blocked, id=27244, stack(0x0000007b83e00000,0x0000007b83f00000) (1024K)]
0x000001ee793d5c80 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=1944, stack(0x0000007b83f00000,0x0000007b84000000) (1024K)]
0x000001ee7e326df0 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=35048, stack(0x0000007b84100000,0x0000007b84200000) (1024K)]
0x000001ee7e4aad00 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=22188, stack(0x0000007b84400000,0x0000007b84500000) (1024K)]
0x000001ee7ebe8a50 JavaThread "AWT-Windows" daemon [_thread_in_native, id=44048, stack(0x0000007b85700000,0x0000007b85800000) (1024K)]
0x000001ee419fb830 JavaThread "Timer-0" [_thread_blocked, id=45312, stack(0x0000007b84200000,0x0000007b84300000) (1024K)]
0x000001ee41c76240 JavaThread "TimerQueue" daemon [_thread_blocked, id=28640, stack(0x0000007b85d00000,0x0000007b85e00000) (1024K)]
0x000001ee41c78310 JavaThread "Swing-Shell" daemon [_thread_blocked, id=46032, stack(0x0000007b85e00000,0x0000007b85f00000) (1024K)]
0x000001ee41c75520 JavaThread "AWT-Shutdown" [_thread_blocked, id=44532, stack(0x0000007b85a00000,0x0000007b85b00000) (1024K)]
0x000001ee41c76f60 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=28276, stack(0x0000007b85b00000,0x0000007b85c00000) (1024K)]
0x000001ee41c75bb0 JavaThread "Thread-3" [_thread_in_native, id=27392, stack(0x0000007b85c00000,0x0000007b85d00000) (1024K)]
0x000001ee41c768d0 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=22040, stack(0x0000007b86500000,0x0000007b86600000) (1024K)]
0x000001ee41c775f0 JavaThread "DestroyJavaVM" [_thread_blocked, id=39596, stack(0x0000007b82c00000,0x0000007b82d00000) (1024K)]
0x000001ee7eb47090 JavaThread "Thread-1" [_thread_blocked, id=45808, stack(0x0000007b86900000,0x0000007b86a00000) (1024K)]
0x000001ee7eb47720 JavaThread "Thread-4" [_thread_blocked, id=1752, stack(0x0000007b86a00000,0x0000007b86b00000) (1024K)]
0x000001ee7e59b3c0 JavaThread "Timer-1" [_thread_blocked, id=44268, stack(0x0000007b86b00000,0x0000007b86c00000) (1024K)]
0x000001ee41d6e940 JavaThread "pool-4-thread-1" [_thread_blocked, id=27460, stack(0x0000007b82900000,0x0000007b82a00000) (1024K)]
0x000001ee41d69a80 JavaThread "OkHttp client.sheepit-renderfarm.com" daemon [_thread_in_native, id=36176, stack(0x0000007b83c00000,0x0000007b83d00000) (1024K)]
0x000001ee41d6c870 JavaThread "OkHttp sheepit-main-weur-projects.sheepit-r2-binaries.win" daemon [_thread_in_native, id=42724, stack(0x0000007b86c00000,0x0000007b86d00000) (1024K)]
0x000001ee7eb48ad0 JavaThread "OkHttp shepherd-tx2-usa.sheepit-renderfarm.com" daemon [_thread_in_native, id=20848, stack(0x0000007b85f00000,0x0000007b86000000) (1024K)]
0x000001ee7eb45ce0 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=37012, stack(0x0000007b86720000,0x0000007b86820000) (1024K)]
0x000001ee41d6cf00 JavaThread "Timer-217" [_thread_blocked, id=39704, stack(0x0000007b85800000,0x0000007b85900000) (1024K)]
Total: 30
Other Threads:
=>0x000001ee6203fe90 VMThread "VM Thread" [id=29768, stack(0x0000007b83300000,0x0000007b83400000) (1024K)]
0x000001ee791e09d0 WatcherThread "VM Periodic Task Thread" [id=30192, stack(0x0000007b83200000,0x0000007b83300000) (1024K)]
0x000001ee4987b8d0 WorkerThread "GC Thread#0" [id=40740, stack(0x0000007b82d00000,0x0000007b82e00000) (1024K)]
0x000001ee7e4e2950 WorkerThread "GC Thread#1" [id=40988, stack(0x0000007b84600000,0x0000007b84700000) (1024K)]
0x000001ee7e51bae0 WorkerThread "GC Thread#2" [id=41452, stack(0x0000007b84700000,0x0000007b84800000) (1024K)]
0x000001ee7e51c220 WorkerThread "GC Thread#3" [id=34708, stack(0x0000007b84800000,0x0000007b84900000) (1024K)]
0x000001ee7e51b740 WorkerThread "GC Thread#4" [id=35452, stack(0x0000007b84900000,0x0000007b84a00000) (1024K)]
0x000001ee7e51be80 WorkerThread "GC Thread#5" [id=42188, stack(0x0000007b84a00000,0x0000007b84b00000) (1024K)]
0x000001ee7e51b000 WorkerThread "GC Thread#6" [id=44956, stack(0x0000007b84b00000,0x0000007b84c00000) (1024K)]
0x000001ee7e51b3a0 WorkerThread "GC Thread#7" [id=42012, stack(0x0000007b84c00000,0x0000007b84d00000) (1024K)]
0x000001ee7e51c5c0 WorkerThread "GC Thread#8" [id=40052, stack(0x0000007b84d00000,0x0000007b84e00000) (1024K)]
0x000001ee7e51c960 WorkerThread "GC Thread#9" [id=44880, stack(0x0000007b84e00000,0x0000007b84f00000) (1024K)]
0x000001ee79d5b860 WorkerThread "GC Thread#10" [id=41636, stack(0x0000007b84f00000,0x0000007b85000000) (1024K)]
0x000001ee79d5c6e0 WorkerThread "GC Thread#11" [id=20996, stack(0x0000007b85000000,0x0000007b85100000) (1024K)]
0x000001ee79d5eb20 WorkerThread "GC Thread#12" [id=36012, stack(0x0000007b85100000,0x0000007b85200000) (1024K)]
0x000001ee79d5bfa0 WorkerThread "GC Thread#13" [id=43208, stack(0x0000007b85200000,0x0000007b85300000) (1024K)]
0x000001ee79d5d560 WorkerThread "GC Thread#14" [id=38488, stack(0x0000007b85300000,0x0000007b85400000) (1024K)]
0x000001ee47e12f70 ConcurrentGCThread "G1 Main Marker" [id=29312, stack(0x0000007b82e00000,0x0000007b82f00000) (1024K)]
0x000001ee47e14830 WorkerThread "G1 Conc#0" [id=40492, stack(0x0000007b82f00000,0x0000007b83000000) (1024K)]
0x000001ee79d5f260 WorkerThread "G1 Conc#1" [id=40336, stack(0x0000007b83d00000,0x0000007b83e00000) (1024K)]
0x000001ee415a6cf0 WorkerThread "G1 Conc#2" [id=43048, stack(0x0000007b84000000,0x0000007b84100000) (1024K)]
0x000001ee415a89f0 WorkerThread "G1 Conc#3" [id=39836, stack(0x0000007b84300000,0x0000007b84400000) (1024K)]
0x000001ee61f6bde0 ConcurrentGCThread "G1 Refine#0" [id=43556, stack(0x0000007b83000000,0x0000007b83100000) (1024K)]
0x000001ee61f6c760 ConcurrentGCThread "G1 Service" [id=44324, stack(0x0000007b83100000,0x0000007b83200000) (1024K)]
Total: 24
Threads with active compile tasks:
Total: 0
VM state: at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007ffe2efbde50] Threads_lock - owner thread: 0x000001ee6203fe90
[0x00007ffe2efbdf50] Heap_lock - owner thread: 0x000001ee41d6cf00
Heap address: 0x0000000401000000, size: 16368 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
CDS archive(s) mapped at: [0x000001ee00000000-0x000001ee00c90000-0x000001ee00c90000), size 13172736, SharedBaseAddress: 0x000001ee00000000, ArchiveRelocationMode: 1.
Compressed class space mapped at: 0x000001ee01000000-0x000001ee41000000, reserved size: 1073741824
Narrow klass base: 0x000001ee00000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
GC Precious Log:
CardTable entry size: 512
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
CPUs: 20 total, 20 available
Memory: 65446M
Large Page Support: Disabled
NUMA Support: Disabled
Compressed Oops: Enabled (Zero based)
Heap Region Size: 8M
Heap Min Capacity: 8M
Heap Initial Capacity: 1G
Heap Max Capacity: 16368M
Pre-touch: Disabled
Parallel Workers: 15
Concurrent Workers: 4
Concurrent Refinement Workers: 15
Periodic GC: Disabled
Heap:
garbage-first heap total 163840K, used 45178K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
| 0|0x0000000401000000, 0x00000004017ffff8, 0x0000000401800000| 99%| O| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked
| 1|0x0000000401800000, 0x0000000401ffdce8, 0x0000000402000000| 99%| O| |TAMS 0x0000000401800000| PB 0x0000000401800000| Untracked
| 2|0x0000000402000000, 0x00000004027ffff0, 0x0000000402800000| 99%| O| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked
| 3|0x0000000402800000, 0x0000000402800000, 0x0000000403000000| 0%| F| |TAMS 0x0000000402800000| PB 0x0000000402800000| Untracked
| 4|0x0000000403000000, 0x0000000403800000, 0x0000000403800000|100%|HS| |TAMS 0x0000000403000000| PB 0x0000000403000000| Complete
| 5|0x0000000403800000, 0x0000000403a33ea0, 0x0000000404000000| 27%| S|CS|TAMS 0x0000000403800000| PB 0x0000000403800000| Complete
| 6|0x0000000404000000, 0x00000004041ecf40, 0x0000000404800000| 24%| O| |TAMS 0x0000000404000000| PB 0x0000000404000000| Untracked
| 7|0x0000000404800000, 0x0000000405000000, 0x0000000405000000|100%| S|CS|TAMS 0x0000000404800000| PB 0x0000000404800000| Complete
| 8|0x0000000405000000, 0x0000000405000000, 0x0000000405800000| 0%| F| |TAMS 0x0000000405000000| PB 0x0000000405000000| Untracked
| 9|0x0000000405800000, 0x0000000405800000, 0x0000000406000000| 0%| F| |TAMS 0x0000000405800000| PB 0x0000000405800000| Untracked
| 10|0x0000000406000000, 0x0000000406000000, 0x0000000406800000| 0%| F| |TAMS 0x0000000406000000| PB 0x0000000406000000| Untracked
| 11|0x0000000406800000, 0x0000000406800000, 0x0000000407000000| 0%| F| |TAMS 0x0000000406800000| PB 0x0000000406800000| Untracked
| 12|0x0000000407000000, 0x0000000407000000, 0x0000000407800000| 0%| F| |TAMS 0x0000000407000000| PB 0x0000000407000000| Untracked
| 13|0x0000000407800000, 0x0000000407800000, 0x0000000408000000| 0%| F| |TAMS 0x0000000407800000| PB 0x0000000407800000| Untracked
| 14|0x0000000408000000, 0x0000000408000000, 0x0000000408800000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked
| 15|0x0000000408800000, 0x0000000408800000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408800000| PB 0x0000000408800000| Untracked
| 16|0x0000000409000000, 0x0000000409000000, 0x0000000409800000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked
| 17|0x0000000409800000, 0x0000000409800000, 0x000000040a000000| 0%| F| |TAMS 0x0000000409800000| PB 0x0000000409800000| Untracked
| 18|0x000000040a000000, 0x000000040a000000, 0x000000040a800000| 0%| F| |TAMS 0x000000040a000000| PB 0x000000040a000000| Untracked
| 19|0x000000040a800000, 0x000000040a800000, 0x000000040b000000| 0%| F| |TAMS 0x000000040a800000| PB 0x000000040a800000| Untracked
Card table byte_map: [0x000001ee64080000,0x000001ee66080000] _byte_map_base: 0x000001ee62078000
Marking Bits: (CMBitMap*) 0x000001ee61f00470
Bits: [0x000001ee66080000, 0x000001ee76040000)
Polling page: 0x000001ee51c80000
Metaspace:
Usage:
Non-class: 35.32 MB used.
Class: 3.77 MB used.
Both: 39.08 MB used.
Virtual space:
Non-class space: 64.00 MB reserved, 35.81 MB ( 56%) committed, 1 nodes.
Class space: 1.00 GB reserved, 4.38 MB ( <1%) committed, 1 nodes.
Both: 1.06 GB reserved, 40.19 MB ( 4%) committed.
Chunk freelists:
Non-Class: 12.43 MB
Class: 11.80 MB
Both: 24.23 MB
MaxMetaspaceSize: unlimited
CompressedClassSpaceSize: 1.00 GB
Initial GC threshold: 21.00 MB
Current GC threshold: 66.88 MB
CDS: on
- commit_granule_bytes: 65536.
- commit_granule_words: 8192.
- virtual_space_node_default_size: 8388608.
- enlarge_chunks_in_place: 1.
- use_allocation_guard: 0.
Internal statistics:
num_allocs_failed_limit: 3.
num_arena_births: 1600.
num_arena_deaths: 422.
num_vsnodes_births: 2.
num_vsnodes_deaths: 0.
num_space_committed: 642.
num_space_uncommitted: 0.
num_chunks_returned_to_freelist: 492.
num_chunks_taken_from_freelist: 2826.
num_chunk_merges: 129.
num_chunk_splits: 1656.
num_chunks_enlarged: 763.
num_inconsistent_stats: 0.
CodeHeap 'non-profiled nmethods': size=119168Kb used=10792Kb max_used=11681Kb free=108375Kb
bounds [0x000001ee59840000, 0x000001ee5a3b0000, 0x000001ee60ca0000]
CodeHeap 'profiled nmethods': size=119104Kb used=8414Kb max_used=16062Kb free=110689Kb
bounds [0x000001ee51ca0000, 0x000001ee52c80000, 0x000001ee590f0000]
CodeHeap 'non-nmethods': size=7488Kb used=2043Kb max_used=3803Kb free=5444Kb
bounds [0x000001ee590f0000, 0x000001ee594e0000, 0x000001ee59840000]
total_blobs=6242 nmethods=5261 adapters=884
compilation: enabled
stopped_count=0, restarted_count=0
full_count=0
Compilation events (20 events):
Event: 23913.351 Thread 0x000001ee620691f0 22922 4 sun.awt.image.ByteInterleavedRaster::setRect (187 bytes)
Event: 23913.353 Thread 0x000001ee62069db0 22923 1 java.awt.image.Raster::getMinX (5 bytes)
Event: 23913.353 Thread 0x000001ee62069db0 nmethod 22923 0x000001ee59c27c10 code [0x000001ee59c27da0, 0x000001ee59c27e68]
Event: 23913.353 Thread 0x000001ee62069db0 22924 1 java.awt.image.Raster::getMinY (5 bytes)
Event: 23913.353 Thread 0x000001ee62069db0 nmethod 22924 0x000001ee59c35f10 code [0x000001ee59c360a0, 0x000001ee59c36168]
Event: 23913.353 Thread 0x000001ee62069db0 22926 1 java.awt.image.Raster::getWidth (5 bytes)
Event: 23913.353 Thread 0x000001ee62069db0 nmethod 22926 0x000001ee59c36790 code [0x000001ee59c36920, 0x000001ee59c369e8]
Event: 23913.356 Thread 0x000001ee62069db0 22927 1 sun.awt.image.ByteInterleavedRaster::getDataStorage (5 bytes)
Event: 23913.356 Thread 0x000001ee62069db0 nmethod 22927 0x000001ee59c50f90 code [0x000001ee59c51120, 0x000001ee59c511f0]
Event: 23913.358 Thread 0x000001ee620691f0 nmethod 22922 0x000001ee59c0cb10 code [0x000001ee59c0cce0, 0x000001ee59c0d070]
Event: 23913.359 Thread 0x000001ee620691f0 22925 4 com.sun.imageio.plugins.jpeg.JPEGImageReader$CallBackLock::lock (8 bytes)
Event: 23913.361 Thread 0x000001ee620691f0 nmethod 22925 0x000001ee59c2f190 code [0x000001ee59c2f320, 0x000001ee59c2f478]
Event: 23913.361 Thread 0x000001ee62069db0 22930 ! 2 com.sun.imageio.plugins.jpeg.JPEGImageReader::acceptPixels (494 bytes)
Event: 23913.361 Thread 0x000001ee620691f0 22929 4 javax.imageio.ImageReader::processImageUpdate (73 bytes)
Event: 23913.362 Thread 0x000001ee620691f0 nmethod 22929 0x000001ee59c89f10 code [0x000001ee59c8a0a0, 0x000001ee59c8a160]
Event: 23913.362 Thread 0x000001ee620691f0 22928 4 com.sun.imageio.plugins.jpeg.JPEGImageReader$CallBackLock::unlock (8 bytes)
Event: 23913.364 Thread 0x000001ee62069db0 nmethod 22930 0x000001ee52831510 code [0x000001ee528318a0, 0x000001ee52832620]
Event: 23913.364 Thread 0x000001ee620691f0 nmethod 22928 0x000001ee59c5b210 code [0x000001ee59c5b3a0, 0x000001ee59c5b4f8]
Event: 23913.409 Thread 0x000001ee620691f0 22931 ! 4 com.sun.imageio.plugins.jpeg.JPEGImageReader::readInputData (43 bytes)
Event: 23913.418 Thread 0x000001ee620691f0 nmethod 22931 0x000001ee59c59310 code [0x000001ee59c59500, 0x000001ee59c599f8]
GC Heap History (20 events):
Event: 23916.372 GC heap after
{Heap after GC invocations=3487 (full 442):
garbage-first heap total 163840K, used 34526K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23916.372 GC heap before
{Heap before GC invocations=3487 (full 442):
garbage-first heap total 163840K, used 34526K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23916.431 GC heap after
{Heap after GC invocations=3488 (full 443):
garbage-first heap total 163840K, used 34526K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23917.536 GC heap before
{Heap before GC invocations=3488 (full 443):
garbage-first heap total 163840K, used 42718K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 0 survivors (0K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23917.610 GC heap after
{Heap after GC invocations=3489 (full 444):
garbage-first heap total 163840K, used 36050K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23927.691 GC heap before
{Heap before GC invocations=3489 (full 444):
garbage-first heap total 163840K, used 126162K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 0 survivors (0K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23927.718 GC heap after
{Heap after GC invocations=3490 (full 444):
garbage-first heap total 163840K, used 48112K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23935.891 GC heap before
{Heap before GC invocations=3491 (full 444):
garbage-first heap total 163840K, used 121840K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23935.915 GC heap after
{Heap after GC invocations=3492 (full 444):
garbage-first heap total 163840K, used 46215K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23943.095 GC heap before
{Heap before GC invocations=3492 (full 444):
garbage-first heap total 163840K, used 111751K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 10 young (81920K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23943.120 GC heap after
{Heap after GC invocations=3493 (full 444):
garbage-first heap total 163840K, used 44458K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23951.307 GC heap before
{Heap before GC invocations=3493 (full 444):
garbage-first heap total 163840K, used 118186K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23951.334 GC heap after
{Heap after GC invocations=3494 (full 444):
garbage-first heap total 163840K, used 45476K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23959.689 GC heap before
{Heap before GC invocations=3495 (full 444):
garbage-first heap total 163840K, used 119204K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23959.714 GC heap after
{Heap after GC invocations=3496 (full 444):
garbage-first heap total 163840K, used 45532K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23967.897 GC heap before
{Heap before GC invocations=3496 (full 444):
garbage-first heap total 163840K, used 119260K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23967.924 GC heap after
{Heap after GC invocations=3497 (full 444):
garbage-first heap total 163840K, used 44518K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23976.105 GC heap before
{Heap before GC invocations=3497 (full 444):
garbage-first heap total 163840K, used 118246K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 11 young (90112K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23976.132 GC heap after
{Heap after GC invocations=3498 (full 444):
garbage-first heap total 163840K, used 44221K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Event: 23985.284 GC heap before
{Heap before GC invocations=3499 (full 444):
garbage-first heap total 163840K, used 126141K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 12 young (98304K), 2 survivors (16384K)
Metaspace used 40021K, committed 41152K, reserved 1114112K
class space used 3856K, committed 4480K, reserved 1048576K
}
Dll operation events (15 events):
Event: 0.008 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
Event: 0.046 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
Event: 0.065 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
Event: 0.067 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
Event: 0.077 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
Event: 0.290 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
Event: 0.636 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna2484366516770548656.dll
Event: 1.656 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
Event: 1.915 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
Event: 2.568 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
Event: 2.880 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
Event: 2.881 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
Event: 2.956 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-21990692734224000.dll
Event: 6.159 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
Event: 4404.904 Loaded shared library C:\Program Files\Java\jdk-21\bin\javajpeg.dll
Deoptimization events (20 events):
Event: 21227.686 Thread 0x000001ee7eb47720 DEOPT PACKING pc=0x000001ee5a1e0384 sp=0x0000007b86afeef0
Event: 21227.687 Thread 0x000001ee7eb47720 DEOPT UNPACKING pc=0x000001ee591446a2 sp=0x0000007b86afee90 mode 2
Event: 22617.952 Thread 0x000001ee41d6fcf0 DEOPT PACKING pc=0x000001ee52469546 sp=0x0000007b864fd400
Event: 22617.952 Thread 0x000001ee41d6fcf0 DEOPT UNPACKING pc=0x000001ee59144e42 sp=0x0000007b864fc930 mode 0
Event: 23644.114 Thread 0x000001ee7eb47720 Uncommon trap: trap_request=0xfffffff4 fr.pc=0x000001ee5a32b704 relative=0x00000000000008e4
Event: 23644.114 Thread 0x000001ee7eb47720 Uncommon trap: reason=null_check action=make_not_entrant pc=0x000001ee5a32b704 method=java.lang.Class.reflectionData()Ljava/lang/Class$ReflectionData; @ 18 c2
Event: 23644.114 Thread 0x000001ee7eb47720 DEOPT PACKING pc=0x000001ee5a32b704 sp=0x0000007b86afd470
Event: 23644.114 Thread 0x000001ee7eb47720 DEOPT UNPACKING pc=0x000001ee591446a2 sp=0x0000007b86afd2b8 mode 2
Event: 23644.116 Thread 0x000001ee7eb47720 Uncommon trap: trap_request=0xfffffff4 fr.pc=0x000001ee59c0d144 relative=0x0000000000000464
Event: 23644.116 Thread 0x000001ee7eb47720 Uncommon trap: reason=null_check action=make_not_entrant pc=0x000001ee59c0d144 method=java.lang.Class.reflectionData()Ljava/lang/Class$ReflectionData; @ 18 c2
Event: 23644.116 Thread 0x000001ee7eb47720 DEOPT PACKING pc=0x000001ee59c0d144 sp=0x0000007b86afd370
Event: 23644.116 Thread 0x000001ee7eb47720 DEOPT UNPACKING pc=0x000001ee591446a2 sp=0x0000007b86afd2b0 mode 2
Event: 23644.116 Thread 0x000001ee7eb47720 Uncommon trap: trap_request=0xfffffff4 fr.pc=0x000001ee59954d94 relative=0x0000000000000154
Event: 23644.117 Thread 0x000001ee7eb47720 Uncommon trap: reason=null_check action=make_not_entrant pc=0x000001ee59954d94 method=java.lang.Class.reflectionData()Ljava/lang/Class$ReflectionData; @ 18 c2
Event: 23644.117 Thread 0x000001ee7eb47720 DEOPT PACKING pc=0x000001ee59954d94 sp=0x0000007b86afd300
Event: 23644.117 Thread 0x000001ee7eb47720 DEOPT UNPACKING pc=0x000001ee591446a2 sp=0x0000007b86afd2b8 mode 2
Event: 23644.982 Thread 0x000001ee41c76f60 DEOPT PACKING pc=0x000001ee52067b9e sp=0x0000007b85bff430
Event: 23644.982 Thread 0x000001ee41c76f60 DEOPT UNPACKING pc=0x000001ee59144e42 sp=0x0000007b85bfe948 mode 0
Event: 23912.382 Thread 0x000001ee7eb47720 DEOPT PACKING pc=0x000001ee52223150 sp=0x0000007b86afe200
Event: 23912.382 Thread 0x000001ee7eb47720 DEOPT UNPACKING pc=0x000001ee59144e42 sp=0x0000007b86afd6e8 mode 0
Classes loaded (20 events):
Event: 4404.907 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$JPEGReaderDisposerRecord
Event: 4404.907 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$JPEGReaderDisposerRecord done
Event: 4404.908 Loading class javax/imageio/plugins/jpeg/JPEGImageReadParam
Event: 4404.908 Loading class javax/imageio/plugins/jpeg/JPEGImageReadParam done
Event: 4404.908 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer
Event: 4404.909 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer done
Event: 4404.909 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator
Event: 4404.909 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator done
Event: 11362.237 Loading class java/util/WeakHashMap$KeyIterator
Event: 11362.237 Loading class java/util/WeakHashMap$HashIterator
Event: 11362.238 Loading class java/util/WeakHashMap$HashIterator done
Event: 11362.238 Loading class java/util/WeakHashMap$KeyIterator done
Event: 11362.486 Loading class javax/swing/RepaintManager$DisplayChangedRunnable
Event: 11362.487 Loading class javax/swing/RepaintManager$DisplayChangedRunnable done
Event: 11398.034 Loading class sun/awt/windows/WComponentPeer$1
Event: 11398.034 Loading class sun/awt/windows/WComponentPeer$1 done
Event: 11398.437 Loading class sun/awt/DebugSettings
Event: 11398.441 Loading class sun/awt/DebugSettings done
Event: 11492.840 Loading class javax/swing/JTabbedPane
Event: 11492.841 Loading class javax/swing/JTabbedPane done
Classes unloaded (20 events):
Event: 17721.983 Thread 0x000001ee6203fe90 Unloading class 0x000001ee0101c800 'java/lang/invoke/LambdaForm$MH+0x000001ee0101c800'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee01454000 'java/lang/invoke/LambdaForm$MH+0x000001ee01454000'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee01453800 'java/lang/invoke/LambdaForm$MH+0x000001ee01453800'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee01453400 'java/lang/invoke/LambdaForm$MH+0x000001ee01453400'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee01453000 'java/lang/invoke/LambdaForm$MH+0x000001ee01453000'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee0140f000 'java/lang/invoke/LambdaForm$MH+0x000001ee0140f000'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee0140d400 'java/lang/invoke/LambdaForm$MH+0x000001ee0140d400'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee013a5800 'java/lang/invoke/LambdaForm$MH+0x000001ee013a5800'
Event: 18933.329 Thread 0x000001ee6203fe90 Unloading class 0x000001ee010b6c00 'java/lang/invoke/LambdaForm$MH+0x000001ee010b6c00'
Event: 19971.766 Thread 0x000001ee6203fe90 Unloading class 0x000001ee010af800 'java/lang/invoke/LambdaForm$MH+0x000001ee010af800'
Event: 19971.766 Thread 0x000001ee6203fe90 Unloading class 0x000001ee010ae800 'java/lang/invoke/LambdaForm$MH+0x000001ee010ae800'
Event: 19971.766 Thread 0x000001ee6203fe90 Unloading class 0x000001ee010ae400 'java/lang/invoke/LambdaForm$MH+0x000001ee010ae400'
Event: 19971.766 Thread 0x000001ee6203fe90 Unloading class 0x000001ee010ad800 'java/lang/invoke/LambdaForm$MH+0x000001ee010ad800'
Event: 19971.766 Thread 0x000001ee6203fe90 Unloading class 0x000001ee010ad000 'java/lang/invoke/LambdaForm$MH+0x000001ee010ad000'
Event: 20225.030 Thread 0x000001ee6203fe90 Unloading class 0x000001ee012a0c00 'java/lang/invoke/LambdaForm$MH+0x000001ee012a0c00'
Event: 20225.030 Thread 0x000001ee6203fe90 Unloading class 0x000001ee012a0400 'java/lang/invoke/LambdaForm$MH+0x000001ee012a0400'
Event: 20225.030 Thread 0x000001ee6203fe90 Unloading class 0x000001ee012a0000 'java/lang/invoke/LambdaForm$MH+0x000001ee012a0000'
Event: 20225.030 Thread 0x000001ee6203fe90 Unloading class 0x000001ee0129bc00 'java/lang/invoke/LambdaForm$MH+0x000001ee0129bc00'
Event: 20845.075 Thread 0x000001ee6203fe90 Unloading class 0x000001ee01001400 'java/lang/invoke/LambdaForm$MH+0x000001ee01001400'
Event: 23195.525 Thread 0x000001ee6203fe90 Unloading class 0x000001ee0101e000 'java/lang/invoke/LambdaForm$BMH+0x000001ee0101e000'
Classes redefined (0 events):
No events
Internal exceptions (20 events):
Event: 22929.008 Thread 0x000001ee41d6e2b0 Exception <a 'java/io/IOException'{0x0000000412fa42b8}> (0x0000000412fa42b8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23005.484 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a82b5c8}> (0x000000040a82b5c8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23033.595 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000414c1c7f8}> (0x0000000414c1c7f8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23059.478 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f81c7f8}> (0x000000040f81c7f8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23086.766 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000413022218}> (0x0000000413022218)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23117.189 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f81c7f8}> (0x000000040f81c7f8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23264.307 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f81c7f8}> (0x000000040f81c7f8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23292.758 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040e01d248}> (0x000000040e01d248)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23378.616 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000004169d0ca0}> (0x00000004169d0ca0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23499.836 Thread 0x000001ee7eb47720 Implicit null exception at 0x000001ee5283977a to 0x000001ee5283a364
Event: 23499.836 Thread 0x000001ee7eb47720 Exception <a 'java/lang/NullPointerException'{0x000000040df20338}> (0x000000040df20338)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 23504.685 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000004199cfaf8}> (0x00000004199cfaf8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23616.991 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000004180219c0}> (0x00000004180219c0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23644.114 Thread 0x000001ee7eb47720 Implicit null exception at 0x000001ee5a32aea7 to 0x000001ee5a32b6d8
Event: 23644.116 Thread 0x000001ee7eb47720 Implicit null exception at 0x000001ee59c0cd42 to 0x000001ee59c0d120
Event: 23644.116 Thread 0x000001ee7eb47720 Implicit null exception at 0x000001ee59954c93 to 0x000001ee59954d7c
Event: 23650.831 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f82c820}> (0x000000040f82c820)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23736.475 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000413192a10}> (0x0000000413192a10)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23768.202 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000041301c800}> (0x000000041301c800)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 23916.432 Thread 0x000001ee41c75bb0 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c800}> (0x000000040a81c800)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
ZGC Phase Switch (0 events):
No events
VM Operations (20 events):
Event: 23951.334 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23951.354 Executing VM operation: G1PauseRemark
Event: 23951.359 Executing VM operation: G1PauseRemark done
Event: 23951.365 Executing VM operation: G1PauseCleanup
Event: 23951.366 Executing VM operation: G1PauseCleanup done
Event: 23953.376 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation)
Event: 23953.376 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation) done
Event: 23953.376 Executing VM operation: RendezvousGCThreads
Event: 23953.376 Executing VM operation: RendezvousGCThreads done
Event: 23959.689 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 23959.714 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23967.897 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 23967.924 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23976.105 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 23976.132 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 23976.152 Executing VM operation: G1PauseRemark
Event: 23976.157 Executing VM operation: G1PauseRemark done
Event: 23976.162 Executing VM operation: G1PauseCleanup
Event: 23976.162 Executing VM operation: G1PauseCleanup done
Event: 23985.283 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Events (20 events):
Event: 23911.883 Thread 0x000001ee7eb43c10 Thread added: 0x000001ee7eb43c10
Event: 23911.883 Thread 0x000001ee7eb44fc0 Thread added: 0x000001ee7eb44fc0
Event: 23912.053 Thread 0x000001ee7eb442a0 Thread added: 0x000001ee7eb442a0
Event: 23912.053 Thread 0x000001ee7eb45ce0 Thread added: 0x000001ee7eb45ce0
Event: 23912.129 Thread 0x000001ee7eb47db0 Thread added: 0x000001ee7eb47db0
Event: 23916.307 Thread 0x000001ee7eb4aba0 Thread exited: 0x000001ee7eb4aba0
Event: 23916.307 Thread 0x000001ee7eb44fc0 Thread exited: 0x000001ee7eb44fc0
Event: 23916.307 Thread 0x000001ee7eb45650 Thread exited: 0x000001ee7eb45650
Event: 23916.307 Thread 0x000001ee7eb43c10 Thread exited: 0x000001ee7eb43c10
Event: 23916.307 Thread 0x000001ee7eb43580 Thread exited: 0x000001ee7eb43580
Event: 23916.318 Thread 0x000001ee7eb49160 Thread exited: 0x000001ee7eb49160
Event: 23916.403 Thread 0x000001ee6203fe90 flushing nmethod 0x000001ee52a12710
Event: 23916.403 Thread 0x000001ee6203fe90 flushing nmethod 0x000001ee52222810
Event: 23916.403 Thread 0x000001ee6203fe90 flushing nmethod 0x000001ee52712390
Event: 23916.403 Thread 0x000001ee6203fe90 flushing nmethod 0x000001ee5291fc10
Event: 23916.403 Thread 0x000001ee6203fe90 flushing nmethod 0x000001ee52b07690
Event: 23916.435 Thread 0x000001ee41d6cf00 Thread added: 0x000001ee41d6cf00
Event: 23972.131 Thread 0x000001ee7eb47db0 Thread exited: 0x000001ee7eb47db0
Event: 23972.131 Thread 0x000001ee7eb442a0 Thread exited: 0x000001ee7eb442a0
Event: 23973.348 Thread 0x000001ee41d6f660 Thread exited: 0x000001ee41d6f660
Dynamic libraries:
0x00007ff6f5f60000 - 0x00007ff6f5f70000 C:\Program Files\Java\jdk-21\bin\java.exe
0x00007ffeb14d0000 - 0x00007ffeb16e7000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffeb04c0000 - 0x00007ffeb0584000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffeae6f0000 - 0x00007ffeaeac2000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffeaef20000 - 0x00007ffeaf031000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffe97c90000 - 0x00007ffe97ca9000 C:\Program Files\Java\jdk-21\bin\jli.dll
0x00007ffe8ce30000 - 0x00007ffe8ce4b000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
0x00007ffeafe30000 - 0x00007ffeafee1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffeb0590000 - 0x00007ffeb0637000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffeb0ac0000 - 0x00007ffeb0b68000 C:\WINDOWS\System32\sechost.dll
0x00007ffeaead0000 - 0x00007ffeaeaf8000 C:\WINDOWS\System32\bcrypt.dll
0x00007ffeb0640000 - 0x00007ffeb0754000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffeb07f0000 - 0x00007ffeb09a1000 C:\WINDOWS\System32\USER32.dll
0x00007ffeaeb00000 - 0x00007ffeaeb26000 C:\WINDOWS\System32\win32u.dll
0x00007ffe83da0000 - 0x00007ffe8403b000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da\COMCTL32.dll
0x00007ffeb10c0000 - 0x00007ffeb10e9000 C:\WINDOWS\System32\GDI32.dll
0x00007ffeae5c0000 - 0x00007ffeae6e3000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffeaf040000 - 0x00007ffeaf0da000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffeaa470000 - 0x00007ffeaa47a000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffeb1080000 - 0x00007ffeb10b1000 C:\WINDOWS\System32\IMM32.DLL
0x00007ffea7340000 - 0x00007ffea734c000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
0x00007ffe7fc50000 - 0x00007ffe7fcde000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
0x00007ffe2e380000 - 0x00007ffe2f09a000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
0x00007ffeaf490000 - 0x00007ffeaf501000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffeae4a0000 - 0x00007ffeae4ed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
0x00007ffea5860000 - 0x00007ffea5894000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffeae470000 - 0x00007ffeae483000 C:\WINDOWS\SYSTEM32\UMPDC.dll
0x00007ffead5f0000 - 0x00007ffead608000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
0x00007ffea18a0000 - 0x00007ffea18aa000 C:\Program Files\Java\jdk-21\bin\jimage.dll
0x00007ffea8110000 - 0x00007ffea8343000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
0x00007ffeb10f0000 - 0x00007ffeb1483000 C:\WINDOWS\System32\combase.dll
0x00007ffeaf160000 - 0x00007ffeaf237000 C:\WINDOWS\System32\OLEAUT32.dll
0x00007ffea7b20000 - 0x00007ffea7b52000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
0x00007ffeaf0e0000 - 0x00007ffeaf15b000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffe8cb90000 - 0x00007ffe8cbaf000 C:\Program Files\Java\jdk-21\bin\java.dll
0x00007ffeaf580000 - 0x00007ffeafe22000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffeaed20000 - 0x00007ffeaee5f000 C:\WINDOWS\System32\wintypes.dll
0x00007ffeac4f0000 - 0x00007ffeace0e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
0x00007ffeb09b0000 - 0x00007ffeb0abb000 C:\WINDOWS\System32\SHCORE.dll
0x00007ffeaf410000 - 0x00007ffeaf479000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffeae4f0000 - 0x00007ffeae51b000 C:\WINDOWS\SYSTEM32\profapi.dll
0x00007ffe7c7c0000 - 0x00007ffe7c897000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
0x00007ffea0fe0000 - 0x00007ffea0ff0000 C:\Program Files\Java\jdk-21\bin\net.dll
0x00007ffea8f70000 - 0x00007ffea909c000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
0x00007ffeada70000 - 0x00007ffeadad9000 C:\WINDOWS\system32\mswsock.dll
0x00007ffe89850000 - 0x00007ffe89866000 C:\Program Files\Java\jdk-21\bin\nio.dll
0x00007ffe80dc0000 - 0x00007ffe80dd8000 C:\Program Files\Java\jdk-21\bin\zip.dll
0x00007ffeadcd0000 - 0x00007ffeadceb000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffead550000 - 0x00007ffead587000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffeadb60000 - 0x00007ffeadb88000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffeadcc0000 - 0x00007ffeadccc000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffead070000 - 0x00007ffead09d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffeaffc0000 - 0x00007ffeaffc9000 C:\WINDOWS\System32\NSI.dll
0x00007ffe7ee20000 - 0x00007ffe7ee69000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna2484366516770548656.dll
0x00007ffeaf480000 - 0x00007ffeaf488000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffea08b0000 - 0x00007ffea08c0000 C:\Program Files\Java\jdk-21\bin\verify.dll
0x00007ffea0e00000 - 0x00007ffea0e17000 C:\WINDOWS\system32\napinsp.dll
0x00007ffe9d720000 - 0x00007ffe9d73b000 C:\WINDOWS\system32\pnrpnsp.dll
0x00007ffead0e0000 - 0x00007ffead1d8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
0x00007ffea7750000 - 0x00007ffea7761000 C:\WINDOWS\System32\winrnr.dll
0x00007ffe9be40000 - 0x00007ffe9be5f000 C:\WINDOWS\system32\wshbth.dll
0x00007ffe9e7c0000 - 0x00007ffe9e7e1000 C:\WINDOWS\system32\nlansp_c.dll
0x00007ffea5ab0000 - 0x00007ffea5aba000 C:\Windows\System32\rasadhlp.dll
0x00007ffea84a0000 - 0x00007ffea8524000 C:\WINDOWS\System32\fwpuclnt.dll
0x00007ffe4dcb0000 - 0x00007ffe4e074000 C:\WINDOWS\SYSTEM32\nvcuda.dll
0x00007ffeabc50000 - 0x00007ffeabc87000 C:\WINDOWS\SYSTEM32\dxcore.dll
0x00007ffe2ada0000 - 0x00007ffe2cb09000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvcuda64.dll
0x00007ffeadd20000 - 0x00007ffeadd32000 C:\WINDOWS\SYSTEM32\msasn1.dll
0x00007ffea87a0000 - 0x00007ffea87d2000 C:\WINDOWS\SYSTEM32\cryptnet.dll
0x00007ffeaeb30000 - 0x00007ffeaec97000 C:\WINDOWS\System32\CRYPT32.dll
0x00007ffeadd90000 - 0x00007ffeadde0000 C:\WINDOWS\SYSTEM32\wldp.dll
0x00007ffea8580000 - 0x00007ffea86da000 C:\WINDOWS\SYSTEM32\drvstore.dll
0x00007ffeae190000 - 0x00007ffeae1bc000 C:\WINDOWS\SYSTEM32\devobj.dll
0x00007ffeae1c0000 - 0x00007ffeae20e000 C:\WINDOWS\SYSTEM32\cfgmgr32.dll
0x00007ffea3ae0000 - 0x00007ffea4055000 C:\WINDOWS\SYSTEM32\nvapi64.dll
0x00007ffeaffe0000 - 0x00007ffeb0454000 C:\WINDOWS\System32\SETUPAPI.dll
0x00007ffeb0d10000 - 0x00007ffeb0eb0000 C:\WINDOWS\System32\ole32.dll
0x00007ffe7e110000 - 0x00007ffe7e1a5000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvdxgdmal64.dll
0x00007ffe5ef60000 - 0x00007ffe5f082000 C:\WINDOWS\SYSTEM32\nvml.dll
0x00007ffe243d0000 - 0x00007ffe2522e000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvml.dll
0x00007ffe55210000 - 0x00007ffe5539f000 C:\Program Files\Java\jdk-21\bin\awt.dll
0x00007ffeab040000 - 0x00007ffeab0d8000 C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ffeabf90000 - 0x00007ffeabfbe000 C:\WINDOWS\system32\DWMAPI.DLL
0x00007ffeabb60000 - 0x00007ffeabc14000 C:\WINDOWS\system32\uxtheme.dll
0x00007ffe75360000 - 0x00007ffe75460000 C:\WINDOWS\system32\opengl32.dll
0x00007ffe80090000 - 0x00007ffe800bd000 C:\WINDOWS\SYSTEM32\GLU32.dll
0x00007ffeb0f20000 - 0x00007ffeb1080000 C:\WINDOWS\System32\MSCTF.dll
0x00007ffeaeca0000 - 0x00007ffeaed1c000 C:\WINDOWS\System32\wintrust.dll
0x00007ffeaf560000 - 0x00007ffeaf57f000 C:\WINDOWS\System32\imagehlp.dll
0x00007ffe8afe0000 - 0x00007ffe8b2e4000 C:\WINDOWS\system32\nvspcap64.dll
0x00007ffead700000 - 0x00007ffead734000 C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007ffeadb00000 - 0x00007ffeadb26000 C:\WINDOWS\SYSTEM32\gpapi.dll
0x00007ffe8ae20000 - 0x00007ffe8afd4000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvppex.dll
0x00007ffe9d520000 - 0x00007ffe9d52e000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
0x00007ffeade80000 - 0x00007ffeadead000 C:\WINDOWS\SYSTEM32\ncrypt.dll
0x00007ffeade40000 - 0x00007ffeade77000 C:\WINDOWS\SYSTEM32\NTASN1.dll
0x00007ffe7e240000 - 0x00007ffe7e2c7000 C:\Program Files\Java\jdk-21\bin\freetype.dll
0x00007ffe5c3a0000 - 0x00007ffe5c481000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
0x00007ffe8bcb0000 - 0x00007ffe8bcb6000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-21990692734224000.dll
0x00007ffe9c3a0000 - 0x00007ffe9c3a7000 C:\Program Files\Java\jdk-21\bin\jawt.dll
0x00007ffe83c00000 - 0x00007ffe83cb3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
0x00007ffeafef0000 - 0x00007ffeaffa0000 C:\WINDOWS\System32\clbcatq.dll
0x00007ffea8e60000 - 0x00007ffea8f69000 C:\WINDOWS\SYSTEM32\PROPSYS.dll
0x00007ffe5d800000 - 0x00007ffe5d81a000 C:\WINDOWS\system32\NetworkExplorer.dll
0x00007ffea0210000 - 0x00007ffea022e000 C:\WINDOWS\SYSTEM32\MPR.dll
0x00007ffe8cbc0000 - 0x00007ffe8cbeb000 C:\WINDOWS\System32\p9np.dll
0x00007ffe9f610000 - 0x00007ffe9f61c000 C:\WINDOWS\System32\drprov.dll
0x00007ffe9d700000 - 0x00007ffe9d719000 C:\WINDOWS\System32\ntlanman.dll
0x00007ffe9c920000 - 0x00007ffe9c93f000 C:\WINDOWS\System32\davclnt.dll
0x00007ffeae3f0000 - 0x00007ffeae45c000 C:\WINDOWS\System32\WINSTA.dll
0x00007ffea8ba0000 - 0x00007ffea8bba000 C:\WINDOWS\System32\wkscli.dll
0x00007ffe9ca40000 - 0x00007ffe9ca52000 C:\WINDOWS\SYSTEM32\cscapi.dll
0x00007ffead060000 - 0x00007ffead06c000 C:\WINDOWS\System32\netutils.dll
0x00007ffe89670000 - 0x00007ffe896ce000 C:\Windows\System32\dlnashext.dll
0x00007ffe8bd50000 - 0x00007ffe8bdb9000 C:\Windows\System32\PlayToDevice.dll
0x00007ffe9c820000 - 0x00007ffe9c841000 C:\Windows\System32\DevDispItemProvider.dll
0x00007ffea7b60000 - 0x00007ffea7bfe000 C:\WINDOWS\System32\MMDevApi.dll
0x00007ffe9c330000 - 0x00007ffe9c386000 C:\WINDOWS\SYSTEM32\rdpendp.dll
0x00007ffe8daf0000 - 0x00007ffe8dbb1000 C:\WINDOWS\SYSTEM32\TextShaping.dll
0x00007ffead3a0000 - 0x00007ffead3b4000 C:\WINDOWS\SYSTEM32\WTSAPI32.dll
0x00007ffe7ab80000 - 0x00007ffe7ac2a000 C:\WINDOWS\system32\wpdshext.dll
0x00007ffe9bc00000 - 0x00007ffe9bdc1000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8\gdiplus.dll
0x00007ffe8bb50000 - 0x00007ffe8bbee000 C:\Windows\System32\PortableDeviceApi.dll
0x00007ffe522b0000 - 0x00007ffe522e7000 C:\Windows\System32\EhStorShell.dll
0x00007ffea73a0000 - 0x00007ffea73c4000 C:\Windows\System32\EhStorAPI.dll
0x00007ffeab940000 - 0x00007ffeabaf0000 C:\WINDOWS\SYSTEM32\WindowsCodecs.dll
0x00007ffe79460000 - 0x00007ffe794ca000 C:\Windows\System32\thumbcache.dll
0x00007ffea0010000 - 0x00007ffea0205000 C:\Windows\System32\urlmon.dll
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8;C:\WINDOWS\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25050.5-0
VM Arguments:
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache1
java_class_path (initial): sheepit-client-7.25182.0.jar
Launcher Type: SUN_STANDARD
[Global flags]
intx CICompilerCount = 12 {product} {ergonomic}
uint ConcGCThreads = 4 {product} {ergonomic}
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
size_t InitialHeapSize = 1073741824 {product} {ergonomic}
size_t MarkStackSize = 4194304 {product} {ergonomic}
size_t MaxHeapSize = 17163091968 {product} {ergonomic}
size_t MaxNewSize = 10292822016 {product} {ergonomic}
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
size_t MinHeapSize = 8388608 {product} {ergonomic}
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
bool SegmentedCodeCache = true {product} {ergonomic}
size_t SoftMaxHeapSize = 17163091968 {manageable} {ergonomic}
bool UseCompressedOops = true {product lp64_product} {ergonomic}
bool UseG1GC = true {product} {ergonomic}
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags foldmultilines=false
#1: stderr all=off uptime,level,tags foldmultilines=false
Environment Variables:
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;C:\Program Files\Blender Foundation\Blender 4.4;
USERNAME=Nathan
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
TMP=C:\Users\Nathan\AppData\Local\Temp
TEMP=C:\Users\Nathan\AppData\Local\Temp
Periodic native trim disabled
--------------- S Y S T E M ---------------
OS:
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
OS uptime: 25 days 17:30 hours
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
Processor Information for processor 0
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 1
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 2
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 3
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 4
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 5
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 6
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 7
Max Mhz: 2201, Current Mhz: 1200, Mhz Limit: 2201
Processor Information for processor 8
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 9
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 10
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 11
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 12
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 13
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 14
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 15
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 16
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 17
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 18
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Processor Information for processor 19
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Memory: 4k page, system-wide physical 65446M (5571M free)
TotalPageFile size 79743M (AvailPageFile size 351M)
current process WorkingSet (physical memory assigned to process): 440M, peak: 1418M
current process commit charge ("private bytes"): 504M, peak: 1600M
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
END.

801
hs_err_pid43016.log Normal file
View File

@@ -0,0 +1,801 @@
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 427819008 bytes for G1 virtual space
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
# placed in the first 32GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (os_windows.cpp:3603), pid=43016, tid=43400
#
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache0
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 63G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
Time: Sun Jul 6 13:55:52 2025 Mountain Daylight Time elapsed time: 9419.096831 seconds (0d 2h 36m 59s)
--------------- T H R E A D ---------------
Current thread (0x00000293b83eeb30): VMThread "VM Thread" [id=43400, stack(0x000000f3e9000000,0x000000f3e9100000) (1024K)]
Stack: [0x000000f3e9000000,0x000000f3e9100000]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x6cae19]
V [jvm.dll+0x855741]
V [jvm.dll+0x857c6e]
V [jvm.dll+0x858343]
V [jvm.dll+0x27e0b6]
V [jvm.dll+0x6c7595]
V [jvm.dll+0x6bc0fa]
V [jvm.dll+0x353eaa]
V [jvm.dll+0x35bb26]
V [jvm.dll+0x3ae52e]
V [jvm.dll+0x3ae7d8]
V [jvm.dll+0x3281bc]
V [jvm.dll+0x328247]
V [jvm.dll+0x36cbcc]
V [jvm.dll+0x36b41e]
V [jvm.dll+0x327981]
V [jvm.dll+0x36ab3a]
V [jvm.dll+0x85e110]
V [jvm.dll+0x85f494]
V [jvm.dll+0x85f9d0]
V [jvm.dll+0x85fc73]
V [jvm.dll+0x7ffa1b]
V [jvm.dll+0x6c94fd]
C [ucrtbase.dll+0x29333]
C [KERNEL32.DLL+0x1259d]
C [ntdll.dll+0x5af78]
VM_Operation (0x000000f3ea3fe9f0): G1CollectForAllocation, mode: safepoint, requested by thread 0x0000029416ea0030
--------------- P R O C E S S ---------------
Threads class SMR info:
_java_thread_list=0x0000029428fedc50, length=29, elements={
0x00000293b8408910, 0x00000293b8409820, 0x00000293b840bdf0, 0x00000293b840c940,
0x00000293b840ffe0, 0x00000293b8412a40, 0x00000293b8424520, 0x00000293b8425fc0,
0x00000293cf7aab90, 0x00000293cf7ad880, 0x0000029415e63580, 0x000002941621ac70,
0x0000029415eefbf0, 0x0000029415c60610, 0x00000294174b23e0, 0x00000294174b3100,
0x00000294174b2a70, 0x00000294174b3790, 0x00000294174b3e20, 0x00000294174b1d50,
0x00000294174b16c0, 0x0000029416dae270, 0x0000029416dacec0, 0x0000029416ea06c0,
0x0000029416e9e5f0, 0x0000029415f94060, 0x0000029415f96e50, 0x0000029415f98200,
0x0000029416ea0030
}
Java Threads: ( => current thread )
0x00000293b8408910 JavaThread "Reference Handler" daemon [_thread_blocked, id=42000, stack(0x000000f3e9100000,0x000000f3e9200000) (1024K)]
0x00000293b8409820 JavaThread "Finalizer" daemon [_thread_blocked, id=37372, stack(0x000000f3e9200000,0x000000f3e9300000) (1024K)]
0x00000293b840bdf0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=40940, stack(0x000000f3e9300000,0x000000f3e9400000) (1024K)]
0x00000293b840c940 JavaThread "Attach Listener" daemon [_thread_blocked, id=37324, stack(0x000000f3e9400000,0x000000f3e9500000) (1024K)]
0x00000293b840ffe0 JavaThread "Service Thread" daemon [_thread_blocked, id=38168, stack(0x000000f3e9500000,0x000000f3e9600000) (1024K)]
0x00000293b8412a40 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=30136, stack(0x000000f3e9600000,0x000000f3e9700000) (1024K)]
0x00000293b8424520 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=6684, stack(0x000000f3e9700000,0x000000f3e9800000) (1024K)]
0x00000293b8425fc0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=38636, stack(0x000000f3e9800000,0x000000f3e9900000) (1024K)]
0x00000293cf7aab90 JavaThread "Notification Thread" daemon [_thread_blocked, id=40200, stack(0x000000f3e9c00000,0x000000f3e9d00000) (1024K)]
0x00000293cf7ad880 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=42752, stack(0x000000f3e9d00000,0x000000f3e9e00000) (1024K)]
0x0000029415e63580 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=44908, stack(0x000000f3e9e00000,0x000000f3e9f00000) (1024K)]
0x000002941621ac70 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=24512, stack(0x000000f3ea200000,0x000000f3ea300000) (1024K)]
0x0000029415eefbf0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=37736, stack(0x000000f3eb600000,0x000000f3eb700000) (1024K)]
0x0000029415c60610 JavaThread "Timer-0" [_thread_blocked, id=33860, stack(0x000000f3e9f00000,0x000000f3ea000000) (1024K)]
0x00000294174b23e0 JavaThread "TimerQueue" daemon [_thread_blocked, id=42624, stack(0x000000f3ebb00000,0x000000f3ebc00000) (1024K)]
0x00000294174b3100 JavaThread "Swing-Shell" daemon [_thread_blocked, id=44740, stack(0x000000f3ebc00000,0x000000f3ebd00000) (1024K)]
0x00000294174b2a70 JavaThread "AWT-Shutdown" [_thread_blocked, id=36264, stack(0x000000f3eb900000,0x000000f3eba00000) (1024K)]
0x00000294174b3790 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=40552, stack(0x000000f3eba00000,0x000000f3ebb00000) (1024K)]
0x00000294174b3e20 JavaThread "Thread-3" [_thread_in_native, id=38496, stack(0x000000f3ec100000,0x000000f3ec200000) (1024K)]
0x00000294174b1d50 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=34000, stack(0x000000f3ec200000,0x000000f3ec300000) (1024K)]
0x00000294174b16c0 JavaThread "DestroyJavaVM" [_thread_blocked, id=41180, stack(0x000000f3e8900000,0x000000f3e8a00000) (1024K)]
0x0000029416dae270 JavaThread "Thread-1" [_thread_blocked, id=44952, stack(0x000000f3ec400000,0x000000f3ec500000) (1024K)]
0x0000029416dacec0 JavaThread "Thread-4" [_thread_blocked, id=40468, stack(0x000000f3ec900000,0x000000f3eca00000) (1024K)]
0x0000029416ea06c0 JavaThread "Timer-1" [_thread_blocked, id=38920, stack(0x000000f3ed820000,0x000000f3ed920000) (1024K)]
0x0000029416e9e5f0 JavaThread "pool-4-thread-1" [_thread_blocked, id=22792, stack(0x000000f3e8600000,0x000000f3e8700000) (1024K)]
0x0000029415f94060 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=43788, stack(0x000000f3e8700000,0x000000f3e8800000) (1024K)]
0x0000029415f96e50 JavaThread "OkHttp client.sheepit-renderfarm.com" daemon [_thread_in_native, id=6500, stack(0x000000f3e9a00000,0x000000f3e9b00000) (1024K)]
0x0000029415f98200 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=16488, stack(0x000000f3eb700000,0x000000f3eb800000) (1024K)]
0x0000029416ea0030 JavaThread "Timer-77" [_thread_blocked, id=44652, stack(0x000000f3ea300000,0x000000f3ea400000) (1024K)]
Total: 29
Other Threads:
=>0x00000293b83eeb30 VMThread "VM Thread" [id=43400, stack(0x000000f3e9000000,0x000000f3e9100000) (1024K)]
0x00000293b83db320 WatcherThread "VM Periodic Task Thread" [id=43868, stack(0x000000f3e8f00000,0x000000f3e9000000) (1024K)]
0x000002939fc4c910 WorkerThread "GC Thread#0" [id=25564, stack(0x000000f3e8a00000,0x000000f3e8b00000) (1024K)]
0x0000029415baf850 WorkerThread "GC Thread#1" [id=45376, stack(0x000000f3ea400000,0x000000f3ea500000) (1024K)]
0x0000029415bb06d0 WorkerThread "GC Thread#2" [id=39748, stack(0x000000f3ea500000,0x000000f3ea600000) (1024K)]
0x0000029415baed70 WorkerThread "GC Thread#3" [id=27988, stack(0x000000f3ea600000,0x000000f3ea700000) (1024K)]
0x0000029415bb0330 WorkerThread "GC Thread#4" [id=42244, stack(0x000000f3ea700000,0x000000f3ea800000) (1024K)]
0x0000029415baf4b0 WorkerThread "GC Thread#5" [id=32404, stack(0x000000f3ea800000,0x000000f3ea900000) (1024K)]
0x0000029415bafbf0 WorkerThread "GC Thread#6" [id=42400, stack(0x000000f3ea900000,0x000000f3eaa00000) (1024K)]
0x0000029415baff90 WorkerThread "GC Thread#7" [id=37528, stack(0x000000f3eaa00000,0x000000f3eab00000) (1024K)]
0x0000029415baf110 WorkerThread "GC Thread#8" [id=43836, stack(0x000000f3eab00000,0x000000f3eac00000) (1024K)]
0x000002941558de50 WorkerThread "GC Thread#9" [id=45884, stack(0x000000f3eac00000,0x000000f3ead00000) (1024K)]
0x000002941558dab0 WorkerThread "GC Thread#10" [id=45908, stack(0x000000f3ead00000,0x000000f3eae00000) (1024K)]
0x000002941558cc30 WorkerThread "GC Thread#11" [id=42184, stack(0x000000f3eae00000,0x000000f3eaf00000) (1024K)]
0x000002941558e1f0 WorkerThread "GC Thread#12" [id=25520, stack(0x000000f3eaf00000,0x000000f3eb000000) (1024K)]
0x000002941558d370 WorkerThread "GC Thread#13" [id=39844, stack(0x000000f3eb000000,0x000000f3eb100000) (1024K)]
0x000002941558bdb0 WorkerThread "GC Thread#14" [id=35192, stack(0x000000f3eb100000,0x000000f3eb200000) (1024K)]
0x000002939e0f1f60 ConcurrentGCThread "G1 Main Marker" [id=31088, stack(0x000000f3e8b00000,0x000000f3e8c00000) (1024K)]
0x000002939e0f3920 WorkerThread "G1 Conc#0" [id=44736, stack(0x000000f3e8c00000,0x000000f3e8d00000) (1024K)]
0x000002941558c890 WorkerThread "G1 Conc#1" [id=39040, stack(0x000000f3e9b00000,0x000000f3e9c00000) (1024K)]
0x000002941740f7d0 WorkerThread "G1 Conc#2" [id=43228, stack(0x000000f3ea000000,0x000000f3ea100000) (1024K)]
0x0000029417410d90 WorkerThread "G1 Conc#3" [id=25908, stack(0x000000f3ea100000,0x000000f3ea200000) (1024K)]
0x00000293b831c3e0 ConcurrentGCThread "G1 Refine#0" [id=45416, stack(0x000000f3e8d00000,0x000000f3e8e00000) (1024K)]
0x00000293b831cf50 ConcurrentGCThread "G1 Service" [id=36764, stack(0x000000f3e8e00000,0x000000f3e8f00000) (1024K)]
Total: 24
Threads with active compile tasks:
Total: 0
VM state: at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007ffe2efbde50] Threads_lock - owner thread: 0x00000293b83eeb30
[0x00007ffe2efbdf50] Heap_lock - owner thread: 0x0000029416ea0030
Heap address: 0x0000000401000000, size: 16368 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
CDS archive(s) mapped at: [0x00000293d0000000-0x00000293d0c90000-0x00000293d0c90000), size 13172736, SharedBaseAddress: 0x00000293d0000000, ArchiveRelocationMode: 1.
Compressed class space mapped at: 0x00000293d1000000-0x0000029411000000, reserved size: 1073741824
Narrow klass base: 0x00000293d0000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
GC Precious Log:
CardTable entry size: 512
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
CPUs: 20 total, 20 available
Memory: 65446M
Large Page Support: Disabled
NUMA Support: Disabled
Compressed Oops: Enabled (Zero based)
Heap Region Size: 8M
Heap Min Capacity: 8M
Heap Initial Capacity: 1G
Heap Max Capacity: 16368M
Pre-touch: Disabled
Parallel Workers: 15
Concurrent Workers: 4
Concurrent Refinement Workers: 15
Periodic GC: Disabled
Heap:
garbage-first heap total 221184K, used 73706K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
| 0|0x0000000401000000, 0x0000000401800000, 0x0000000401800000|100%| O| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked
| 1|0x0000000401800000, 0x0000000401ffcc38, 0x0000000402000000| 99%| O| |TAMS 0x0000000401800000| PB 0x0000000401800000| Untracked
| 2|0x0000000402000000, 0x0000000402722b80, 0x0000000402800000| 89%| O| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked
| 3|0x0000000402800000, 0x0000000402800000, 0x0000000403000000| 0%| F| |TAMS 0x0000000402800000| PB 0x0000000402800000| Untracked
| 4|0x0000000403000000, 0x00000004032f7690, 0x0000000403800000| 37%| O| |TAMS 0x0000000403000000| PB 0x0000000403000000| Untracked
| 5|0x0000000403800000, 0x0000000403800000, 0x0000000404000000| 0%| F| |TAMS 0x0000000403800000| PB 0x0000000403800000| Untracked
| 6|0x0000000404000000, 0x0000000404800000, 0x0000000404800000|100%|HS| |TAMS 0x0000000404000000| PB 0x0000000404000000| Complete
| 7|0x0000000404800000, 0x0000000405000000, 0x0000000405000000|100%|HC| |TAMS 0x0000000404800000| PB 0x0000000404800000| Complete
| 8|0x0000000405000000, 0x0000000405800000, 0x0000000405800000|100%|HC| |TAMS 0x0000000405000000| PB 0x0000000405000000| Complete
| 9|0x0000000405800000, 0x0000000406000000, 0x0000000406000000|100%|HC| |TAMS 0x0000000405800000| PB 0x0000000405800000| Complete
| 10|0x0000000406000000, 0x0000000406000000, 0x0000000406800000| 0%| F| |TAMS 0x0000000406000000| PB 0x0000000406000000| Untracked
| 11|0x0000000406800000, 0x0000000406de3b60, 0x0000000407000000| 73%| S|CS|TAMS 0x0000000406800000| PB 0x0000000406800000| Complete
| 12|0x0000000407000000, 0x0000000407800000, 0x0000000407800000|100%| S|CS|TAMS 0x0000000407000000| PB 0x0000000407000000| Complete
| 13|0x0000000407800000, 0x0000000407800000, 0x0000000408000000| 0%| F| |TAMS 0x0000000407800000| PB 0x0000000407800000| Untracked
| 14|0x0000000408000000, 0x0000000408000000, 0x0000000408800000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked
| 15|0x0000000408800000, 0x0000000408800000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408800000| PB 0x0000000408800000| Untracked
| 16|0x0000000409000000, 0x0000000409000000, 0x0000000409800000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked
| 17|0x0000000409800000, 0x0000000409800000, 0x000000040a000000| 0%| F| |TAMS 0x0000000409800000| PB 0x0000000409800000| Untracked
| 18|0x000000040a000000, 0x000000040a000000, 0x000000040a800000| 0%| F| |TAMS 0x000000040a000000| PB 0x000000040a000000| Untracked
| 19|0x000000040a800000, 0x000000040a800000, 0x000000040b000000| 0%| F| |TAMS 0x000000040a800000| PB 0x000000040a800000| Untracked
| 20|0x000000040b000000, 0x000000040b000000, 0x000000040b800000| 0%| F| |TAMS 0x000000040b000000| PB 0x000000040b000000| Untracked
| 21|0x000000040b800000, 0x000000040b800000, 0x000000040c000000| 0%| F| |TAMS 0x000000040b800000| PB 0x000000040b800000| Untracked
| 22|0x000000040c000000, 0x000000040c000000, 0x000000040c800000| 0%| F| |TAMS 0x000000040c000000| PB 0x000000040c000000| Untracked
| 23|0x000000040c800000, 0x000000040c800000, 0x000000040d000000| 0%| F| |TAMS 0x000000040c800000| PB 0x000000040c800000| Untracked
| 24|0x000000040d000000, 0x000000040d000000, 0x000000040d800000| 0%| F| |TAMS 0x000000040d000000| PB 0x000000040d000000| Untracked
| 25|0x000000040d800000, 0x000000040d800000, 0x000000040e000000| 0%| F| |TAMS 0x000000040d800000| PB 0x000000040d800000| Untracked
| 26|0x000000040e000000, 0x000000040e000000, 0x000000040e800000| 0%| F| |TAMS 0x000000040e000000| PB 0x000000040e000000| Untracked
Card table byte_map: [0x00000293ba430000,0x00000293bc430000] _byte_map_base: 0x00000293b8428000
Marking Bits: (CMBitMap*) 0x00000293b82b0550
Bits: [0x00000293bc430000, 0x00000293cc3f0000)
Polling page: 0x000002939e320000
Metaspace:
Usage:
Non-class: 34.61 MB used.
Class: 3.83 MB used.
Both: 38.44 MB used.
Virtual space:
Non-class space: 64.00 MB reserved, 35.00 MB ( 55%) committed, 1 nodes.
Class space: 1.00 GB reserved, 4.31 MB ( <1%) committed, 1 nodes.
Both: 1.06 GB reserved, 39.31 MB ( 4%) committed.
Chunk freelists:
Non-Class: 12.58 MB
Class: 11.65 MB
Both: 24.23 MB
MaxMetaspaceSize: unlimited
CompressedClassSpaceSize: 1.00 GB
Initial GC threshold: 21.00 MB
Current GC threshold: 65.44 MB
CDS: on
- commit_granule_bytes: 65536.
- commit_granule_words: 8192.
- virtual_space_node_default_size: 8388608.
- enlarge_chunks_in_place: 1.
- use_allocation_guard: 0.
Internal statistics:
num_allocs_failed_limit: 3.
num_arena_births: 1540.
num_arena_deaths: 22.
num_vsnodes_births: 2.
num_vsnodes_deaths: 0.
num_space_committed: 628.
num_space_uncommitted: 0.
num_chunks_returned_to_freelist: 32.
num_chunks_taken_from_freelist: 2631.
num_chunk_merges: 0.
num_chunk_splits: 1593.
num_chunks_enlarged: 805.
num_inconsistent_stats: 0.
CodeHeap 'non-profiled nmethods': size=119168Kb used=9685Kb max_used=9685Kb free=109482Kb
bounds [0x00000293afbf0000, 0x00000293b0580000, 0x00000293b7050000]
CodeHeap 'profiled nmethods': size=119104Kb used=8026Kb max_used=14857Kb free=111077Kb
bounds [0x00000293a8050000, 0x00000293a8ee0000, 0x00000293af4a0000]
CodeHeap 'non-nmethods': size=7488Kb used=2038Kb max_used=3810Kb free=5449Kb
bounds [0x00000293af4a0000, 0x00000293af890000, 0x00000293afbf0000]
total_blobs=6231 nmethods=5253 adapters=881
compilation: enabled
stopped_count=0, restarted_count=0
full_count=0
Compilation events (20 events):
Event: 9296.151 Thread 0x00000293b8425fc0 nmethod 20297 0x00000293a8e72110 code [0x00000293a8e72400, 0x00000293a8e73790]
Event: 9296.151 Thread 0x00000293b8425fc0 20298 3 sun.security.util.ECParameters::engineGetEncoded (8 bytes)
Event: 9296.151 Thread 0x00000293b8425fc0 nmethod 20298 0x00000293a8825110 code [0x00000293a88252e0, 0x00000293a8825618]
Event: 9296.151 Thread 0x00000293b8425fc0 20299 3 sun.security.util.NamedCurve::getEncoded (11 bytes)
Event: 9296.152 Thread 0x00000293b8425fc0 nmethod 20299 0x00000293a8400490 code [0x00000293a8400640, 0x00000293a8400910]
Event: 9296.152 Thread 0x00000293b8425fc0 20300 3 sun.security.util.ECUtil::encodePoint (111 bytes)
Event: 9296.152 Thread 0x00000293b8425fc0 nmethod 20300 0x00000293a8c3ed90 code [0x00000293a8c3efe0, 0x00000293a8c3f6b8]
Event: 9296.201 Thread 0x00000293b8424520 nmethod 20295% 0x00000293b056df90 code [0x00000293b056e220, 0x00000293b05703f0]
Event: 9296.312 Thread 0x00000293b8425fc0 20301 3 sun.security.util.math.intpoly.IntegerPolynomialP384::finalCarryReduceLast (98 bytes)
Event: 9296.312 Thread 0x00000293b8425fc0 nmethod 20301 0x00000293a8058a10 code [0x00000293a8058bc0, 0x00000293a8058db8]
Event: 9296.669 Thread 0x00000293b8424520 20302 4 org.simpleframework.xml.core.Collector::set (85 bytes)
Event: 9296.719 Thread 0x00000293b8424520 nmethod 20302 0x00000293b0570f90 code [0x00000293b0571300, 0x00000293b0573638]
Event: 9296.720 Thread 0x00000293b8424520 20303 4 java.lang.Integer::toHexString (6 bytes)
Event: 9296.723 Thread 0x00000293b8424520 nmethod 20303 0x00000293b0455d10 code [0x00000293b0455ec0, 0x00000293b04561b8]
Event: 9299.170 Thread 0x00000293b8424520 20304 4 java.util.Hashtable$Entry::<init> (26 bytes)
Event: 9299.175 Thread 0x00000293b8424520 nmethod 20304 0x00000293b0474110 code [0x00000293b04742a0, 0x00000293b04745f8]
Event: 9299.533 Thread 0x00000293b8425fc0 20305 3 sun.java2d.pipe.Region::isRectangular (13 bytes)
Event: 9299.533 Thread 0x00000293b8425fc0 nmethod 20305 0x00000293a8814e10 code [0x00000293a8814fa0, 0x00000293a8815110]
Event: 9329.428 Thread 0x00000293b8425fc0 20306 3 java.util.logging.LogManager$LoggerContext::getRootLogger (8 bytes)
Event: 9329.428 Thread 0x00000293b8425fc0 nmethod 20306 0x00000293a8d5d590 code [0x00000293a8d5d720, 0x00000293a8d5d850]
GC Heap History (20 events):
Event: 9318.980 GC heap after
{Heap after GC invocations=1749 (full 159):
garbage-first heap total 335872K, used 60425K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 39365K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9325.463 GC heap before
{Heap before GC invocations=1749 (full 159):
garbage-first heap total 335872K, used 240649K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 24 young (196608K), 1 survivors (8192K)
Metaspace used 39365K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9325.465 GC heap after
{Heap after GC invocations=1750 (full 159):
garbage-first heap total 335872K, used 70355K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39365K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9337.211 GC heap before
{Heap before GC invocations=1750 (full 159):
garbage-first heap total 335872K, used 226003K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 23 young (188416K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9337.263 GC heap after
{Heap after GC invocations=1751 (full 160):
garbage-first heap total 278528K, used 59072K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9337.263 GC heap before
{Heap before GC invocations=1751 (full 160):
garbage-first heap total 278528K, used 59072K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 0 survivors (0K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9337.323 GC heap after
{Heap after GC invocations=1752 (full 161):
garbage-first heap total 221184K, used 59072K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9352.016 GC heap before
{Heap before GC invocations=1752 (full 161):
garbage-first heap total 221184K, used 190144K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 16 young (131072K), 0 survivors (0K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9352.064 GC heap after
{Heap after GC invocations=1753 (full 161):
garbage-first heap total 221184K, used 75484K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9362.429 GC heap before
{Heap before GC invocations=1754 (full 161):
garbage-first heap total 221184K, used 173788K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 14 young (114688K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9362.460 GC heap after
{Heap after GC invocations=1755 (full 161):
garbage-first heap total 221184K, used 71837K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9372.684 GC heap before
{Heap before GC invocations=1755 (full 161):
garbage-first heap total 221184K, used 170141K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 14 young (114688K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9372.709 GC heap after
{Heap after GC invocations=1756 (full 161):
garbage-first heap total 221184K, used 71285K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9384.423 GC heap before
{Heap before GC invocations=1756 (full 161):
garbage-first heap total 221184K, used 177781K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 15 young (122880K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9384.455 GC heap after
{Heap after GC invocations=1757 (full 161):
garbage-first heap total 221184K, used 73071K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9396.023 GC heap before
{Heap before GC invocations=1758 (full 161):
garbage-first heap total 221184K, used 179567K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 15 young (122880K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9396.055 GC heap after
{Heap after GC invocations=1759 (full 161):
garbage-first heap total 221184K, used 73717K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9407.617 GC heap before
{Heap before GC invocations=1759 (full 161):
garbage-first heap total 221184K, used 180213K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 15 young (122880K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9407.646 GC heap after
{Heap after GC invocations=1760 (full 161):
garbage-first heap total 221184K, used 73704K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Event: 9419.021 GC heap before
{Heap before GC invocations=1761 (full 161):
garbage-first heap total 221184K, used 180200K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 15 young (122880K), 2 survivors (16384K)
Metaspace used 39366K, committed 40256K, reserved 1114112K
class space used 3926K, committed 4416K, reserved 1048576K
}
Dll operation events (15 events):
Event: 0.016 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
Event: 0.065 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
Event: 0.087 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
Event: 0.089 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
Event: 0.100 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
Event: 0.328 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
Event: 0.701 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna11341475631960509829.dll
Event: 1.682 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
Event: 1.960 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
Event: 2.601 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
Event: 2.909 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
Event: 2.911 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
Event: 2.987 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-21990674729080000.dll
Event: 6.919 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
Event: 5407.301 Loaded shared library C:\Program Files\Java\jdk-21\bin\javajpeg.dll
Deoptimization events (20 events):
Event: 8457.221 Thread 0x00000294174b3e20 DEOPT PACKING pc=0x00000293b011925c sp=0x000000f3ec1ff0e0
Event: 8457.221 Thread 0x00000294174b3e20 DEOPT UNPACKING pc=0x00000293af4f46a2 sp=0x000000f3ec1fefd8 mode 2
Event: 8597.146 Thread 0x0000029416dacec0 DEOPT PACKING pc=0x00000293a848cbcc sp=0x000000f3ec9fc9f0
Event: 8597.146 Thread 0x0000029416dacec0 DEOPT UNPACKING pc=0x00000293af4f4e42 sp=0x000000f3ec9fbec8 mode 0
Event: 8597.301 Thread 0x0000029416ea0d50 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00000293b033f19c relative=0x0000000000001c1c
Event: 8597.301 Thread 0x0000029416ea0d50 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00000293b033f19c method=com.sun.crypto.provider.AESCrypt.makeSessionKey([B)V @ 538 c2
Event: 8597.301 Thread 0x0000029416ea0d50 DEOPT PACKING pc=0x00000293b033f19c sp=0x000000f3e99fe4a0
Event: 8597.301 Thread 0x0000029416ea0d50 DEOPT UNPACKING pc=0x00000293af4f46a2 sp=0x000000f3e99fe428 mode 2
Event: 9085.867 Thread 0x0000029416dacec0 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00000293b033f19c relative=0x0000000000001c1c
Event: 9085.867 Thread 0x0000029416dacec0 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00000293b033f19c method=com.sun.crypto.provider.AESCrypt.makeSessionKey([B)V @ 538 c2
Event: 9085.867 Thread 0x0000029416dacec0 DEOPT PACKING pc=0x00000293b033f19c sp=0x000000f3ec9fd190
Event: 9085.867 Thread 0x0000029416dacec0 DEOPT UNPACKING pc=0x00000293af4f46a2 sp=0x000000f3ec9fd118 mode 2
Event: 9085.872 Thread 0x0000029416dacec0 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00000293b033f19c relative=0x0000000000001c1c
Event: 9085.872 Thread 0x0000029416dacec0 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00000293b033f19c method=com.sun.crypto.provider.AESCrypt.makeSessionKey([B)V @ 538 c2
Event: 9085.872 Thread 0x0000029416dacec0 DEOPT PACKING pc=0x00000293b033f19c sp=0x000000f3ec9fca40
Event: 9085.872 Thread 0x0000029416dacec0 DEOPT UNPACKING pc=0x00000293af4f46a2 sp=0x000000f3ec9fc9c8 mode 2
Event: 9085.873 Thread 0x0000029416dacec0 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00000293b033f19c relative=0x0000000000001c1c
Event: 9085.873 Thread 0x0000029416dacec0 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00000293b033f19c method=com.sun.crypto.provider.AESCrypt.makeSessionKey([B)V @ 538 c2
Event: 9085.873 Thread 0x0000029416dacec0 DEOPT PACKING pc=0x00000293b033f19c sp=0x000000f3ec9fd0b0
Event: 9085.873 Thread 0x0000029416dacec0 DEOPT UNPACKING pc=0x00000293af4f46a2 sp=0x000000f3ec9fd038 mode 2
Classes loaded (20 events):
Event: 5407.295 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader
Event: 5407.297 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader done
Event: 5407.299 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$1
Event: 5407.300 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$1 done
Event: 5407.302 Loading class javax/imageio/plugins/jpeg/JPEGQTable
Event: 5407.302 Loading class javax/imageio/plugins/jpeg/JPEGQTable done
Event: 5407.302 Loading class javax/imageio/plugins/jpeg/JPEGHuffmanTable
Event: 5407.303 Loading class javax/imageio/plugins/jpeg/JPEGHuffmanTable done
Event: 5407.303 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock
Event: 5407.303 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock done
Event: 5407.303 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock$State
Event: 5407.303 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock$State done
Event: 5407.303 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$JPEGReaderDisposerRecord
Event: 5407.304 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$JPEGReaderDisposerRecord done
Event: 5407.304 Loading class javax/imageio/plugins/jpeg/JPEGImageReadParam
Event: 5407.304 Loading class javax/imageio/plugins/jpeg/JPEGImageReadParam done
Event: 5407.304 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer
Event: 5407.305 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer done
Event: 5407.305 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator
Event: 5407.305 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator done
Classes unloaded (11 events):
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a6000 'java/lang/invoke/LambdaForm$MH+0x00000293d12a6000'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a5800 'java/lang/invoke/LambdaForm$MH+0x00000293d12a5800'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a5000 'java/lang/invoke/LambdaForm$MH+0x00000293d12a5000'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a4800 'java/lang/invoke/LambdaForm$MH+0x00000293d12a4800'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a4000 'java/lang/invoke/LambdaForm$MH+0x00000293d12a4000'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a3800 'java/lang/invoke/LambdaForm$MH+0x00000293d12a3800'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a3000 'java/lang/invoke/LambdaForm$MH+0x00000293d12a3000'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a2800 'java/lang/invoke/LambdaForm$MH+0x00000293d12a2800'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a2000 'java/lang/invoke/LambdaForm$MH+0x00000293d12a2000'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a1800 'java/lang/invoke/LambdaForm$MH+0x00000293d12a1800'
Event: 23.245 Thread 0x00000293b83eeb30 Unloading class 0x00000293d12a1000 'java/lang/invoke/LambdaForm$MH+0x00000293d12a1000'
Classes redefined (0 events):
No events
Internal exceptions (20 events):
Event: 7328.344 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040e01c008}> (0x000000040e01c008)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7367.324 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c998}> (0x000000040a81c998)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7406.423 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c9d0}> (0x000000040901c9d0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7445.011 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c0f0}> (0x000000040a81c0f0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7472.317 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c3d8}> (0x000000040901c3d8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7521.340 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c108}> (0x000000040901c108)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7568.484 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81d430}> (0x000000040a81d430)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7859.035 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040902cca0}> (0x000000040902cca0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7913.719 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040aa18878}> (0x000000040aa18878)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 7963.096 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x00000004133c3318}> (0x00000004133c3318)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8012.692 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000041181fd50}> (0x000000041181fd50)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8058.561 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x0000000411828f68}> (0x0000000411828f68)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8104.696 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x0000000413036db8}> (0x0000000413036db8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8164.153 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f8226e8}> (0x000000040f8226e8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8258.731 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901cc08}> (0x000000040901cc08)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8423.907 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c028}> (0x000000040901c028)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8618.460 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040f81c1a8}> (0x000000040f81c1a8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 8681.269 Thread 0x0000029416e9ec80 Exception <a 'java/io/IOException'{0x000000040a753df0}> (0x000000040a753df0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 9141.650 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901c030}> (0x000000040901c030)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 9337.755 Thread 0x00000294174b3e20 Exception <a 'sun/nio/fs/WindowsException'{0x000000040e020108}> (0x000000040e020108)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
ZGC Phase Switch (0 events):
No events
VM Operations (20 events):
Event: 9372.709 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 9384.423 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 9384.455 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 9384.479 Executing VM operation: G1PauseRemark
Event: 9384.482 Executing VM operation: G1PauseRemark done
Event: 9384.488 Executing VM operation: G1PauseCleanup
Event: 9384.488 Executing VM operation: G1PauseCleanup done
Event: 9388.203 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation)
Event: 9388.203 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation) done
Event: 9388.203 Executing VM operation: RendezvousGCThreads
Event: 9388.203 Executing VM operation: RendezvousGCThreads done
Event: 9396.023 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 9396.055 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 9407.617 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 9407.646 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 9407.669 Executing VM operation: G1PauseRemark
Event: 9407.672 Executing VM operation: G1PauseRemark done
Event: 9407.679 Executing VM operation: G1PauseCleanup
Event: 9407.679 Executing VM operation: G1PauseCleanup done
Event: 9419.021 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Events (20 events):
Event: 9296.675 Thread 0x0000029416ea1a70 Thread exited: 0x0000029416ea1a70
Event: 9296.675 Thread 0x0000029416ea0d50 Thread exited: 0x0000029416ea0d50
Event: 9296.681 Thread 0x0000029416ea0030 Thread added: 0x0000029416ea0030
Event: 9296.681 Thread 0x0000029416ea0d50 Thread added: 0x0000029416ea0d50
Event: 9296.681 Thread 0x0000029416e9c520 Thread added: 0x0000029416e9c520
Event: 9296.681 Thread 0x0000029416ea13e0 Thread added: 0x0000029416ea13e0
Event: 9296.682 Thread 0x0000029416e9ec80 Thread added: 0x0000029416e9ec80
Event: 9296.682 Thread 0x0000029416ea2100 Thread added: 0x0000029416ea2100
Event: 9299.427 Thread 0x00000293b83eeb30 flushing nmethod 0x00000293a8453410
Event: 9299.427 Thread 0x00000293b83eeb30 flushing nmethod 0x00000293a87bef10
Event: 9337.161 Thread 0x0000029416ea13e0 Thread exited: 0x0000029416ea13e0
Event: 9337.163 Thread 0x0000029416ea0030 Thread exited: 0x0000029416ea0030
Event: 9337.163 Thread 0x0000029416e9ec80 Thread exited: 0x0000029416e9ec80
Event: 9337.168 Thread 0x0000029416ea0d50 Thread exited: 0x0000029416ea0d50
Event: 9337.169 Thread 0x0000029416e9c520 Thread exited: 0x0000029416e9c520
Event: 9337.211 Thread 0x0000029416ea2100 Thread exited: 0x0000029416ea2100
Event: 9337.759 Thread 0x0000029416ea0030 Thread added: 0x0000029416ea0030
Event: 9356.620 Thread 0x0000029415f9b680 Thread exited: 0x0000029415f9b680
Event: 9356.621 Thread 0x0000029415f967c0 Thread exited: 0x0000029415f967c0
Event: 9359.005 Thread 0x0000029415f95aa0 Thread exited: 0x0000029415f95aa0
Dynamic libraries:
0x00007ff6f5f60000 - 0x00007ff6f5f70000 C:\Program Files\Java\jdk-21\bin\java.exe
0x00007ffeb14d0000 - 0x00007ffeb16e7000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffeb04c0000 - 0x00007ffeb0584000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffeae6f0000 - 0x00007ffeaeac2000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffeaef20000 - 0x00007ffeaf031000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffe97c90000 - 0x00007ffe97ca9000 C:\Program Files\Java\jdk-21\bin\jli.dll
0x00007ffe8ce30000 - 0x00007ffe8ce4b000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
0x00007ffeafe30000 - 0x00007ffeafee1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffeb0590000 - 0x00007ffeb0637000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffeb0ac0000 - 0x00007ffeb0b68000 C:\WINDOWS\System32\sechost.dll
0x00007ffeaead0000 - 0x00007ffeaeaf8000 C:\WINDOWS\System32\bcrypt.dll
0x00007ffeb0640000 - 0x00007ffeb0754000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffeb07f0000 - 0x00007ffeb09a1000 C:\WINDOWS\System32\USER32.dll
0x00007ffeaeb00000 - 0x00007ffeaeb26000 C:\WINDOWS\System32\win32u.dll
0x00007ffe83da0000 - 0x00007ffe8403b000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da\COMCTL32.dll
0x00007ffeb10c0000 - 0x00007ffeb10e9000 C:\WINDOWS\System32\GDI32.dll
0x00007ffeae5c0000 - 0x00007ffeae6e3000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffeaf040000 - 0x00007ffeaf0da000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffeaa470000 - 0x00007ffeaa47a000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffeb1080000 - 0x00007ffeb10b1000 C:\WINDOWS\System32\IMM32.DLL
0x00007ffea7340000 - 0x00007ffea734c000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
0x00007ffe7fc50000 - 0x00007ffe7fcde000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
0x00007ffe2e380000 - 0x00007ffe2f09a000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
0x00007ffeaf490000 - 0x00007ffeaf501000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffeae4a0000 - 0x00007ffeae4ed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
0x00007ffea5860000 - 0x00007ffea5894000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffeae470000 - 0x00007ffeae483000 C:\WINDOWS\SYSTEM32\UMPDC.dll
0x00007ffead5f0000 - 0x00007ffead608000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
0x00007ffea18a0000 - 0x00007ffea18aa000 C:\Program Files\Java\jdk-21\bin\jimage.dll
0x00007ffea8110000 - 0x00007ffea8343000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
0x00007ffeb10f0000 - 0x00007ffeb1483000 C:\WINDOWS\System32\combase.dll
0x00007ffeaf160000 - 0x00007ffeaf237000 C:\WINDOWS\System32\OLEAUT32.dll
0x00007ffea7b20000 - 0x00007ffea7b52000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
0x00007ffeaf0e0000 - 0x00007ffeaf15b000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffe8cb90000 - 0x00007ffe8cbaf000 C:\Program Files\Java\jdk-21\bin\java.dll
0x00007ffeaf580000 - 0x00007ffeafe22000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffeaed20000 - 0x00007ffeaee5f000 C:\WINDOWS\System32\wintypes.dll
0x00007ffeac4f0000 - 0x00007ffeace0e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
0x00007ffeb09b0000 - 0x00007ffeb0abb000 C:\WINDOWS\System32\SHCORE.dll
0x00007ffeaf410000 - 0x00007ffeaf479000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffeae4f0000 - 0x00007ffeae51b000 C:\WINDOWS\SYSTEM32\profapi.dll
0x00007ffe7c7c0000 - 0x00007ffe7c897000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
0x00007ffea0fe0000 - 0x00007ffea0ff0000 C:\Program Files\Java\jdk-21\bin\net.dll
0x00007ffea8f70000 - 0x00007ffea909c000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
0x00007ffeada70000 - 0x00007ffeadad9000 C:\WINDOWS\system32\mswsock.dll
0x00007ffe89850000 - 0x00007ffe89866000 C:\Program Files\Java\jdk-21\bin\nio.dll
0x00007ffe80dc0000 - 0x00007ffe80dd8000 C:\Program Files\Java\jdk-21\bin\zip.dll
0x00007ffeadcd0000 - 0x00007ffeadceb000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffead550000 - 0x00007ffead587000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffeadb60000 - 0x00007ffeadb88000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffeadcc0000 - 0x00007ffeadccc000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffead070000 - 0x00007ffead09d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffeaffc0000 - 0x00007ffeaffc9000 C:\WINDOWS\System32\NSI.dll
0x00007ffe800c0000 - 0x00007ffe80109000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna11341475631960509829.dll
0x00007ffeaf480000 - 0x00007ffeaf488000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffea08b0000 - 0x00007ffea08c0000 C:\Program Files\Java\jdk-21\bin\verify.dll
0x00007ffea0e00000 - 0x00007ffea0e17000 C:\WINDOWS\system32\napinsp.dll
0x00007ffe9d720000 - 0x00007ffe9d73b000 C:\WINDOWS\system32\pnrpnsp.dll
0x00007ffead0e0000 - 0x00007ffead1d8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
0x00007ffea7750000 - 0x00007ffea7761000 C:\WINDOWS\System32\winrnr.dll
0x00007ffe9be40000 - 0x00007ffe9be5f000 C:\WINDOWS\system32\wshbth.dll
0x00007ffe9e7c0000 - 0x00007ffe9e7e1000 C:\WINDOWS\system32\nlansp_c.dll
0x00007ffea5ab0000 - 0x00007ffea5aba000 C:\Windows\System32\rasadhlp.dll
0x00007ffea84a0000 - 0x00007ffea8524000 C:\WINDOWS\System32\fwpuclnt.dll
0x00007ffe4dcb0000 - 0x00007ffe4e074000 C:\WINDOWS\SYSTEM32\nvcuda.dll
0x00007ffeabc50000 - 0x00007ffeabc87000 C:\WINDOWS\SYSTEM32\dxcore.dll
0x00007ffe2ada0000 - 0x00007ffe2cb09000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvcuda64.dll
0x00007ffeadd20000 - 0x00007ffeadd32000 C:\WINDOWS\SYSTEM32\msasn1.dll
0x00007ffea87a0000 - 0x00007ffea87d2000 C:\WINDOWS\SYSTEM32\cryptnet.dll
0x00007ffeaeb30000 - 0x00007ffeaec97000 C:\WINDOWS\System32\CRYPT32.dll
0x00007ffeadd90000 - 0x00007ffeadde0000 C:\WINDOWS\SYSTEM32\wldp.dll
0x00007ffea8580000 - 0x00007ffea86da000 C:\WINDOWS\SYSTEM32\drvstore.dll
0x00007ffeae190000 - 0x00007ffeae1bc000 C:\WINDOWS\SYSTEM32\devobj.dll
0x00007ffeae1c0000 - 0x00007ffeae20e000 C:\WINDOWS\SYSTEM32\CFGMGR32.dll
0x00007ffea3ae0000 - 0x00007ffea4055000 C:\WINDOWS\SYSTEM32\nvapi64.dll
0x00007ffeaffe0000 - 0x00007ffeb0454000 C:\WINDOWS\System32\SETUPAPI.dll
0x00007ffeb0d10000 - 0x00007ffeb0eb0000 C:\WINDOWS\System32\ole32.dll
0x00007ffe7e110000 - 0x00007ffe7e1a5000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvdxgdmal64.dll
0x00007ffe5ef60000 - 0x00007ffe5f082000 C:\WINDOWS\SYSTEM32\nvml.dll
0x00007ffe243d0000 - 0x00007ffe2522e000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvml.dll
0x00007ffe55210000 - 0x00007ffe5539f000 C:\Program Files\Java\jdk-21\bin\awt.dll
0x00007ffeab040000 - 0x00007ffeab0d8000 C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ffeabf90000 - 0x00007ffeabfbe000 C:\WINDOWS\system32\DWMAPI.DLL
0x00007ffeabb60000 - 0x00007ffeabc14000 C:\WINDOWS\system32\uxtheme.dll
0x00007ffe75360000 - 0x00007ffe75460000 C:\WINDOWS\system32\opengl32.dll
0x00007ffe80090000 - 0x00007ffe800bd000 C:\WINDOWS\SYSTEM32\GLU32.dll
0x00007ffeb0f20000 - 0x00007ffeb1080000 C:\WINDOWS\System32\MSCTF.dll
0x00007ffe8a090000 - 0x00007ffe8a238000 C:\WINDOWS\system32\d3d9.dll
0x00007ffeaeca0000 - 0x00007ffeaed1c000 C:\WINDOWS\System32\wintrust.dll
0x00007ffeaf560000 - 0x00007ffeaf57f000 C:\WINDOWS\System32\imagehlp.dll
0x00007ffea2850000 - 0x00007ffea289a000 C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll
0x00007ffe97700000 - 0x00007ffe977c2000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvldumdx.dll
0x00007ffe93a40000 - 0x00007ffe971da000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvgpucomp64.dll
0x00007ffe93960000 - 0x00007ffe93a37000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\NvMemMapStoragex.dll
0x00007ffe2f8c0000 - 0x00007ffe31987000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvd3dumx.dll
0x00007ffe8afe0000 - 0x00007ffe8b2e4000 C:\WINDOWS\system32\nvspcap64.dll
0x00007ffead700000 - 0x00007ffead734000 C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007ffeadb00000 - 0x00007ffeadb26000 C:\WINDOWS\SYSTEM32\gpapi.dll
0x00007ffe8ae20000 - 0x00007ffe8afd4000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvppex.dll
0x00007ffe9d520000 - 0x00007ffe9d52e000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
0x00007ffeade80000 - 0x00007ffeadead000 C:\WINDOWS\SYSTEM32\ncrypt.dll
0x00007ffeade40000 - 0x00007ffeade77000 C:\WINDOWS\SYSTEM32\NTASN1.dll
0x00007ffe7e240000 - 0x00007ffe7e2c7000 C:\Program Files\Java\jdk-21\bin\freetype.dll
0x00007ffe5c3a0000 - 0x00007ffe5c481000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
0x00007ffe9c810000 - 0x00007ffe9c816000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-21990674729080000.dll
0x00007ffe9c3a0000 - 0x00007ffe9c3a7000 C:\Program Files\Java\jdk-21\bin\jawt.dll
0x00007ffe83c00000 - 0x00007ffe83cb3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
0x00007ffeafef0000 - 0x00007ffeaffa0000 C:\WINDOWS\System32\clbcatq.dll
0x00007ffea8e60000 - 0x00007ffea8f69000 C:\WINDOWS\SYSTEM32\PROPSYS.dll
0x00007ffe5d800000 - 0x00007ffe5d81a000 C:\WINDOWS\system32\NetworkExplorer.dll
0x00007ffea0210000 - 0x00007ffea022e000 C:\WINDOWS\SYSTEM32\MPR.dll
0x00007ffe8cbc0000 - 0x00007ffe8cbeb000 C:\WINDOWS\System32\p9np.dll
0x00007ffe9f610000 - 0x00007ffe9f61c000 C:\WINDOWS\System32\drprov.dll
0x00007ffe9d700000 - 0x00007ffe9d719000 C:\WINDOWS\System32\ntlanman.dll
0x00007ffe9c920000 - 0x00007ffe9c93f000 C:\WINDOWS\System32\davclnt.dll
0x00007ffeae3f0000 - 0x00007ffeae45c000 C:\WINDOWS\System32\WINSTA.dll
0x00007ffea8ba0000 - 0x00007ffea8bba000 C:\WINDOWS\System32\wkscli.dll
0x00007ffe9ca40000 - 0x00007ffe9ca52000 C:\WINDOWS\SYSTEM32\cscapi.dll
0x00007ffead060000 - 0x00007ffead06c000 C:\WINDOWS\System32\netutils.dll
0x00007ffe89670000 - 0x00007ffe896ce000 C:\Windows\System32\dlnashext.dll
0x00007ffe8bd50000 - 0x00007ffe8bdb9000 C:\Windows\System32\PlayToDevice.dll
0x00007ffe9c820000 - 0x00007ffe9c841000 C:\Windows\System32\DevDispItemProvider.dll
0x00007ffea7b60000 - 0x00007ffea7bfe000 C:\WINDOWS\System32\MMDevApi.dll
0x00007ffe9c330000 - 0x00007ffe9c386000 C:\WINDOWS\SYSTEM32\rdpendp.dll
0x00007ffe8daf0000 - 0x00007ffe8dbb1000 C:\WINDOWS\SYSTEM32\TextShaping.dll
0x00007ffead3a0000 - 0x00007ffead3b4000 C:\WINDOWS\SYSTEM32\WTSAPI32.dll
0x00007ffe7ab80000 - 0x00007ffe7ac2a000 C:\WINDOWS\system32\wpdshext.dll
0x00007ffe9bc00000 - 0x00007ffe9bdc1000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8\gdiplus.dll
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8;C:\WINDOWS\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25050.5-0
VM Arguments:
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache0
java_class_path (initial): sheepit-client-7.25182.0.jar
Launcher Type: SUN_STANDARD
[Global flags]
intx CICompilerCount = 12 {product} {ergonomic}
uint ConcGCThreads = 4 {product} {ergonomic}
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
size_t InitialHeapSize = 1073741824 {product} {ergonomic}
size_t MarkStackSize = 4194304 {product} {ergonomic}
size_t MaxHeapSize = 17163091968 {product} {ergonomic}
size_t MaxNewSize = 10292822016 {product} {ergonomic}
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
size_t MinHeapSize = 8388608 {product} {ergonomic}
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
bool SegmentedCodeCache = true {product} {ergonomic}
size_t SoftMaxHeapSize = 17163091968 {manageable} {ergonomic}
bool UseCompressedOops = true {product lp64_product} {ergonomic}
bool UseG1GC = true {product} {ergonomic}
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags foldmultilines=false
#1: stderr all=off uptime,level,tags foldmultilines=false
Environment Variables:
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;C:\Program Files\Blender Foundation\Blender 4.4;
USERNAME=Nathan
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
TMP=C:\Users\Nathan\AppData\Local\Temp
TEMP=C:\Users\Nathan\AppData\Local\Temp
Periodic native trim disabled
--------------- S Y S T E M ---------------
OS:
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
OS uptime: 25 days 13:28 hours
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
Processor Information for all 20 processors :
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Memory: 4k page, system-wide physical 65446M (12945M free)
TotalPageFile size 79724M (AvailPageFile size 241M)
current process WorkingSet (physical memory assigned to process): 500M, peak: 1092M
current process commit charge ("private bytes"): 558M, peak: 1251M
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
END.

793
hs_err_pid44008.log Normal file
View File

@@ -0,0 +1,793 @@
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 427819008 bytes for G1 virtual space
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
# placed in the first 32GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (os_windows.cpp:3603), pid=44008, tid=39836
#
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache1
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 63G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
Time: Mon Jul 7 18:30:00 2025 Mountain Daylight Time elapsed time: 1584.203014 seconds (0d 0h 26m 24s)
--------------- T H R E A D ---------------
Current thread (0x00000152d034f020): VMThread "VM Thread" [id=39836, stack(0x00000046e7000000,0x00000046e7100000) (1024K)]
Stack: [0x00000046e7000000,0x00000046e7100000]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x6cae19]
V [jvm.dll+0x855741]
V [jvm.dll+0x857c6e]
V [jvm.dll+0x858343]
V [jvm.dll+0x27e0b6]
V [jvm.dll+0x6c7595]
V [jvm.dll+0x6bc0fa]
V [jvm.dll+0x353eaa]
V [jvm.dll+0x35bb26]
V [jvm.dll+0x3ae52e]
V [jvm.dll+0x3ae7d8]
V [jvm.dll+0x3281bc]
V [jvm.dll+0x328247]
V [jvm.dll+0x36cbcc]
V [jvm.dll+0x36b41e]
V [jvm.dll+0x327981]
V [jvm.dll+0x36ab3a]
V [jvm.dll+0x85e110]
V [jvm.dll+0x85f494]
V [jvm.dll+0x85f9d0]
V [jvm.dll+0x85fc73]
V [jvm.dll+0x7ffa1b]
V [jvm.dll+0x6c94fd]
C [ucrtbase.dll+0x29333]
C [KERNEL32.DLL+0x1259d]
C [ntdll.dll+0x5af78]
VM_Operation (0x00000046e67fe320): G1CollectForAllocation, mode: safepoint, requested by thread 0x00000153406d0be0
--------------- P R O C E S S ---------------
Threads class SMR info:
_java_thread_list=0x000001532ef8aff0, length=29, elements={
0x00000152d03673a0, 0x00000152d03682b0, 0x00000152d036aa70, 0x00000152d036d980,
0x00000152d036e3d0, 0x00000152d036ef50, 0x00000152d0382bb0, 0x00000152d03880f0,
0x00000152e76fbd90, 0x00000152e76ff640, 0x000001532db65180, 0x000001532da39fe0,
0x000001532dafa080, 0x000001532e234040, 0x000001532f323700, 0x000001532f3229e0,
0x000001532f325140, 0x000001532f324ab0, 0x000001532f325e60, 0x000001532f3257d0,
0x000001533f6b18a0, 0x000001533f6b4000, 0x000001533f6b4690, 0x000001533f6b2c50,
0x00000153417f1df0, 0x00000153417ef000, 0x00000153417ed5c0, 0x00000153406d0550,
0x00000153406d0be0
}
Java Threads: ( => current thread )
0x00000152d03673a0 JavaThread "Reference Handler" daemon [_thread_blocked, id=35124, stack(0x00000046e7100000,0x00000046e7200000) (1024K)]
0x00000152d03682b0 JavaThread "Finalizer" daemon [_thread_blocked, id=48852, stack(0x00000046e7200000,0x00000046e7300000) (1024K)]
0x00000152d036aa70 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=39592, stack(0x00000046e7300000,0x00000046e7400000) (1024K)]
0x00000152d036d980 JavaThread "Attach Listener" daemon [_thread_blocked, id=46176, stack(0x00000046e7400000,0x00000046e7500000) (1024K)]
0x00000152d036e3d0 JavaThread "Service Thread" daemon [_thread_blocked, id=39032, stack(0x00000046e7500000,0x00000046e7600000) (1024K)]
0x00000152d036ef50 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=42928, stack(0x00000046e7600000,0x00000046e7700000) (1024K)]
0x00000152d0382bb0 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=49428, stack(0x00000046e7700000,0x00000046e7800000) (1024K)]
0x00000152d03880f0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=40112, stack(0x00000046e7800000,0x00000046e7900000) (1024K)]
0x00000152e76fbd90 JavaThread "Notification Thread" daemon [_thread_blocked, id=45780, stack(0x00000046e7b00000,0x00000046e7c00000) (1024K)]
0x00000152e76ff640 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=41188, stack(0x00000046e7c00000,0x00000046e7d00000) (1024K)]
0x000001532db65180 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=46260, stack(0x00000046e7f00000,0x00000046e8000000) (1024K)]
0x000001532da39fe0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=48196, stack(0x00000046e7d00000,0x00000046e7e00000) (1024K)]
0x000001532dafa080 JavaThread "AWT-Windows" daemon [_thread_in_native, id=30204, stack(0x00000046e8000000,0x00000046e8100000) (1024K)]
0x000001532e234040 JavaThread "Timer-0" [_thread_blocked, id=36572, stack(0x00000046e9500000,0x00000046e9600000) (1024K)]
0x000001532f323700 JavaThread "TimerQueue" daemon [_thread_blocked, id=24028, stack(0x00000046e9800000,0x00000046e9900000) (1024K)]
0x000001532f3229e0 JavaThread "Swing-Shell" daemon [_thread_blocked, id=27644, stack(0x00000046e9100000,0x00000046e9200000) (1024K)]
0x000001532f325140 JavaThread "AWT-Shutdown" [_thread_blocked, id=43412, stack(0x00000046e9e00000,0x00000046e9f00000) (1024K)]
0x000001532f324ab0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=42424, stack(0x00000046e9f00000,0x00000046ea000000) (1024K)]
0x000001532f325e60 JavaThread "Thread-3" [_thread_in_native, id=47972, stack(0x00000046ea000000,0x00000046ea100000) (1024K)]
0x000001532f3257d0 JavaThread "DestroyJavaVM" [_thread_blocked, id=50676, stack(0x00000046e6900000,0x00000046e6a00000) (1024K)]
0x000001533f6b18a0 JavaThread "Thread-1" [_thread_blocked, id=45416, stack(0x00000046ea300000,0x00000046ea400000) (1024K)]
0x000001533f6b4000 JavaThread "Thread-4" [_thread_blocked, id=51500, stack(0x00000046ea400000,0x00000046ea500000) (1024K)]
0x000001533f6b4690 JavaThread "Timer-1" [_thread_blocked, id=46024, stack(0x00000046ea500000,0x00000046ea600000) (1024K)]
0x000001533f6b2c50 JavaThread "pool-4-thread-1" [_thread_blocked, id=45244, stack(0x00000046e7900000,0x00000046e7a00000) (1024K)]
0x00000153417f1df0 JavaThread "OkHttp client.sheepit-renderfarm.com" daemon [_thread_in_native, id=48732, stack(0x00000046ea600000,0x00000046ea700000) (1024K)]
0x00000153417ef000 JavaThread "OkHttp sheepit-main-weur-projects.sheepit-r2-binaries.win" daemon [_thread_in_native, id=50360, stack(0x00000046ea700000,0x00000046ea800000) (1024K)]
0x00000153417ed5c0 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=46160, stack(0x00000046eaa00000,0x00000046eab00000) (1024K)]
0x00000153406d0550 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=46208, stack(0x00000046eb800000,0x00000046eb900000) (1024K)]
0x00000153406d0be0 JavaThread "Timer-8" [_thread_blocked, id=51140, stack(0x00000046e6700000,0x00000046e6800000) (1024K)]
Total: 29
Other Threads:
=>0x00000152d034f020 VMThread "VM Thread" [id=39836, stack(0x00000046e7000000,0x00000046e7100000) (1024K)]
0x00000152d033e8b0 WatcherThread "VM Periodic Task Thread" [id=40796, stack(0x00000046e6f00000,0x00000046e7000000) (1024K)]
0x00000152b7b9ca10 WorkerThread "GC Thread#0" [id=43596, stack(0x00000046e6a00000,0x00000046e6b00000) (1024K)]
0x000001532dd1da00 WorkerThread "GC Thread#1" [id=35724, stack(0x00000046e8300000,0x00000046e8400000) (1024K)]
0x000001532db678a0 WorkerThread "GC Thread#2" [id=43504, stack(0x00000046e8400000,0x00000046e8500000) (1024K)]
0x000001532dbd5e20 WorkerThread "GC Thread#3" [id=43048, stack(0x00000046e8500000,0x00000046e8600000) (1024K)]
0x000001532db67c40 WorkerThread "GC Thread#4" [id=41396, stack(0x00000046e8600000,0x00000046e8700000) (1024K)]
0x000001532df58170 WorkerThread "GC Thread#5" [id=51596, stack(0x00000046e8700000,0x00000046e8800000) (1024K)]
0x000001532dd0c600 WorkerThread "GC Thread#6" [id=48532, stack(0x00000046e8800000,0x00000046e8900000) (1024K)]
0x000001532dd0c9a0 WorkerThread "GC Thread#7" [id=36512, stack(0x00000046e8900000,0x00000046e8a00000) (1024K)]
0x000001532dd0cd40 WorkerThread "GC Thread#8" [id=47280, stack(0x00000046e8a00000,0x00000046e8b00000) (1024K)]
0x000001532dd0d0e0 WorkerThread "GC Thread#9" [id=45344, stack(0x00000046e8b00000,0x00000046e8c00000) (1024K)]
0x000001532dcd4ad0 WorkerThread "GC Thread#10" [id=26256, stack(0x00000046e8c00000,0x00000046e8d00000) (1024K)]
0x000001532ddee110 WorkerThread "GC Thread#11" [id=50104, stack(0x00000046e8d00000,0x00000046e8e00000) (1024K)]
0x000001532ddeef90 WorkerThread "GC Thread#12" [id=41008, stack(0x00000046e8e00000,0x00000046e8f00000) (1024K)]
0x000001532ddef330 WorkerThread "GC Thread#13" [id=52000, stack(0x00000046e8f00000,0x00000046e9000000) (1024K)]
0x000001532ddef6d0 WorkerThread "GC Thread#14" [id=48580, stack(0x00000046e9000000,0x00000046e9100000) (1024K)]
0x00000152d0210b60 ConcurrentGCThread "G1 Main Marker" [id=42304, stack(0x00000046e6b00000,0x00000046e6c00000) (1024K)]
0x00000152b6185c20 WorkerThread "G1 Conc#0" [id=34976, stack(0x00000046e6c00000,0x00000046e6d00000) (1024K)]
0x000001532e64b5f0 WorkerThread "G1 Conc#1" [id=49464, stack(0x00000046e7e00000,0x00000046e7f00000) (1024K)]
0x000001532e64bd30 WorkerThread "G1 Conc#2" [id=32844, stack(0x00000046e7a00000,0x00000046e7b00000) (1024K)]
0x000001532e64cf50 WorkerThread "G1 Conc#3" [id=1752, stack(0x00000046e9700000,0x00000046e9800000) (1024K)]
0x00000152d027e800 ConcurrentGCThread "G1 Refine#0" [id=32772, stack(0x00000046e6d00000,0x00000046e6e00000) (1024K)]
0x00000152d027f180 ConcurrentGCThread "G1 Service" [id=49624, stack(0x00000046e6e00000,0x00000046e6f00000) (1024K)]
Total: 24
Threads with active compile tasks:
Total: 0
VM state: at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007ffe2f32de50] Threads_lock - owner thread: 0x00000152d034f020
[0x00007ffe2f32df50] Heap_lock - owner thread: 0x00000153406d0be0
Heap address: 0x0000000401000000, size: 16368 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
CDS archive(s) mapped at: [0x00000152e8000000-0x00000152e8c90000-0x00000152e8c90000), size 13172736, SharedBaseAddress: 0x00000152e8000000, ArchiveRelocationMode: 1.
Compressed class space mapped at: 0x00000152e9000000-0x0000015329000000, reserved size: 1073741824
Narrow klass base: 0x00000152e8000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
GC Precious Log:
CardTable entry size: 512
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
CPUs: 20 total, 20 available
Memory: 65446M
Large Page Support: Disabled
NUMA Support: Disabled
Compressed Oops: Enabled (Zero based)
Heap Region Size: 8M
Heap Min Capacity: 8M
Heap Initial Capacity: 1G
Heap Max Capacity: 16368M
Pre-touch: Disabled
Parallel Workers: 15
Concurrent Workers: 4
Concurrent Refinement Workers: 15
Periodic GC: Disabled
Heap:
garbage-first heap total 221184K, used 70536K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
| 0|0x0000000401000000, 0x00000004017ffff8, 0x0000000401800000| 99%| O| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked
| 1|0x0000000401800000, 0x0000000402000000, 0x0000000402000000|100%| O| |TAMS 0x0000000401800000| PB 0x0000000401800000| Untracked
| 2|0x0000000402000000, 0x0000000402000000, 0x0000000402800000| 0%| F| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked
| 3|0x0000000402800000, 0x0000000402f04fc0, 0x0000000403000000| 87%| O| |TAMS 0x0000000402800000| PB 0x0000000402800000| Untracked
| 4|0x0000000403000000, 0x000000040308c368, 0x0000000403800000| 6%| O| |TAMS 0x0000000403000000| PB 0x0000000403000000| Untracked
| 5|0x0000000403800000, 0x0000000403800000, 0x0000000404000000| 0%| F| |TAMS 0x0000000403800000| PB 0x0000000403800000| Untracked
| 6|0x0000000404000000, 0x0000000404000000, 0x0000000404800000| 0%| F| |TAMS 0x0000000404000000| PB 0x0000000404000000| Untracked
| 7|0x0000000404800000, 0x0000000405000000, 0x0000000405000000|100%|HS| |TAMS 0x0000000404800000| PB 0x0000000404800000| Complete
| 8|0x0000000405000000, 0x0000000405800000, 0x0000000405800000|100%|HC| |TAMS 0x0000000405000000| PB 0x0000000405000000| Complete
| 9|0x0000000405800000, 0x0000000406000000, 0x0000000406000000|100%|HC| |TAMS 0x0000000405800000| PB 0x0000000405800000| Complete
| 10|0x0000000406000000, 0x0000000406800000, 0x0000000406800000|100%|HC| |TAMS 0x0000000406000000| PB 0x0000000406000000| Complete
| 11|0x0000000406800000, 0x0000000406d50ee0, 0x0000000407000000| 66%| S|CS|TAMS 0x0000000406800000| PB 0x0000000406800000| Complete
| 12|0x0000000407000000, 0x0000000407000000, 0x0000000407800000| 0%| F| |TAMS 0x0000000407000000| PB 0x0000000407000000| Untracked
| 13|0x0000000407800000, 0x0000000408000000, 0x0000000408000000|100%| S|CS|TAMS 0x0000000407800000| PB 0x0000000407800000| Complete
| 14|0x0000000408000000, 0x0000000408000000, 0x0000000408800000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked
| 15|0x0000000408800000, 0x0000000408800000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408800000| PB 0x0000000408800000| Untracked
| 16|0x0000000409000000, 0x0000000409000000, 0x0000000409800000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked
| 17|0x0000000409800000, 0x0000000409800000, 0x000000040a000000| 0%| F| |TAMS 0x0000000409800000| PB 0x0000000409800000| Untracked
| 18|0x000000040a000000, 0x000000040a000000, 0x000000040a800000| 0%| F| |TAMS 0x000000040a000000| PB 0x000000040a000000| Untracked
| 19|0x000000040a800000, 0x000000040a800000, 0x000000040b000000| 0%| F| |TAMS 0x000000040a800000| PB 0x000000040a800000| Untracked
| 20|0x000000040b000000, 0x000000040b000000, 0x000000040b800000| 0%| F| |TAMS 0x000000040b000000| PB 0x000000040b000000| Untracked
| 21|0x000000040b800000, 0x000000040b800000, 0x000000040c000000| 0%| F| |TAMS 0x000000040b800000| PB 0x000000040b800000| Untracked
| 22|0x000000040c000000, 0x000000040c000000, 0x000000040c800000| 0%| F| |TAMS 0x000000040c000000| PB 0x000000040c000000| Untracked
| 23|0x000000040c800000, 0x000000040c800000, 0x000000040d000000| 0%| F| |TAMS 0x000000040c800000| PB 0x000000040c800000| Untracked
| 24|0x000000040d000000, 0x000000040d000000, 0x000000040d800000| 0%| F| |TAMS 0x000000040d000000| PB 0x000000040d000000| Untracked
| 25|0x000000040d800000, 0x000000040d800000, 0x000000040e000000| 0%| F| |TAMS 0x000000040d800000| PB 0x000000040d800000| Untracked
| 26|0x000000040e000000, 0x000000040e000000, 0x000000040e800000| 0%| F| |TAMS 0x000000040e000000| PB 0x000000040e000000| Untracked
Card table byte_map: [0x00000152d2390000,0x00000152d4390000] _byte_map_base: 0x00000152d0388000
Marking Bits: (CMBitMap*) 0x00000152d02102b0
Bits: [0x00000152d4390000, 0x00000152e4350000)
Polling page: 0x00000152b6310000
Metaspace:
Usage:
Non-class: 32.63 MB used.
Class: 3.76 MB used.
Both: 36.39 MB used.
Virtual space:
Non-class space: 64.00 MB reserved, 33.06 MB ( 52%) committed, 1 nodes.
Class space: 1.00 GB reserved, 4.19 MB ( <1%) committed, 1 nodes.
Both: 1.06 GB reserved, 37.25 MB ( 3%) committed.
Chunk freelists:
Non-Class: 14.67 MB
Class: 11.69 MB
Both: 26.37 MB
MaxMetaspaceSize: unlimited
CompressedClassSpaceSize: 1.00 GB
Initial GC threshold: 21.00 MB
Current GC threshold: 61.88 MB
CDS: on
- commit_granule_bytes: 65536.
- commit_granule_words: 8192.
- virtual_space_node_default_size: 8388608.
- enlarge_chunks_in_place: 1.
- use_allocation_guard: 0.
Internal statistics:
num_allocs_failed_limit: 3.
num_arena_births: 1464.
num_arena_deaths: 22.
num_vsnodes_births: 2.
num_vsnodes_deaths: 0.
num_space_committed: 595.
num_space_uncommitted: 0.
num_chunks_returned_to_freelist: 31.
num_chunks_taken_from_freelist: 2501.
num_chunk_merges: 0.
num_chunk_splits: 1514.
num_chunks_enlarged: 724.
num_inconsistent_stats: 0.
CodeHeap 'non-profiled nmethods': size=119168Kb used=6968Kb max_used=6971Kb free=112199Kb
bounds [0x00000152c7b50000, 0x00000152c8260000, 0x00000152cefb0000]
CodeHeap 'profiled nmethods': size=119104Kb used=5951Kb max_used=12167Kb free=113152Kb
bounds [0x00000152bffb0000, 0x00000152c0ba0000, 0x00000152c7400000]
CodeHeap 'non-nmethods': size=7488Kb used=2022Kb max_used=3770Kb free=5465Kb
bounds [0x00000152c7400000, 0x00000152c77c0000, 0x00000152c7b50000]
total_blobs=4927 nmethods=3957 adapters=874
compilation: enabled
stopped_count=0, restarted_count=0
full_count=0
Compilation events (20 events):
Event: 1554.544 Thread 0x00000152d03880f0 17529 % 3 oshi.driver.windows.registry.ProcessPerformanceData::buildProcessMapFromRegistry @ 58 (331 bytes)
Event: 1554.546 Thread 0x00000152d03880f0 nmethod 17529% 0x00000152c069ef10 code [0x00000152c069f380, 0x00000152c06a1b88]
Event: 1555.544 Thread 0x00000152d03880f0 17530 3 oshi.driver.windows.registry.ProcessPerformanceData::buildProcessMapFromRegistry (331 bytes)
Event: 1555.547 Thread 0x00000152d03880f0 nmethod 17530 0x00000152c069b910 code [0x00000152c069bd60, 0x00000152c069e3f8]
Event: 1559.157 Thread 0x00000152d0382bb0 17531 4 java.lang.invoke.LambdaForm$DMH/0x00000152e9430000::newInvokeSpecial (27 bytes)
Event: 1559.158 Thread 0x00000152d0382bb0 nmethod 17531 0x00000152c80c7710 code [0x00000152c80c78a0, 0x00000152c80c7968]
Event: 1564.546 Thread 0x00000152d0382bb0 17532 4 java.lang.invoke.LambdaForm$DMH/0x00000152e9430400::newInvokeSpecial (27 bytes)
Event: 1564.548 Thread 0x00000152d0382bb0 nmethod 17532 0x00000152c7fbf690 code [0x00000152c7fbf820, 0x00000152c7fbf938]
Event: 1564.548 Thread 0x00000152d0382bb0 17533 4 java.lang.invoke.LambdaForm$MH/0x00000152e9430800::invoke (42 bytes)
Event: 1564.549 Thread 0x00000152d0382bb0 nmethod 17533 0x00000152c7fbf210 code [0x00000152c7fbf3a0, 0x00000152c7fbf440]
Event: 1564.744 Thread 0x00000152d0382bb0 17534 4 java.lang.invoke.LambdaForm$MH/0x00000152e9433800::invoke (63 bytes)
Event: 1564.747 Thread 0x00000152d0382bb0 nmethod 17534 0x00000152c7bd7890 code [0x00000152c7bd7a20, 0x00000152c7bd7bf8]
Event: 1564.747 Thread 0x00000152d0382bb0 17535 4 java.lang.invoke.LambdaForm$MH/0x00000152e9434c00::invoke (45 bytes)
Event: 1564.748 Thread 0x00000152d0382bb0 nmethod 17535 0x00000152c7bd7490 code [0x00000152c7bd7620, 0x00000152c7bd76c8]
Event: 1581.830 Thread 0x00000152d0382bb0 17536 4 sun.awt.image.BufferedImageGraphicsConfig::getDefaultTransform (12 bytes)
Event: 1581.831 Thread 0x00000152d0382bb0 nmethod 17536 0x00000152c7ce7410 code [0x00000152c7ce75c0, 0x00000152c7ce7778]
Event: 1582.287 Thread 0x00000152d03880f0 17537 3 java.lang.invoke.DirectMethodHandle$Holder::newInvokeSpecial (21 bytes)
Event: 1582.287 Thread 0x00000152d0382bb0 17538 4 java.util.regex.Pattern$Node::<init> (12 bytes)
Event: 1582.288 Thread 0x00000152d03880f0 nmethod 17537 0x00000152c009e890 code [0x00000152c009ea80, 0x00000152c009f020]
Event: 1582.289 Thread 0x00000152d0382bb0 nmethod 17538 0x00000152c7ce6f90 code [0x00000152c7ce7120, 0x00000152c7ce7278]
GC Heap History (20 events):
Event: 1517.827 GC heap after
{Heap after GC invocations=378 (full 18):
garbage-first heap total 344064K, used 58438K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1519.805 GC heap before
{Heap before GC invocations=379 (full 18):
garbage-first heap total 278528K, used 205894K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 20 young (163840K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1519.806 GC heap after
{Heap after GC invocations=380 (full 18):
garbage-first heap total 278528K, used 58434K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1521.806 GC heap before
{Heap before GC invocations=380 (full 18):
garbage-first heap total 278528K, used 205890K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 20 young (163840K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1521.808 GC heap after
{Heap after GC invocations=381 (full 18):
garbage-first heap total 278528K, used 58441K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1523.869 GC heap before
{Heap before GC invocations=381 (full 18):
garbage-first heap total 278528K, used 205897K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 20 young (163840K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1523.870 GC heap after
{Heap after GC invocations=382 (full 18):
garbage-first heap total 278528K, used 58441K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1525.805 GC heap before
{Heap before GC invocations=383 (full 18):
garbage-first heap total 278528K, used 197705K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 20 young (163840K), 1 survivors (8192K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1525.868 GC heap after
{Heap after GC invocations=384 (full 19):
garbage-first heap total 221184K, used 56792K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1525.868 GC heap before
{Heap before GC invocations=384 (full 19):
garbage-first heap total 221184K, used 56792K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 1 young (8192K), 0 survivors (0K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1525.927 GC heap after
{Heap after GC invocations=385 (full 20):
garbage-first heap total 221184K, used 56792K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 0 young (0K), 0 survivors (0K)
Metaspace used 37259K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1541.554 GC heap before
{Heap before GC invocations=385 (full 20):
garbage-first heap total 221184K, used 187864K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 16 young (131072K), 0 survivors (0K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1541.593 GC heap after
{Heap after GC invocations=386 (full 20):
garbage-first heap total 221184K, used 72756K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1552.354 GC heap before
{Heap before GC invocations=387 (full 20):
garbage-first heap total 221184K, used 179252K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 15 young (122880K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1552.387 GC heap after
{Heap after GC invocations=388 (full 20):
garbage-first heap total 221184K, used 69910K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1562.355 GC heap before
{Heap before GC invocations=388 (full 20):
garbage-first heap total 221184K, used 168214K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 14 young (114688K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1562.383 GC heap after
{Heap after GC invocations=389 (full 20):
garbage-first heap total 221184K, used 69159K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1573.357 GC heap before
{Heap before GC invocations=389 (full 20):
garbage-first heap total 221184K, used 175655K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 15 young (122880K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1573.393 GC heap after
{Heap after GC invocations=390 (full 20):
garbage-first heap total 221184K, used 70431K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 2 young (16384K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Event: 1584.159 GC heap before
{Heap before GC invocations=391 (full 20):
garbage-first heap total 221184K, used 176927K [0x0000000401000000, 0x0000000800000000)
region size 8192K, 15 young (122880K), 2 survivors (16384K)
Metaspace used 37261K, committed 38144K, reserved 1114112K
class space used 3851K, committed 4288K, reserved 1048576K
}
Dll operation events (14 events):
Event: 0.009 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
Event: 0.047 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
Event: 0.066 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
Event: 0.068 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
Event: 0.078 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
Event: 0.301 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
Event: 0.658 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna1333072664285076348.dll
Event: 1.677 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
Event: 3.307 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
Event: 3.944 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
Event: 4.225 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
Event: 4.226 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
Event: 4.290 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-23097542372236000.dll
Event: 7.917 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
Deoptimization events (20 events):
Event: 1463.458 Thread 0x000001533f6b4000 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000152c7c73018 relative=0x00000000000012b8
Event: 1463.458 Thread 0x000001533f6b4000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000152c7c73018 method=sun.awt.image.OffScreenImageSource.sendPixels()V @ 663 c2
Event: 1463.458 Thread 0x000001533f6b4000 DEOPT PACKING pc=0x00000152c7c73018 sp=0x00000046ea4fea10
Event: 1463.458 Thread 0x000001533f6b4000 DEOPT UNPACKING pc=0x00000152c74546a2 sp=0x00000046ea4fe9e8 mode 2
Event: 1463.458 Thread 0x000001532f324ab0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000152c813bef4 relative=0x0000000000001914
Event: 1463.458 Thread 0x000001532f324ab0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000152c813bef4 method=java.awt.GridBagLayout.ArrangeGrid(Ljava/awt/Container;)V @ 115 c2
Event: 1463.458 Thread 0x000001532f324ab0 DEOPT PACKING pc=0x00000152c813bef4 sp=0x00000046e9ffe920
Event: 1463.458 Thread 0x000001532f324ab0 DEOPT UNPACKING pc=0x00000152c74546a2 sp=0x00000046e9ffe8d8 mode 2
Event: 1472.664 Thread 0x000001532f324ab0 DEOPT PACKING pc=0x00000152c04a10bf sp=0x00000046e9ffe920
Event: 1472.664 Thread 0x000001532f324ab0 DEOPT UNPACKING pc=0x00000152c7454e42 sp=0x00000046e9ffddd8 mode 0
Event: 1477.609 Thread 0x00000153406d39d0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000152c7e3089c relative=0x0000000000000a5c
Event: 1477.609 Thread 0x00000153406d39d0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000152c7e3089c method=javax.swing.text.SegmentCache.getSegment()Ljavax/swing/text/Segment; @ 15 c2
Event: 1477.609 Thread 0x00000153406d39d0 DEOPT PACKING pc=0x00000152c7e3089c sp=0x00000046eb6fe5e0
Event: 1477.609 Thread 0x00000153406d39d0 DEOPT UNPACKING pc=0x00000152c74546a2 sp=0x00000046eb6fe4c8 mode 2
Event: 1477.687 Thread 0x00000153406d3340 DEOPT PACKING pc=0x00000152c072b612 sp=0x00000046eadfeb40
Event: 1477.687 Thread 0x00000153406d3340 DEOPT UNPACKING pc=0x00000152c7454e42 sp=0x00000046eadfe060 mode 0
Event: 1553.744 Thread 0x00000153406d0be0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000152c7cb23f0 relative=0x0000000000001470
Event: 1553.744 Thread 0x00000153406d0be0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000152c7cb23f0 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 109 c2
Event: 1553.744 Thread 0x00000153406d0be0 DEOPT PACKING pc=0x00000152c7cb23f0 sp=0x00000046e67feff0
Event: 1553.744 Thread 0x00000153406d0be0 DEOPT UNPACKING pc=0x00000152c74546a2 sp=0x00000046e67fee90 mode 2
Classes loaded (20 events):
Event: 841.510 Loading class java/awt/image/ReplicateScaleFilter
Event: 841.510 Loading class java/awt/image/ReplicateScaleFilter done
Event: 841.510 Loading class java/awt/image/FilteredImageSource
Event: 841.511 Loading class java/awt/image/FilteredImageSource done
Event: 841.511 Loading class sun/awt/image/OffScreenImageSource
Event: 841.511 Loading class sun/awt/image/OffScreenImageSource done
Event: 841.513 Loading class sun/awt/image/InputStreamImageSource
Event: 841.513 Loading class sun/awt/image/ImageFetchable
Event: 841.513 Loading class sun/awt/image/ImageFetchable done
Event: 841.514 Loading class sun/awt/image/InputStreamImageSource done
Event: 841.514 Loading class sun/awt/image/ImageRepresentation
Event: 841.514 Loading class sun/awt/image/ImageWatched
Event: 841.514 Loading class sun/awt/image/ImageWatched done
Event: 841.514 Loading class sun/awt/image/ImageRepresentation done
Event: 841.515 Loading class sun/awt/image/ImageWatched$Link
Event: 841.515 Loading class sun/awt/image/ImageWatched$Link done
Event: 1126.268 Loading class java/util/concurrent/ConcurrentHashMap$TreeNode
Event: 1126.268 Loading class java/util/concurrent/ConcurrentHashMap$TreeNode done
Event: 1126.268 Loading class java/util/concurrent/ConcurrentHashMap$TreeBin
Event: 1126.269 Loading class java/util/concurrent/ConcurrentHashMap$TreeBin done
Classes unloaded (11 events):
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e92a2800 'java/lang/invoke/LambdaForm$MH+0x00000152e92a2800'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e92a2000 'java/lang/invoke/LambdaForm$MH+0x00000152e92a2000'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e92a1800 'java/lang/invoke/LambdaForm$MH+0x00000152e92a1800'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e92a1400 'java/lang/invoke/LambdaForm$MH+0x00000152e92a1400'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e92a0800 'java/lang/invoke/LambdaForm$MH+0x00000152e92a0800'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e92a0000 'java/lang/invoke/LambdaForm$MH+0x00000152e92a0000'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e929f800 'java/lang/invoke/LambdaForm$MH+0x00000152e929f800'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e929f000 'java/lang/invoke/LambdaForm$MH+0x00000152e929f000'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e929e800 'java/lang/invoke/LambdaForm$MH+0x00000152e929e800'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e929e000 'java/lang/invoke/LambdaForm$MH+0x00000152e929e000'
Event: 37.993 Thread 0x00000152d034f020 Unloading class 0x00000152e929d800 'java/lang/invoke/LambdaForm$MH+0x00000152e929d800'
Classes redefined (0 events):
No events
Internal exceptions (20 events):
Event: 838.883 Thread 0x000001533f6b4000 Implicit null exception at 0x00000152c7c28c32 to 0x00000152c7c29dd4
Event: 839.029 Thread 0x000001533f6b4000 Implicit null exception at 0x00000152c7c28c32 to 0x00000152c7c29dd4
Event: 839.040 Thread 0x000001533f6b4000 Implicit null exception at 0x00000152c7c28c32 to 0x00000152c7c29dd4
Event: 844.871 Thread 0x000001532f325e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000040781c6e8}> (0x000000040781c6e8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 890.552 Thread 0x000001532f325e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000040781c7f8}> (0x000000040781c7f8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1157.988 Thread 0x00000153406cf830 Exception <a 'java/io/IOException'{0x0000000418000068}> (0x0000000418000068)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1458.895 Thread 0x00000153406d4d80 Implicit null exception at 0x00000152c071f2fa to 0x00000152c071fee4
Event: 1458.895 Thread 0x00000153406d4d80 Exception <a 'java/lang/NullPointerException'{0x0000000427d3e440}> (0x0000000427d3e440)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 1458.895 Thread 0x00000153417eb4f0 Exception <a 'java/io/IOException'{0x0000000427e7c368}> (0x0000000427e7c368)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1458.903 Thread 0x00000153406ce480 Implicit null exception at 0x00000152c071f2fa to 0x00000152c071fee4
Event: 1458.903 Thread 0x00000153406ce480 Exception <a 'java/lang/NullPointerException'{0x0000000427e110e8}> (0x0000000427e110e8)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 1458.903 Thread 0x00000153417eb4f0 Exception <a 'java/io/IOException'{0x0000000427e81fa0}> (0x0000000427e81fa0)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1458.911 Thread 0x00000153417eb4f0 Exception <a 'java/io/IOException'{0x0000000427e87868}> (0x0000000427e87868)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1458.916 Thread 0x00000153406d46f0 Implicit null exception at 0x00000152c071f2fa to 0x00000152c071fee4
Event: 1458.916 Thread 0x00000153406d46f0 Exception <a 'java/lang/NullPointerException'{0x0000000427e42008}> (0x0000000427e42008)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 1458.922 Thread 0x00000153417f2480 Exception <a 'java/io/IOException'{0x0000000427fcf840}> (0x0000000427fcf840)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1458.928 Thread 0x00000153406d1900 Implicit null exception at 0x00000152c071f2fa to 0x00000152c071fee4
Event: 1458.928 Thread 0x00000153406d1900 Exception <a 'java/lang/NullPointerException'{0x0000000427922518}> (0x0000000427922518)
thrown [s\open\src\hotspot\share\runtime\sharedRuntime.cpp, line 625]
Event: 1458.935 Thread 0x00000153417eb4f0 Exception <a 'java/io/IOException'{0x0000000427e8d770}> (0x0000000427e8d770)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
Event: 1526.002 Thread 0x000001532f325e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000040e01c3f8}> (0x000000040e01c3f8)
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
ZGC Phase Switch (0 events):
No events
VM Operations (20 events):
Event: 1541.638 Executing VM operation: G1PauseRemark done
Event: 1541.643 Executing VM operation: G1PauseCleanup
Event: 1541.643 Executing VM operation: G1PauseCleanup done
Event: 1552.354 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 1552.387 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 1562.355 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 1562.383 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 1564.521 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation)
Event: 1564.521 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation) done
Event: 1564.521 Executing VM operation: RendezvousGCThreads
Event: 1564.521 Executing VM operation: RendezvousGCThreads done
Event: 1573.357 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Event: 1573.393 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
Event: 1573.426 Executing VM operation: G1PauseRemark
Event: 1573.429 Executing VM operation: G1PauseRemark done
Event: 1573.437 Executing VM operation: G1PauseCleanup
Event: 1573.437 Executing VM operation: G1PauseCleanup done
Event: 1582.445 Executing VM operation: Cleanup
Event: 1582.445 Executing VM operation: Cleanup done
Event: 1584.159 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
Events (20 events):
Event: 1525.797 Thread 0x00000153406cf1a0 Thread exited: 0x00000153406cf1a0
Event: 1525.797 Thread 0x00000153406d1900 Thread exited: 0x00000153406d1900
Event: 1525.805 Thread 0x00000153406d0be0 Thread exited: 0x00000153406d0be0
Event: 1526.007 Thread 0x00000153406d0be0 Thread added: 0x00000153406d0be0
Event: 1526.008 Thread 0x000001532f2afc80 Thread added: 0x000001532f2afc80
Event: 1527.831 Thread 0x000001532f2afc80 Thread exited: 0x000001532f2afc80
Event: 1532.105 Thread 0x00000153417eb4f0 Thread exited: 0x00000153417eb4f0
Event: 1540.809 Thread 0x00000153417f2480 Thread exited: 0x00000153417f2480
Event: 1553.365 Thread 0x00000153417ebb80 Thread exited: 0x00000153417ebb80
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c082e410
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0897810
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0898310
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c089a410
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0b33b10
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0641490
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0a9e110
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c037a990
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0614210
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0616b90
Event: 1573.429 Thread 0x00000152d034f020 flushing nmethod 0x00000152c0668590
Dynamic libraries:
0x00007ff6f5f60000 - 0x00007ff6f5f70000 C:\Program Files\Java\jdk-21\bin\java.exe
0x00007ffeb14d0000 - 0x00007ffeb16e7000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffeb04c0000 - 0x00007ffeb0584000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffeae6f0000 - 0x00007ffeaeac2000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffeaef20000 - 0x00007ffeaf031000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffe8bcc0000 - 0x00007ffe8bcd9000 C:\Program Files\Java\jdk-21\bin\jli.dll
0x00007ffea08c0000 - 0x00007ffea08db000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
0x00007ffeafe30000 - 0x00007ffeafee1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffeb0590000 - 0x00007ffeb0637000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffeb0ac0000 - 0x00007ffeb0b68000 C:\WINDOWS\System32\sechost.dll
0x00007ffeaead0000 - 0x00007ffeaeaf8000 C:\WINDOWS\System32\bcrypt.dll
0x00007ffeb0640000 - 0x00007ffeb0754000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffeb07f0000 - 0x00007ffeb09a1000 C:\WINDOWS\System32\USER32.dll
0x00007ffe83da0000 - 0x00007ffe8403b000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da\COMCTL32.dll
0x00007ffeaeb00000 - 0x00007ffeaeb26000 C:\WINDOWS\System32\win32u.dll
0x00007ffeb10c0000 - 0x00007ffeb10e9000 C:\WINDOWS\System32\GDI32.dll
0x00007ffeae5c0000 - 0x00007ffeae6e3000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffeaf040000 - 0x00007ffeaf0da000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffeaa470000 - 0x00007ffeaa47a000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffeb1080000 - 0x00007ffeb10b1000 C:\WINDOWS\System32\IMM32.DLL
0x00007ffe9c810000 - 0x00007ffe9c81c000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
0x00007ffe7ede0000 - 0x00007ffe7ee6e000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
0x00007ffe2e6f0000 - 0x00007ffe2f40a000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
0x00007ffeaf490000 - 0x00007ffeaf501000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffeae4a0000 - 0x00007ffeae4ed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
0x00007ffea5860000 - 0x00007ffea5894000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffeae470000 - 0x00007ffeae483000 C:\WINDOWS\SYSTEM32\UMPDC.dll
0x00007ffead5f0000 - 0x00007ffead608000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
0x00007ffe9b420000 - 0x00007ffe9b42a000 C:\Program Files\Java\jdk-21\bin\jimage.dll
0x00007ffea8110000 - 0x00007ffea8343000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
0x00007ffeb10f0000 - 0x00007ffeb1483000 C:\WINDOWS\System32\combase.dll
0x00007ffeaf160000 - 0x00007ffeaf237000 C:\WINDOWS\System32\OLEAUT32.dll
0x00007ffea7b20000 - 0x00007ffea7b52000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
0x00007ffeaf0e0000 - 0x00007ffeaf15b000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffe89830000 - 0x00007ffe8984f000 C:\Program Files\Java\jdk-21\bin\java.dll
0x00007ffeaf580000 - 0x00007ffeafe22000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffeaed20000 - 0x00007ffeaee5f000 C:\WINDOWS\System32\wintypes.dll
0x00007ffeac4f0000 - 0x00007ffeace0e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
0x00007ffeb09b0000 - 0x00007ffeb0abb000 C:\WINDOWS\System32\SHCORE.dll
0x00007ffeaf410000 - 0x00007ffeaf479000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffeae4f0000 - 0x00007ffeae51b000 C:\WINDOWS\SYSTEM32\profapi.dll
0x00007ffe7c7c0000 - 0x00007ffe7c897000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
0x00007ffe8ca90000 - 0x00007ffe8caa0000 C:\Program Files\Java\jdk-21\bin\net.dll
0x00007ffea8f70000 - 0x00007ffea909c000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
0x00007ffeada70000 - 0x00007ffeadad9000 C:\WINDOWS\system32\mswsock.dll
0x00007ffe80da0000 - 0x00007ffe80db6000 C:\Program Files\Java\jdk-21\bin\nio.dll
0x00007ffe801d0000 - 0x00007ffe801e8000 C:\Program Files\Java\jdk-21\bin\zip.dll
0x00007ffeadcd0000 - 0x00007ffeadceb000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffead550000 - 0x00007ffead587000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffeadb60000 - 0x00007ffeadb88000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffeadcc0000 - 0x00007ffeadccc000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffead070000 - 0x00007ffead09d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffeaffc0000 - 0x00007ffeaffc9000 C:\WINDOWS\System32\NSI.dll
0x00007ffe7e370000 - 0x00007ffe7e3b9000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna1333072664285076348.dll
0x00007ffeaf480000 - 0x00007ffeaf488000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffe8c890000 - 0x00007ffe8c8a0000 C:\Program Files\Java\jdk-21\bin\verify.dll
0x00007ffea0e00000 - 0x00007ffea0e17000 C:\WINDOWS\system32\napinsp.dll
0x00007ffe9d720000 - 0x00007ffe9d73b000 C:\WINDOWS\system32\pnrpnsp.dll
0x00007ffead0e0000 - 0x00007ffead1d8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
0x00007ffea7750000 - 0x00007ffea7761000 C:\WINDOWS\System32\winrnr.dll
0x00007ffe9be40000 - 0x00007ffe9be5f000 C:\WINDOWS\system32\wshbth.dll
0x00007ffe9e7c0000 - 0x00007ffe9e7e1000 C:\WINDOWS\system32\nlansp_c.dll
0x00007ffea5ab0000 - 0x00007ffea5aba000 C:\Windows\System32\rasadhlp.dll
0x00007ffea84a0000 - 0x00007ffea8524000 C:\WINDOWS\System32\fwpuclnt.dll
0x00007ffe2c740000 - 0x00007ffe2cb04000 C:\WINDOWS\SYSTEM32\nvcuda.dll
0x00007ffeabc50000 - 0x00007ffeabc87000 C:\WINDOWS\SYSTEM32\dxcore.dll
0x00007ffe2a9d0000 - 0x00007ffe2c739000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvcuda64.dll
0x00007ffeadd20000 - 0x00007ffeadd32000 C:\WINDOWS\SYSTEM32\msasn1.dll
0x00007ffea87a0000 - 0x00007ffea87d2000 C:\WINDOWS\SYSTEM32\cryptnet.dll
0x00007ffeaeb30000 - 0x00007ffeaec97000 C:\WINDOWS\System32\CRYPT32.dll
0x00007ffeadd90000 - 0x00007ffeadde0000 C:\WINDOWS\SYSTEM32\wldp.dll
0x00007ffea8580000 - 0x00007ffea86da000 C:\WINDOWS\SYSTEM32\drvstore.dll
0x00007ffeae190000 - 0x00007ffeae1bc000 C:\WINDOWS\SYSTEM32\devobj.dll
0x00007ffeae1c0000 - 0x00007ffeae20e000 C:\WINDOWS\SYSTEM32\cfgmgr32.dll
0x00007ffea3ae0000 - 0x00007ffea4055000 C:\WINDOWS\SYSTEM32\nvapi64.dll
0x00007ffeaffe0000 - 0x00007ffeb0454000 C:\WINDOWS\System32\SETUPAPI.dll
0x00007ffeb0d10000 - 0x00007ffeb0eb0000 C:\WINDOWS\System32\ole32.dll
0x00007ffe7ab90000 - 0x00007ffe7ac25000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvdxgdmal64.dll
0x00007ffe5ef60000 - 0x00007ffe5f082000 C:\WINDOWS\SYSTEM32\nvml.dll
0x00007ffe243d0000 - 0x00007ffe2522e000 C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvml.dll
0x00007ffe551e0000 - 0x00007ffe5536f000 C:\Program Files\Java\jdk-21\bin\awt.dll
0x00007ffeab040000 - 0x00007ffeab0d8000 C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ffeabf90000 - 0x00007ffeabfbe000 C:\WINDOWS\system32\DWMAPI.DLL
0x00007ffeabb60000 - 0x00007ffeabc14000 C:\WINDOWS\system32\uxtheme.dll
0x00007ffe75360000 - 0x00007ffe75460000 C:\WINDOWS\system32\opengl32.dll
0x00007ffe7fcb0000 - 0x00007ffe7fcdd000 C:\WINDOWS\SYSTEM32\GLU32.dll
0x00007ffeb0f20000 - 0x00007ffeb1080000 C:\WINDOWS\System32\MSCTF.dll
0x00007ffe8a090000 - 0x00007ffe8a238000 C:\WINDOWS\system32\d3d9.dll
0x00007ffeaeca0000 - 0x00007ffeaed1c000 C:\WINDOWS\System32\wintrust.dll
0x00007ffeaf560000 - 0x00007ffeaf57f000 C:\WINDOWS\System32\imagehlp.dll
0x00007ffea2850000 - 0x00007ffea289a000 C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll
0x00007ffe97700000 - 0x00007ffe977c2000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvldumdx.dll
0x00007ffe93a40000 - 0x00007ffe971da000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvgpucomp64.dll
0x00007ffe93960000 - 0x00007ffe93a37000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\NvMemMapStoragex.dll
0x00007ffe2f8c0000 - 0x00007ffe31987000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvd3dumx.dll
0x00007ffe8afe0000 - 0x00007ffe8b2e4000 C:\WINDOWS\system32\nvspcap64.dll
0x00007ffead700000 - 0x00007ffead734000 C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007ffeadb00000 - 0x00007ffeadb26000 C:\WINDOWS\SYSTEM32\gpapi.dll
0x00007ffe8ae20000 - 0x00007ffe8afd4000 C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c\nvppex.dll
0x00007ffe8bee0000 - 0x00007ffe8beee000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
0x00007ffeade80000 - 0x00007ffeadead000 C:\WINDOWS\SYSTEM32\ncrypt.dll
0x00007ffeade40000 - 0x00007ffeade77000 C:\WINDOWS\SYSTEM32\NTASN1.dll
0x00007ffe7a8b0000 - 0x00007ffe7a937000 C:\Program Files\Java\jdk-21\bin\freetype.dll
0x00007ffe57f20000 - 0x00007ffe58001000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
0x00007ffe89190000 - 0x00007ffe89196000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-23097542372236000.dll
0x00007ffe8b830000 - 0x00007ffe8b837000 C:\Program Files\Java\jdk-21\bin\jawt.dll
0x00007ffe83c00000 - 0x00007ffe83cb3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
0x00007ffeafef0000 - 0x00007ffeaffa0000 C:\WINDOWS\System32\clbcatq.dll
0x00007ffea8e60000 - 0x00007ffea8f69000 C:\WINDOWS\SYSTEM32\PROPSYS.dll
0x00007ffe5d800000 - 0x00007ffe5d81a000 C:\WINDOWS\system32\NetworkExplorer.dll
0x00007ffea0210000 - 0x00007ffea022e000 C:\WINDOWS\SYSTEM32\MPR.dll
0x00007ffe8cbc0000 - 0x00007ffe8cbeb000 C:\WINDOWS\System32\p9np.dll
0x00007ffe9f610000 - 0x00007ffe9f61c000 C:\WINDOWS\System32\drprov.dll
0x00007ffe9d700000 - 0x00007ffe9d719000 C:\WINDOWS\System32\ntlanman.dll
0x00007ffe9c920000 - 0x00007ffe9c93f000 C:\WINDOWS\System32\davclnt.dll
0x00007ffeae3f0000 - 0x00007ffeae45c000 C:\WINDOWS\System32\WINSTA.dll
0x00007ffea8ba0000 - 0x00007ffea8bba000 C:\WINDOWS\System32\wkscli.dll
0x00007ffe9ca40000 - 0x00007ffe9ca52000 C:\WINDOWS\SYSTEM32\cscapi.dll
0x00007ffead060000 - 0x00007ffead06c000 C:\WINDOWS\System32\netutils.dll
0x00007ffe89670000 - 0x00007ffe896ce000 C:\Windows\System32\dlnashext.dll
0x00007ffe8bd50000 - 0x00007ffe8bdb9000 C:\Windows\System32\PlayToDevice.dll
0x00007ffe9c820000 - 0x00007ffe9c841000 C:\Windows\System32\DevDispItemProvider.dll
0x00007ffe7e220000 - 0x00007ffe7e2ca000 C:\WINDOWS\system32\wpdshext.dll
0x00007ffe9bc00000 - 0x00007ffe9bdc1000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8\gdiplus.dll
0x00007ffe8bb50000 - 0x00007ffe8bbee000 C:\Windows\System32\PortableDeviceApi.dll
0x00007ffe522b0000 - 0x00007ffe522e7000 C:\Windows\System32\EhStorShell.dll
0x00007ffe8bce0000 - 0x00007ffe8bd04000 C:\Windows\System32\EhStorAPI.dll
0x00007ffead3a0000 - 0x00007ffead3b4000 C:\Windows\System32\WTSAPI32.dll
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5415_none_270d77d17387d7da;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\WINDOWS\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_1ee3b6e6622cf99c;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5415_none_57f86ab6ce1a51a8;C:\WINDOWS\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25050.5-0
VM Arguments:
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir C:\Users\Nathan\Desktop\SheepIt\cache1
java_class_path (initial): sheepit-client-7.25182.0.jar
Launcher Type: SUN_STANDARD
[Global flags]
intx CICompilerCount = 12 {product} {ergonomic}
uint ConcGCThreads = 4 {product} {ergonomic}
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
size_t InitialHeapSize = 1073741824 {product} {ergonomic}
size_t MarkStackSize = 4194304 {product} {ergonomic}
size_t MaxHeapSize = 17163091968 {product} {ergonomic}
size_t MaxNewSize = 10292822016 {product} {ergonomic}
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
size_t MinHeapSize = 8388608 {product} {ergonomic}
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
bool SegmentedCodeCache = true {product} {ergonomic}
size_t SoftMaxHeapSize = 17163091968 {manageable} {ergonomic}
bool UseCompressedOops = true {product lp64_product} {ergonomic}
bool UseG1GC = true {product} {ergonomic}
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags foldmultilines=false
#1: stderr all=off uptime,level,tags foldmultilines=false
Environment Variables:
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;C:\Program Files\Blender Foundation\Blender 4.4;
USERNAME=Nathan
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
TMP=C:\Users\Nathan\AppData\Local\Temp
TEMP=C:\Users\Nathan\AppData\Local\Temp
Periodic native trim disabled
--------------- S Y S T E M ---------------
OS:
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
OS uptime: 26 days 18:02 hours
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
Processor Information for all 20 processors :
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
Memory: 4k page, system-wide physical 65446M (10535M free)
TotalPageFile size 79743M (AvailPageFile size 188M)
current process WorkingSet (physical memory assigned to process): 495M, peak: 887M
current process commit charge ("private bytes"): 520M, peak: 1250M
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
END.

BIN
sheepit-client-all.jar Normal file

Binary file not shown.

BIN
waveletNoiseTile.bin Normal file

Binary file not shown.

1
worker0.bat Normal file
View File

@@ -0,0 +1 @@
java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "E:\SheepIt\cache0" -shadow-dir "E:\SheepIt\shadow"

1
worker1.bat Normal file
View File

@@ -0,0 +1 @@
java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "E:\SheepIt\cache1" -shadow-dir "E:\SheepIt\shadow"

1
worker2.bat Normal file
View File

@@ -0,0 +1 @@
java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "E:\SheepIt\cache2" -shadow-dir "E:\SheepIt\shadow"