From 7108d6d1318b67f67a7d6f8476406180bd9352c8 Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Mon, 4 May 2026 17:09:47 +0200 Subject: [PATCH] =?UTF-8?q?feat(kernel):=20KRNBUG-AUDIT-004=20=E2=80=94=20?= =?UTF-8?q?--ctor-probe=20PC=20hook=20+=20--dump-addr=20struct=20dump?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Diagnostic-only, read-only. Lockstep `instructions=100000002` preserved bit-exact at -n 100M --stable-digest. 586 → 588 tests. Adds two read-only diagnostics for the parked-waiter producer hunt: * `--ctor-probe=0x8217C850,0x...` — at every interpreter step, if `ctx.pc` is in the configured set, print one `CTOR-PROBE` line capturing live r3 (= `this` in MSVC PPC ctors), lr (= return site), sp, plus an 8-frame back-chain with saved-r31/r30 per frame. Fires once per hit, exactly what the 8-instance-pool probe needed. * `--dump-addr=0x828F3D08,0x828F4070,0x828F3EC0,...` — at end of run (after the FOCUS report in `dump_thread_diagnostic`), each address gets a 128-byte hex + be32 + ASCII dump. Used to inspect the static dispatcher / job-queue struct layouts AUDIT-003 identified. Both gated default-off; empty set is a single `is_empty()` test on the hot path. No guest state is mutated, so the `sylpheed_n*m.json` lockstep digest is preserved. KRNBUG-AUDIT-004 findings (corrects KRNBUG-AUDIT-002/003): 1. **The "8-instance pool" hypothesis for handle 0x1004 is FALSE.** Probing the inner per-instance ctors `[0x821783D8, 0x82181750, 0x821701C8]` at -n 50M shows each fires EXACTLY ONCE with r3 = `[0x828F3EC0, 0x828F3D08, 0x828F4070]` respectively. All three handles are Meyers-style singletons with one dispatcher each. The "called 8 times" claim came from miscounting raw entries to the OUTER getter sub_8217C850 — but that getter is itself a Meyers-singleton-getter; only the FIRST entry cascades through to bl 0x821783D8 (gated on `[0x828F48D8] bit 0`). 2. **The producer indirection layer is the singleton-getter itself.** Static byte-scan of .rdata / .data shows 0 hits for the dispatcher addresses — no static registry table holds them. But the xrefs table for the OUTER getters reveals 5–6 callers each, MOSTLY non-create-chain, sharing the canonical producer pattern: `bl outer_singleton_getter; lwz r3, OFFSET(r3); bl 0x824AA1D8` (with OFFSET=80 for 0x100c, =36 for 0x15e0). So the AUDIT-003 xref audit was necessary but not sufficient — it correctly saw "no direct producer references" but missed the singleton-getter indirection layer. 3. **Dispatcher struct layouts** (128-byte dumps captured at -n 50M --halt-on-deadlock): - 0x828F3D08 (handle 0x100c): event_handle at +0x4C (0x100c), thread_handle at +0x48 (0x1010), self-pointer at +0x74, capacity 7 at +0x28, queue empty (+0/+3C = -1). - 0x828F4070 (handle 0x15e0): event_handle at +0x20 (0x15e0), sibling-handle 0x15E4 at +0x1C, queue empty (+0x10 = -1). - 0x828F3EC0 (handle 0x1004): event_handle at +0x78 (0x1004), 4 guest-heap sub-buffers at +0x20/+0x3C/+0x44/+0x50 in 0x4xxxxxxx range — noticeably different layout from the other two pure POD job queues. Files: crates/xenia-kernel/src/state.rs ctor_probe_pcs / dump_addrs + fire_ctor_probe_if_match + 2 tests crates/xenia-app/src/main.rs Exec --ctor-probe / --dump-addr CLI parsing, prologue hook, end-of-run struct dumper audit-findings.md KRNBUG-AUDIT-004 entry audit-runs/audit-004/ 50M probe runs (v1 outer-getter hits, v2 inner-ctor hits proving the singleton hypothesis) Co-Authored-By: Claude Opus 4.7 (1M context) --- audit-findings.md | 165 +++ audit-runs/audit-004/run-50m-probe-v2.txt | 1013 ++++++++++++++++++ audit-runs/audit-004/run-50m-probe.txt | 1151 +++++++++++++++++++++ crates/xenia-app/src/main.rs | 172 +++ crates/xenia-kernel/src/state.rs | 100 ++ 5 files changed, 2601 insertions(+) create mode 100644 audit-runs/audit-004/run-50m-probe-v2.txt create mode 100644 audit-runs/audit-004/run-50m-probe.txt diff --git a/audit-findings.md b/audit-findings.md index 2dd18a1..6281bcd 100644 --- a/audit-findings.md +++ b/audit-findings.md @@ -4457,3 +4457,168 @@ function arg (no constant-load), but the simple 3. Treat 0x42450b5c independently. AUDIT-002's hook missed it because the parking site (PC=0x824cd4f4) isn't routed through `do_wait_single`. Open KRNBUG-AUDIT-004 for that wait path. + +--- + +### KRNBUG-AUDIT-004 — `--ctor-probe` PC hook + `--dump-addr` struct dump; producer-indirection layer identified; "8-instance pool" hypothesis falsified + +**Status**: landed on master (no-ff merge of feature branch +`dispatcher-probe-audit/p0-ctor-probe-and-struct-dump`). Diagnostic- +only, read-only, lockstep-preserved (`instructions=100000002` at +`-n 100M --stable-digest`). + +**Tests**: 586 → **588**. + +**What landed (`crates/xenia-kernel/src/state.rs`):** +- `pub ctor_probe_pcs: HashSet` field on `KernelState` (default + empty). +- `pub fire_ctor_probe_if_match(hw_id, mem)` — fast-rejects when set + is empty; on match prints a one-shot record `CTOR-PROBE pc=... + tid=... hw=... cycle=... sp=... r3=... lr=...` plus an 8-frame + back-chain with saved-r31/r30 per frame. Pure read. +- `pub dump_addrs: Vec` field for end-of-run struct dumps. +- 2 unit tests: empty-set no-op, set-membership invariant. + +**What landed (`crates/xenia-app/src/main.rs`):** +- `--ctor-probe=0x8217C850,0x82181750,...` CLI flag (and + `XENIA_CTOR_PROBE`). Parsed into `kernel.ctor_probe_pcs` at + `cmd_exec_inner` startup. +- `--dump-addr=0x828F3D08,0x828F4070,0x828F3EC0,...` CLI flag (and + `XENIA_DUMP_ADDR`). Each address gets a 128-byte hex+be32+ASCII + dump at end-of-run, after the per-handle FOCUS report. +- `worker_prologue` calls `fire_ctor_probe_if_match` after reading + `pc` and before any thunk-dispatch / step-block branch. + `dump_thread_diagnostic` consumes `kernel.dump_addrs`. + +**Decisive findings (corrects KRNBUG-AUDIT-002/003):** + +1. **The "8-instance pool" hypothesis for handle 0x1004 is FALSE.** + Probe ran at `-n 50M --halt-on-deadlock` with PCs + `[0x821783D8, 0x82181750, 0x821701C8]` (the per-instance ctors + for handles 0x1004 / 0x100c / 0x15e0 respectively). Each fired + **EXACTLY ONCE**: + ``` + CTOR-PROBE pc=0x821783d8 tid=1 hw=0 cycle=1401430 r3=0x828f3ec0 ← handle 0x1004 + CTOR-PROBE pc=0x82181750 tid=1 hw=0 cycle=5363599 r3=0x828f3d08 ← handle 0x100c + CTOR-PROBE pc=0x821701c8 tid=1 hw=0 cycle=9203618 r3=0x828f4070 ← handle 0x15e0 + ``` + Handle 0x1004 has a SINGLE dispatcher at **0x828F3EC0**, not 8 + pool members. The earlier "called 8 times" claim came from + counting raw entries to the OUTER getter `sub_8217C850`, but + `sub_8217C850` is a Meyers-style singleton-getter — its inner + `bl 0x821783D8` (the per-instance ctor) is gated on a one-shot + init flag at `[0x828F48D8] bit 0`. Subsequent `sub_8217C850` + calls just return the existing slot pointer. + +2. **The producer indirection layer IS the singleton-getter + itself.** Static byte-scans of `.rdata` and `.data` show 0 hits + for the dispatcher addresses 0x828F3D08 / 0x828F4070 — so no + registry table holds them. But the `xrefs` table for the OUTER + getters reveals: + ``` + sub_821800D8 (outer for 0x828F3D08, handle 0x100c): 6 callers + 0x821802d8 (sub_82180158+0x180) ← non-create-chain + 0x821806e0 (sub_821805C8+0x118) ← non-create-chain + 0x82180b28 (sub_82180A10+0x118) ← non-create-chain + 0x82180ea0 (sub_82180D90+0x110) ← non-create-chain + 0x82181254 (sub_821810E0+0x174) ← non-create-chain + 0x82181c54 (sub_82181C28+0x2C) ← create-chain ONLY + + sub_8216F618 (outer for 0x828F4070, handle 0x15e0): 5 callers + 0x8216f9d4 (sub_8216F818+0x1BC) ← non-create-chain + 0x8216fc08 (sub_8216F9F0+0x218) ← non-create-chain + 0x821700b8 (sub_8216FF70+0x148) ← non-create-chain + 0x821700f4 (sub_821700E0+0x14) ← non-create-chain + 0x821707f4 (sub_821707C0+0x34) ← create-chain ONLY + ``` + The non-create-chain consumers all share the **canonical + producer pattern**: + ``` + bl outer_singleton_getter ; r3 = dispatcher ptr + lwz r3, OFFSET(r3) ; r3 = an event handle / queue field + bl 0x824AA1D8 ; signal/wake function + ``` + For 0x100c the offset is 80 (= 0x50); for 0x15e0 the offset is + 36 (= 0x24). + + So **interpretation (2) of the audit charter is confirmed**: + producers reference the dispatchers via a function-call layer of + indirection, not through direct address materialization. The + xref-table audit in AUDIT-003 (which only catches direct + constant-loads of the dispatcher base) was **necessary but not + sufficient** — it correctly saw "no direct producer references" + but missed the singleton-getter indirection. + +3. **Dispatcher struct layouts** (128-byte dumps at `-n 50M + --halt-on-deadlock`): + ``` + 0x828F3D08 (handle 0x100c, per-instance ctor sub_82181750): + +0x00 = 0xFFFFFFFF ; queue head/tail sentinel + +0x28 = 0x00000007 ; capacity = 7 + +0x2C = 0x01000000 ; init flag + +0x3C = 0xFFFFFFFF ; secondary sentinel + +0x48 = 0x00001010 ; thread_handle (worker thread) + +0x4C = 0x0000100C ; event_handle (= self handle 0x100c) + +0x50 = 0x00000000 ; producer reads this — currently 0 + +0x70 = 0x00000001 ; refcount? + +0x74 = 0x828F3D08 ; self-pointer + + 0x828F4070 (handle 0x15e0, per-instance ctor sub_821701C8): + +0x00 = 0x01000000 ; init flag + +0x10 = 0xFFFFFFFF ; queue sentinel + +0x1C = 0x000015E4 ; sibling-handle (NOT in our parked + ; set — possibly a thread handle) + +0x20 = 0x000015E0 ; event_handle (= self handle 0x15e0) + +0x24 = 0x00000000 ; producer reads this — currently 0 + +0x40 = 0xFFFFFFFF ; secondary sentinel + + 0x828F3EC0 (handle 0x1004, per-instance ctor sub_821783D8): + +0x00 = 0x01000000 ; init flag + +0x10 = 0xFFFFFFFF ; queue sentinel + +0x20 = 0x40541BC0 ; heap pointer (sub-buffer #1) + +0x30 = 0x00000014 ; size 20 + +0x34 = 0x0000002F ; size 47 + +0x38 = 0x414F5F60 ; heap-range payload (or two halfwords) + +0x3C = 0x40211CA0 ; heap pointer (sub-buffer #2) + +0x44 = 0x405418C0 ; heap pointer (sub-buffer #3) + +0x50 = 0x40111840 ; heap pointer (sub-buffer #4) + +0x58 = 0xFFFFFFFF ; sentinel + +0x5C = 0xFFFFFFFF ; sentinel + +0x76 = 0x000012AC ; possibly thread id + +0x78 = 0x00001004 ; event_handle (= self handle 0x1004) + ``` + The 0x1004 dispatcher is **noticeably different**: it owns 4 + guest-heap sub-buffers in 0x4xxxxxxx range, suggesting it + manages a more complex resource than the other two (which are + pure POD job queues). The +0x78 location of the event_handle + differs from 0x100c's +0x4C and 0x15e0's +0x20, so each + subsystem has its own struct layout (no shared base class). + +**Reproduce:** + +```bash +cargo run --release -p xenia-app -- exec 'sylpheed.iso' \ + --halt-on-deadlock \ + --trace-handles-focus=0x1004,0x100c,0x15e0 \ + --ctor-probe=0x821783D8,0x82181750,0x821701C8 \ + --dump-addr=0x828F3D08,0x828F4070,0x828F3EC0 \ + -n 50000000 +``` + +Trace files saved at: +- `audit-runs/audit-004/run-50m-probe.txt` (outer-getter probes) +- `audit-runs/audit-004/run-50m-probe-v2.txt` (inner-ctor probes — singleton hypothesis confirmed) + +**Recommendation for next session (do not implement a fix):** + +Hook the entry of each non-create-chain consumer site for handle +0x100c (5 sites: 0x821802d8, 0x821806e0, 0x82180b28, 0x82180ea0, +0x82181254) and for handle 0x15e0 (4 sites: 0x8216f9d4, 0x8216fc08, +0x821700b8, 0x821700f4) using `--ctor-probe=...`. If any fire, then +the producer DOES execute and the failure mode is in the wake/signal +chain (probably `lwz r3, OFFSET(r3)` reads zero — see dispatcher dump +[+0x50] = 0 for 0x100c, [+0x24] = 0 for 0x15e0 — and the wake +function 0x824AA1D8 is then called with handle=0). If none fire, +the producer chain is gated upstream (likely a feature flag, init +phase, or RPC handler that never fires). Either way, the next +diagnostic narrows the bug surface dramatically. diff --git a/audit-runs/audit-004/run-50m-probe-v2.txt b/audit-runs/audit-004/run-50m-probe-v2.txt new file mode 100644 index 0000000..93f2c16 --- /dev/null +++ b/audit-runs/audit-004/run-50m-probe-v2.txt @@ -0,0 +1,1013 @@ + Finished `release` profile [optimized] target(s) in 0.21s + Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --trace-handles-focus=0x1004,0x100c,0x15e0 --ctor-probe=0x821783D8,0x82181750,0x821701C8 --dump-addr=0x828F3D08,0x828F4070,0x828F3EC0 -n 50000000` +2026-05-04T15:06:06.546806Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso +2026-05-04T15:06:06.548469Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso +2026-05-04T15:06:06.548487Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso +2026-05-04T15:06:06.614295Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696 +2026-05-04T15:06:06.614693Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=66.0 path=sylpheed.iso bytes=3497984 +2026-05-04T15:06:06.618913Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso +2026-05-04T15:06:06.619039Z  INFO cmd_exec: xenia_rs: handle audit enabled (--trace-handles) path=sylpheed.iso +2026-05-04T15:06:06.619050Z  INFO cmd_exec: xenia_rs: handle audit focus: 3 (0x0000100c, 0x000015e0, 0x00001004) path=sylpheed.iso +2026-05-04T15:06:06.619056Z  INFO cmd_exec: xenia_rs: ctor probes armed: 3 (0x821783d8, 0x82181750, 0x821701c8) path=sylpheed.iso +2026-05-04T15:06:06.619061Z  INFO cmd_exec: xenia_rs: dump addresses armed: 3 (0x828f3d08, 0x828f4070, 0x828f3ec0) path=sylpheed.iso +2026-05-04T15:06:06.619211Z  INFO cmd_exec: xenia_rs: starting execution limit=50000000 path=sylpheed.iso +2026-05-04T15:06:06.619218Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso +2026-05-04T15:06:06.623820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.623845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x821783d8 tid=1 hw=0 cycle=1401430 sp=0x700ffbd0 r3=0x828f3ec0 lr=0x8217c8a8 + CTOR-PROBE frame=0 fp=0x700ffbd0 lr=0x8217c8a8 saved-r31=0x00000000 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffc40 lr=0x8280f824 saved-r31=0x82870180 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +2026-05-04T15:06:06.839256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x82181750 tid=1 hw=0 cycle=5363599 sp=0x700ff8c0 r3=0x828f3d08 lr=0x82180114 + CTOR-PROBE frame=0 fp=0x700ff8c0 lr=0x82180114 saved-r31=0x00000000 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff920 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff980 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +2026-05-04T15:06:06.839346Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.839360Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=2 handle=0x1010 hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1018 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840089Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x101c hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1020 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1024 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840312Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1028 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840384Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x102c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840690Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1030 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840811Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.840819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1040 hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.841090Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1030) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.841906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1048 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.841955Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x104c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.842032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1050 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.842049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1054 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.842063Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1058 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.842194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x105c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.842214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615/e" err=File not found: cache:/d4ea4615/e handle=0x1060 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.842226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1064 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.845958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1068 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.848060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x1074 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.848324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.848878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x107c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.848914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1080 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.849064Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1084 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.849094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1088 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.849126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x108c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.849271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1090 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.849282Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/e" err=File not found: cache:/69d8e45c/e handle=0x1094 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.849292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x1098 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.850468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x10a0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.850764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.851125Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.851134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x10b8 hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.851792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10bc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.851842Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10c0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.852095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10c4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.852134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10c8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.852178Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10cc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.852430Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10d0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.852443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x10d4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.852456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10d8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.857010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.857179Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:06.857177Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0accb000 size_bytes=4096 size_dwords=1024 +2026-05-04T15:06:06.857203Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64 +2026-05-04T15:06:06.857192Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10e8 hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.758669Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b0d7000 width=1280 height=720 +2026-05-04T15:06:07.778218Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.778236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10f4 hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.779502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.780370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1108 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.780424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x110c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.780771Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1110 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.780814Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1114 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.780864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1118 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.781133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x111c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.781152Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/a" err=File not found: cache:/aab216c3/a handle=0x1120 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.781164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1124 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.952257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x112c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.952611Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x112c) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.955682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1134 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.955723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1138 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.955956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x113c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.955984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1140 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.956019Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1144 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.956161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1148 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.956173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x114c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.956190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1150 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.966420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1158 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.966765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.967635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1168 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.967691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x116c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.968132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1170 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.968173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1174 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.968226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1178 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.968471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x117c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.968484Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1180 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:07.968497Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1184 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.005005Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.005035Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x1188 hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.005058Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.005063Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x118c hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.005342Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b8ef000 driver=0x41550000 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.057748Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.057971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.058147Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.058318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.058489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.058662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.058832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.059001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.059173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.059352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.059522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.059718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.059895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.060084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.060257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.060508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.060712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.060906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.061083Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.061254Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.061423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.061590Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.061770Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.061939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.062120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.062288Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.062454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.062622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.062793Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.062969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.063139Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.063320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.063489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.063663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.063833Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.064006Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.064175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.064343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.064511Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.064682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.064855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.065024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.065192Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.065359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.065528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.065706Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.065878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.066046Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.066218Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.066392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.066562Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.066735Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.066905Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.067073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.067242Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.067410Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.067579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.067753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.067922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.068093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.068261Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.068435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.068604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.068777Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.068947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.069116Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.069286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.069454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.069594Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.071508Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.071518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x12ac hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.071924Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.071933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x12b8 hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.073470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.074344Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12d0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.074394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12d4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.074896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12d8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.074938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12dc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.074999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12e0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.075274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12e4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.075288Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/5" err=File not found: cache:/aab216c3/5 handle=0x12e8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.075302Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12ec path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.076118Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.076126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x12f0 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.076227Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.076234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12f8 hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.076271Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.076277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12fc hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.080725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1304 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.082446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1310 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.082744Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1310) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1318 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x131c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1320 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1324 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083721Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1328 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083866Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x132c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/c" err=File not found: cache:/69d8e45c/c handle=0x1330 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.083894Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1334 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.084480Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.085160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.089905Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1344 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.098234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x1348 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.102420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.102694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.102952Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.103216Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.103501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.103762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.104015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.104299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.104536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.104778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.105012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.105253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.105544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.110208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.114531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.114703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.114870Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.115036Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.115202Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.115368Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.115536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.115704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.115867Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.116032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.116197Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.116362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.116527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.116695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.116861Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.117028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.117189Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.117363Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.117531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.117730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.117931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.118114Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.118289Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.118458Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.118633Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.118822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.119014Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.119187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.119355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.119535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.119724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.119928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.120108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.120273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.120453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.120620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.120789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.120957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.121122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.121287Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.121451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.121616Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.121786Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.121953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.122117Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.122340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.122504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.122671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.122838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.123037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.126420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.128503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x1484 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.128541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1488 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.128908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x148c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.128938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1490 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.128979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1494 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.129128Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1498 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.129140Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x149c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.129150Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x14a0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.129567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.130051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.132219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14ac path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.134820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.141413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14b8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.141451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14bc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.141851Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14c0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.141880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14c4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.141925Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14c8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.142077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14cc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.142089Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14d0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.142100Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14d4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.142483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.146202Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.146379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.146549Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.146728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.146899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.147070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.147239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.147407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.147583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.147761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.147953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.148127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.148298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.148470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.148641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.148823Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.148995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.149168Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.149338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.149498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.222362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x152c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.222424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1530 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.222858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1534 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.222887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1538 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.222933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x153c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.223081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1540 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.223092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x1544 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.223103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x1548 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.223603Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225227Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1550 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225262Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1554 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1558 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225750Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x155c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1560 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1564 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/2" err=File not found: cache:/87719002/2 handle=0x1568 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.225964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x156c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.226404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.230736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.230917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.231094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.231329Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.231522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.231697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.231869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.232043Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.232214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.232367Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.273398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x159c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.273456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15a0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.273962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15a4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.273993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15a8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.274042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15ac path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.274190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15b0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.274201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x15b4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.274212Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15b8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.274737Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(11) is_main=false cycle=18574608 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.274973Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.275018Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.275024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x15c8 hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.281066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x15d8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.281143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15dc path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x821701c8 tid=1 hw=0 cycle=9203618 sp=0x700ff5c0 r3=0x828f4070 lr=0x8216f65c + CTOR-PROBE frame=0 fp=0x700ff5c0 lr=0x8216f65c saved-r31=0x40929b60 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff630 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff6a0 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=7 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 +2026-05-04T15:06:08.282365Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282374Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x15e4 hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282643Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x15f4 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282757Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1600 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282814Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1608 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282904Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x160c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.282969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1610 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.283108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1614 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.283555Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1618 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.283572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x161c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:08.283588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x1620 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.185058Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b0d7000 width=1280 height=720 +2026-05-04T15:06:09.185274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.190070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1628 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.190169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x162c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.192137Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1630 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.192214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1634 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.192376Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1638 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.192911Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x163c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.192929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/0" err=File not found: cache:/87719002/0 handle=0x1640 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.192947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1644 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.194483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.203070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.203539Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.204001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.204412Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.204824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.205229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.205634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.206039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.206439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.206845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.207247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.207647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.208055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.208456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.208860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.209259Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.209666Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.210066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.210466Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.210868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.211267Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.211747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.212155Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.212557Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.212961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.213366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.213784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.214234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.214775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.215200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.215606Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.216017Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.216418Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.216826Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.217230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.217632Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.218042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.218448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.218858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.219263Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.219674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.220104Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.220514Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.220924Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.221327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.221734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.222148Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.222588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.223086Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.226188Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.234677Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.235084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.235491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.235902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.236364Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.236801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.237230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.237664Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.238091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.238659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.239303Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.239968Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.240385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.240801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.241214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.241623Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.242031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.242434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.242845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.243276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.243683Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.244089Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.244491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.244901Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.245301Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.245709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.246117Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.246520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.246942Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.247382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.247881Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.248286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.248694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.249098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.249507Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.249919Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.250327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.250736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.251141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.251541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.251953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.252358Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.252766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.253276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.253947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.254620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.255314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.255765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.256169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.256575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.257045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.257451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.257862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.258272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.258680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.259085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.259486Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.259899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.260306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.260780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.261206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.261615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.262024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.262425Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.262831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.263236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.263643Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.264055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.264460Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.264869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.265275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.265680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.266087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.266492Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.266901Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.267448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.268093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.268520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.268931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.269375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.269794Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.270227Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.270634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.271039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.271446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.271858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.272259Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.272684Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.273112Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.273516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.273929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.274332Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.274738Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.275141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.275549Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.275957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.276361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.276766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.277171Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.277573Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.277979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.278382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.278790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.279190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.279592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.279999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.280453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.280930Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:09.285160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14ac) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:06:10.372949Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=50000000 path=sylpheed.iso max=Some(50000000) ips=None + +=== Final State === +PC: 0x825f0fd8 +LR: 0x824ac578 +CTR: 0x823e9d90 +CR: 0x24000024 +XER: CA=0 OV=0 SO=0 +r0 : 0x0000000082153bd8 +r1 : 0x00000000700ff880 +r2 : 0x0000000020000000 +r4 : 0x0000000000000001 +r7 : 0x0000000040111a50 +r11: 0x0000000000000127 +r12: 0x00000000822f1e00 +r13: 0x000000007fff0000 +r18: 0x0000000040d09a7c +r19: 0x0000000000000001 +r21: 0xffffffffffffffff +r22: 0x0000000040542740 +r23: 0x00000000828f3844 +r24: 0x0000000000000055 +r25: 0x00000000828e0000 +r26: 0x00000000828f3888 +r27: 0x0000000000000055 +r31: 0x00000000000010ec +2026-05-04T15:06:10.374828Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso + +=== Thread diagnostics === + hw=0 idx=0 tid=1 state=Ready pc=0x825f0fd8 lr=0x824ac578 sp=0x700ff880 + r0=0x82153bd8 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x40111a50 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000127 r12=0x822f1e00 r13=0x7fff0000 + hw=0 idx=1 tid=12 state=Ready pc=0x824ac578 lr=0x824ac578 sp=0x714a7970 + r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000007 r10=0x40542100 r11=0x00000001 r12=0x822dfc38 r13=0x4d0d3000 + hw=0 idx=2 tid=17 state=Ready pc=0x823dde30 lr=0xbcbcbcbc sp=0x7152bf00 + r0=0x00000000 r3=0x828f3c4c r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a4000 + hw=1 idx=0 tid=11 state=Exited(0) pc=0xbcbcbcbc lr=0xbcbcbcbc sp=0x71497f00 + r0=0x821511a0 r3=0x00000000 r4=0x4024b1a0 r5=0x402118c0 r6=0x03a72328 r7=0x03a723d0 + r8=0x43b7732c r9=0x828f0000 r10=0x00000001 r11=0x828f0000 r12=0xbcbcbcbc r13=0x4d0d1000 + hw=1 idx=1 tid=13 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x714d7e00 + r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d5000 + hw=1 idx=2 tid=15 state=Ready pc=0x825f1080 lr=0x824ab1d4 sp=0x7150bc90 + r0=0x821511a0 r3=0x7150bce8 r4=0x7150be68 r5=0x00000008 r6=0x00000000 r7=0x00000001 + r8=0x00000000 r9=0x7150bde8 r10=0x820b0000 r11=0x00000000 r12=0x824564e4 r13=0x4e0a0000 + hw=1 idx=3 tid=19 state=Ready pc=0x823ddb50 lr=0xbcbcbcbc sp=0x7172bf00 + r0=0x00000000 r3=0x828f3c88 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a8000 + hw=2 idx=0 tid=6 state=Blocked(WaitAny { handles: [1111821148], deadline: Some(42946672) }) pc=0x824cd4f4 lr=0x824cd4f4 sp=0x71087e60 + r0=0x00000000 r3=0x00000000 r4=0x00000003 r5=0x00000001 r6=0x00000000 r7=0x71087eb0 + r8=0x00000000 r9=0x00000000 r10=0x00000002 r11=0x00000002 r12=0xbcbcbcbc r13=0x4b0d5000 + hw=2 idx=1 tid=7 state=Ready pc=0x824bf49c lr=0x824bf494 sp=0x71187ae0 + r0=0x00000000 r3=0x00000001 r4=0x4244df00 r5=0x00000003 r6=0x00000000 r7=0x0000800e + r8=0x00000000 r9=0x00000001 r10=0x00000001 r11=0x00000000 r12=0x824bf494 r13=0x4b809000 + hw=3 idx=0 tid=3 state=Blocked(WaitAny { handles: [4116], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7102fb80 + r0=0x821511a0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a723d0 + r8=0x43b7732c r9=0x828f0000 r10=0x00000008 r11=0x00000000 r12=0x8245a660 r13=0x4acc5000 + hw=3 idx=1 tid=4 state=Blocked(WaitAny { handles: [4152, 4156], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7106fc90 + r0=0x821511d0 r3=0x00000000 r4=0x7106fcf0 r5=0x00000001 r6=0x00000001 r7=0x00000000 + r8=0x7106fce0 r9=0x43b77334 r10=0x00000002 r11=0x00000020 r12=0x82450b48 r13=0x4acc7000 + hw=3 idx=2 tid=14 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71507e00 + r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d7000 + hw=3 idx=3 tid=18 state=Blocked(WaitAny { handles: [5624, 16777216], deadline: None }) pc=0x824ab214 lr=0x824ab214 sp=0x7162bce0 + r0=0x00000000 r3=0x00000000 r4=0x7162bd40 r5=0x00000001 r6=0x00000001 r7=0x00000000 + r8=0x00000000 r9=0x00000013 r10=0x00000002 r11=0x00000020 r12=0x823ddbe4 r13=0x4e0a6000 + hw=4 idx=0 tid=8 state=Blocked(Suspended) pc=0x824d2878 lr=0xbcbcbcbc sp=0x71287f00 + r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8eb000 + hw=4 idx=1 tid=16 state=Blocked(WaitAny { handles: [5600], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0 + r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10 + r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x8217057c r13=0x4e0a2000 + hw=5 idx=0 tid=2 state=Blocked(WaitAny { handles: [4108], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0 + r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10 + r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x82181988 r13=0x4acc3000 + hw=5 idx=1 tid=5 state=Blocked(WaitAny { handles: [4272, 4276], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7107fc60 + r0=0x821511a0 r3=0x00000000 r4=0x7107fcc0 r5=0x00000001 r6=0x00000001 r7=0x00000000 + r8=0x7107fcb0 r9=0x00009030 r10=0x00000002 r11=0x00000020 r12=0x82458d68 r13=0x4acc9000 + hw=5 idx=2 tid=9 state=Blocked(Suspended) pc=0x824d2940 lr=0xbcbcbcbc sp=0x71387f00 + r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8ed000 + hw=5 idx=3 tid=10 state=Blocked(WaitAny { handles: [4100], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71397d90 + r0=0x82153c08 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a72328 + r8=0x43b7728c r9=0x43b77328 r10=0x40541e00 r11=0x820b5714 r12=0x821789c8 r13=0x4d0cf000 + + -- Handle waiter lists -- + handle=0x000012f4 Semaphore(0/2147483647) waiters(tid)=[14, 13] + handle=0x42450b5c Event(sig=false, mr=true) waiters(tid)=[6] + handle=0x000015f8 Event(sig=false, mr=false) waiters(tid)=[18] + handle=0x00001004 Event(sig=false, mr=true) waiters(tid)=[10] + handle=0x000010b4 Semaphore(0/2147483647) waiters(tid)=[5] + handle=0x0000100c Event(sig=false, mr=true) waiters(tid)=[2] + handle=0x00001014 Semaphore(0/2147483647) waiters(tid)=[3] + handle=0x000010b0 Event(sig=false, mr=false) waiters(tid)=[5] + handle=0x000015e0 Event(sig=false, mr=true) waiters(tid)=[16] + handle=0x00001038 Event(sig=false, mr=false) waiters(tid)=[4] + handle=0x0000103c Semaphore(0/2147483647) waiters(tid)=[4] + +=== Handle audit trails === + handle=0x00001004 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=10 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x0000100c kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=2 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x00001014 kind=Semaphore waiters=1 signals=15 waits=16 wakes=15 + created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore + waits (16): + [ 0] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 1] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 2] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 3] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + ... (12 more) + signals (15): + [ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + ... (11 more) + wakes (15): + [ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + [ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + [ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + [ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + ... (11 more) + handle=0x00001038 kind=Event/Auto waiters=1 signals=0 waits=32 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (32): + [ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + handle=0x0000103c kind=Semaphore waiters=1 signals=32 waits=32 wakes=12 + created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore + waits (32): + [ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + signals (32): + [ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + [ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + [ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + [ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + ... (28 more) + wakes (12): + [ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 2] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 3] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + ... (8 more) + handle=0x000010b0 kind=Event/Auto waiters=1 signals=0 waits=9 wakes=0 + created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent + waits (9): + [ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (5 more) + handle=0x000010b4 kind=Semaphore waiters=1 signals=8 waits=9 wakes=5 + created cycle=0 tid=4 lr=0x824ab110 src=NtCreateSemaphore + waits (9): + [ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (5 more) + signals (8): + [ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + ... (4 more) + wakes (5): + [ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + ... (1 more) + handle=0x000010dc kind=Semaphore waiters=0 signals=2 waits=3 wakes=2 + created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore + waits (3): + [ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + signals (2): + [ 0] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 1] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + wakes (2): + [ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + handle=0x000010f0 kind=Event/Manual waiters=0 signals=1 waits=3 wakes=1 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (3): + [ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + signals (1): + [ 0] cycle=0 tid=1 lr=0x824aa304 src=NtSetEvent aux=0x0 + wakes (1): + [ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/manual aux=0x0 + handle=0x000010fc kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=1 lr=0x824ac578 src=do_wait_single aux=0x0 + signals (1): + [ 0] cycle=0 tid=4 lr=0x824aa304 src=NtSetEvent aux=0x0 + wakes (1): + [ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + handle=0x00001104 kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 + created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=4 lr=0x824ac578 src=do_wait_single aux=0x0 + signals (1): + [ 0] cycle=0 tid=5 lr=0x824aa304 src=NtSetEvent aux=0x0 + wakes (1): + [ 0] cycle=0 tid=5 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + handle=0x000012f4 kind=Semaphore waiters=2 signals=0 waits=2 wakes=0 + created cycle=0 tid=12 lr=0x824ab110 src=NtCreateSemaphore + waits (2): + [ 0] cycle=0 tid=14 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 1] cycle=0 tid=13 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x000015bc kind=Timer/Auto waiters=0 signals=0 waits=32 wakes=1 + created cycle=0 tid=1 lr=0x82612744 src=NtCreateTimer + waits (32): + [ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + wakes (1): + [ 0] cycle=9168371 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + handle=0x000015c0 kind=Event/Auto waiters=0 signals=0 waits=32 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (32): + [ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + handle=0x000015e0 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=16 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x000015f8 kind=Event/Auto waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=18 lr=0x824ab214 src=do_wait_multiple aux=0x4 + +=== Handle audit (focus) === + handle=0x00001004 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + created stack (6 frames): + [ 0] fp=0x700ffab0 lr=0x824a9f6c + [ 1] fp=0x700ffb40 lr=0x821784f8 + [ 2] fp=0x700ffbd0 lr=0x8217c8a8 + [ 3] fp=0x700ffc40 lr=0x8280f824 + [ 4] fp=0x700ffca0 lr=0x824acbf0 + [ 5] fp=0x700ffd10 lr=0x824ab7a8 + created-class probes (6): + frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ffb00 + frame=1 lr=0x821784f8 saved-r31=0x700ffb40 saved-r30=0x00000000 + frame=2 lr=0x8217c8a8 saved-r31=0x700ffbd0 saved-r30=0x00000000 + frame=3 lr=0x8280f824 saved-r31=0x82870180 saved-r30=0x00000000 + frame=4 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000 + frame=5 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + timeline (last 16 of 1): + cycle=0 tid=10 lr=0x824ac578 src=do_wait_single[wait] aux=0x0 + -- DIAGNOSIS -- + GuestExport=0 KernelInternal=0 waits=1 + => producer is a missing kernel signal source (or BST-paradox upstream) + WAIT-THREAD tid=10 pc=0x824ac578 lr=0x824ac578 sp=0x71397d90 r3=0x00000000 r30=0x00000000 r31=0x00001004 + FRAME 0 fp=0x71397d90 lr=0x824ac578 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 1 fp=0x71397e10 lr=0x821789c8 saved r31=0x71397e10 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 2 fp=0x71397f00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + handle=0x0000100c kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + created stack (6 frames): + [ 0] fp=0x700ff7c0 lr=0x824a9f6c + [ 1] fp=0x700ff850 lr=0x821817c0 + [ 2] fp=0x700ff8c0 lr=0x82180114 + [ 3] fp=0x700ff920 lr=0x82181c58 + [ 4] fp=0x700ff980 lr=0x8216eaa4 + [ 5] fp=0x700ffd10 lr=0x824ab8e0 + created-class probes (6): + frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff810 + frame=1 lr=0x821817c0 saved-r31=0x828f3d08 saved-r30=0x00000000 + frame=2 lr=0x82180114 saved-r31=0x828f3d08 saved-r30=0x00000000 + frame=3 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000 + frame=4 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000 + frame=5 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + timeline (last 16 of 1): + cycle=0 tid=2 lr=0x824ac578 src=do_wait_single[wait] aux=0x0 + -- DIAGNOSIS -- + GuestExport=0 KernelInternal=0 waits=1 + => producer is a missing kernel signal source (or BST-paradox upstream) + WAIT-THREAD tid=2 pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0 r3=0x00000000 r30=0x00000000 r31=0x0000100c + FRAME 0 fp=0x7101fdf0 lr=0x824ac578 saved r31=0x828f3d34 r30=0x00000000 r29=0x828f3d08 r28=0x00000000 + FRAME 1 fp=0x7101fe70 lr=0x82181988 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 2 fp=0x7101ff00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + handle=0x000015e0 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + created stack (6 frames): + [ 0] fp=0x700ff4c0 lr=0x824a9f6c + [ 1] fp=0x700ff550 lr=0x82170210 + [ 2] fp=0x700ff5c0 lr=0x8216f65c + [ 3] fp=0x700ff630 lr=0x821707f8 + [ 4] fp=0x700ff6a0 lr=0x821c5418 + [ 5] fp=0x700ff720 lr=0x82172d8c + created-class probes (6): + frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff510 + frame=1 lr=0x82170210 saved-r31=0x700ff550 saved-r30=0x00000000 + frame=2 lr=0x8216f65c saved-r31=0x700ff5c0 saved-r30=0x00000000 + frame=3 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000 + frame=4 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000 + frame=5 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + timeline (last 16 of 1): + cycle=0 tid=16 lr=0x824ac578 src=do_wait_single[wait] aux=0x0 + -- DIAGNOSIS -- + GuestExport=0 KernelInternal=0 waits=1 + => producer is a missing kernel signal source (or BST-paradox upstream) + WAIT-THREAD tid=16 pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0 r3=0x00000000 r30=0x00000000 r31=0x000015e0 + FRAME 0 fp=0x7151bdf0 lr=0x824ac578 saved r31=0x828f4070 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 1 fp=0x7151be70 lr=0x8217057c saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 2 fp=0x7151bf00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + +=== Dump-addr === + addr=0x828f3d08 + +0x00: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................ + +0x10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x20: 00 00 00 00 00 00 00 00 00 00 00 07 01 00 00 00 | be32=00000000 00000000 00000007 01000000 | ................ + +0x30: 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff | be32=00000000 00000000 00000000 ffffffff | ................ + +0x40: 00 00 00 00 00 00 00 00 00 00 10 10 00 00 10 0c | be32=00000000 00000000 00001010 0000100c | ................ + +0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x70: 00 00 00 01 82 8f 3d 08 00 00 00 00 00 00 00 00 | be32=00000001 828f3d08 00000000 00000000 | ......=......... + addr=0x828f4070 + +0x00: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=01000000 00000000 00000000 00000000 | ................ + +0x10: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 15 e4 | be32=ffffffff 00000000 00000000 000015e4 | ................ + +0x20: 00 00 15 e0 00 00 00 00 00 00 00 00 00 00 00 00 | be32=000015e0 00000000 00000000 00000000 | ................ + +0x30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 | be32=00000000 00000000 00000000 00000008 | ................ + +0x40: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................ + +0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x60: 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000001 00000000 00000000 00000000 | ................ + +0x70: 00 00 00 01 00 00 00 00 00 00 00 00 ff ff 00 00 | be32=00000001 00000000 00000000 ffff0000 | ................ + addr=0x828f3ec0 + +0x00: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=01000000 00000000 00000000 00000000 | ................ + +0x10: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................ + +0x20: 40 54 1b c0 00 00 00 00 00 00 00 00 00 00 00 00 | be32=40541bc0 00000000 00000000 00000000 | @T.............. + +0x30: 00 00 00 14 00 00 00 2f 41 4f 5f 60 40 21 1c a0 | be32=00000014 0000002f 414f5f60 40211ca0 | ......./AO_`@!.. + +0x40: 00 00 00 00 40 54 18 c0 00 00 00 00 00 00 00 00 | be32=00000000 405418c0 00000000 00000000 | ....@T.......... + +0x50: 40 11 18 40 00 00 00 00 ff ff ff ff ff ff ff ff | be32=40111840 00000000 ffffffff ffffffff | @..@............ + +0x60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x70: 00 00 00 00 00 00 12 ac 00 00 10 04 00 00 00 00 | be32=00000000 000012ac 00001004 00000000 | ................ +2026-05-04T15:06:10.375520Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=3828 instructions=50000008 import_calls=407415 unimplemented=0 path=sylpheed.iso +2026-05-04T15:06:10.383685Z  INFO xenia_rs::observability: metrics summary: + histogram xex.load_image_ms = count=1 sum=66.000 min=66.000 max=66.000 mean=66.000 + counter xex.bytes_in = 3485696 + counter xex.bytes_out = 9568256 + counter kernel.calls{name=RtlImageXexHeaderField} = 2 + counter kernel.calls{name=NtAllocateVirtualMemory} = 2 + counter kernel.calls{name=KeGetCurrentProcessType} = 3 + counter kernel.calls{name=RtlInitializeCriticalSection} = 29 + counter kernel.calls{name=RtlEnterCriticalSection} = 79315 + counter kernel.calls{name=RtlLeaveCriticalSection} = 79315 + counter kernel.calls{name=XexCheckExecutablePrivilege} = 1 + counter kernel.calls{name=KeTlsAlloc} = 2 + counter kernel.calls{name=KeTlsSetValue} = 2 + counter kernel.calls{name=KeQuerySystemTime} = 1 + counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104 + counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17 + counter kernel.calls{name=NtCreateEvent} = 394 + counter kernel.calls{name=KeQueryPerformanceFrequency} = 6 + counter kernel.calls{name=NtCreateFile} = 88 + counter kernel.calls{name=NtReadFile} = 346 + counter kernel.calls{name=NtClose} = 544 + counter kernel.calls{name=RtlNtStatusToDosError} = 35 + counter kernel.calls{name=ExCreateThread} = 18 + counter scheduler.spawn.ok = 18 + counter kernel.calls{name=ObReferenceObjectByHandle} = 15 + counter kernel.calls{name=KeSetAffinityThread} = 12 + counter kernel.calls{name=ObDereferenceObject} = 17 + counter kernel.calls{name=XamContentCreateEnumerator} = 1 + counter kernel.calls{name=XamEnumerate} = 1 + counter kernel.calls{name=NtWaitForSingleObjectEx} = 94889 + counter kernel.calls{name=NtCreateSemaphore} = 10 + counter kernel.calls{name=RtlInitAnsiString} = 167 + counter kernel.calls{name=NtOpenFile} = 49 + counter kernel.calls{name=NtQueryVolumeInformationFile} = 16 + counter kernel.calls{name=NtQueryDirectoryFile} = 1 + counter kernel.calls{name=NtQueryInformationFile} = 380 + counter kernel.calls{name=NtQueryFullAttributesFile} = 16 + counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55701 + counter kernel.calls{name=NtDuplicateObject} = 36 + counter kernel.calls{name=NtReleaseSemaphore} = 393 + counter kernel.calls{name=NtSetInformationFile} = 77 + counter kernel.calls{name=NtWriteFile} = 43 + counter kernel.calls{name=NtSetEvent} = 334 + counter kernel.calls{name=MmFreePhysicalMemory} = 12 + counter kernel.calls{name=XamNotifyCreateListener} = 1 + counter kernel.calls{name=VdInitializeEngines} = 2 + counter kernel.calls{name=VdShutdownEngines} = 1 + counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 2 + counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1 + counter kernel.calls{name=ExGetXConfigSetting} = 3 + counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2 + counter kernel.calls{name=MmGetPhysicalAddress} = 1 + counter kernel.calls{name=VdInitializeRingBuffer} = 1 + counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1 + counter kernel.calls{name=KiApcNormalRoutineNop} = 1 + counter kernel.calls{name=KeSetBasePriorityThread} = 3 + counter kernel.calls{name=KeWaitForSingleObject} = 1 + counter kernel.calls{name=VdQueryVideoMode} = 2 + counter kernel.calls{name=VdQueryVideoFlags} = 2 + counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1 + counter kernel.calls{name=KeEnterCriticalRegion} = 3 + counter kernel.calls{name=VdRetrainEDRAMWorker} = 1 + counter kernel.calls{name=VdRetrainEDRAM} = 3 + counter kernel.calls{name=KeLeaveCriticalRegion} = 3 + counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1 + counter kernel.calls{name=VdGetSystemCommandBuffer} = 2 + counter kernel.calls{name=VdSwap} = 2 + counter gpu.interrupt.delivered{source=1} = 2 + counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28 + counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28 + counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1 + counter gpu.interrupt.delivered{source=0} = 295 + counter kernel.calls{name=VdSetDisplayMode} = 1 + counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1 + counter kernel.calls{name=RtlFillMemoryUlong} = 1 + counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1 + counter kernel.calls{name=VdPersistDisplay} = 1 + counter kernel.calls{name=NtResumeThread} = 6 + counter kernel.calls{name=XGetGameRegion} = 2 + counter kernel.calls{name=KeInitializeSemaphore} = 1 + counter kernel.calls{name=KeResumeThread} = 2 + counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33 + counter kernel.calls{name=KfLowerIrql} = 26 + counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1 + counter kernel.calls{name=ObLookupThreadByThreadId} = 2 + counter kernel.calls{name=ObOpenObjectByPointer} = 2 + counter kernel.calls{name=XNotifyPositionUI} = 1 + counter kernel.calls{name=NtCreateTimer} = 1 + counter kernel.calls{name=NtSetTimerEx} = 1 + counter kernel.calls{name=XamInputGetCapabilities} = 8 + counter kernel.calls{name=XNotifyGetNext} = 94828 + counter kernel.calls{name=XamUserGetSigninState} = 4 + counter kernel.calls{name=XamUserGetXUID} = 1 diff --git a/audit-runs/audit-004/run-50m-probe.txt b/audit-runs/audit-004/run-50m-probe.txt new file mode 100644 index 0000000..f3cc86a --- /dev/null +++ b/audit-runs/audit-004/run-50m-probe.txt @@ -0,0 +1,1151 @@ + Finished `release` profile [optimized] target(s) in 0.22s + Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --trace-handles-focus=0x1004,0x100c,0x15e0 --ctor-probe=0x8217C850,0x82181750,0x821701C8 --dump-addr=0x828F3D08,0x828F4070 -n 50000000` +2026-05-04T15:04:29.149526Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso +2026-05-04T15:04:29.151286Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso +2026-05-04T15:04:29.151319Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso +2026-05-04T15:04:29.217493Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696 +2026-05-04T15:04:29.217892Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=66.0 path=sylpheed.iso bytes=3497984 +2026-05-04T15:04:29.222175Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso +2026-05-04T15:04:29.222306Z  INFO cmd_exec: xenia_rs: handle audit enabled (--trace-handles) path=sylpheed.iso +2026-05-04T15:04:29.222318Z  INFO cmd_exec: xenia_rs: handle audit focus: 3 (0x00001004, 0x0000100c, 0x000015e0) path=sylpheed.iso +2026-05-04T15:04:29.222324Z  INFO cmd_exec: xenia_rs: ctor probes armed: 3 (0x821701c8, 0x8217c850, 0x82181750) path=sylpheed.iso +2026-05-04T15:04:29.222329Z  INFO cmd_exec: xenia_rs: dump addresses armed: 2 (0x828f3d08, 0x828f4070) path=sylpheed.iso +2026-05-04T15:04:29.222480Z  INFO cmd_exec: xenia_rs: starting execution limit=50000000 path=sylpheed.iso +2026-05-04T15:04:29.222487Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso +2026-05-04T15:04:29.227044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.227069Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1401403 sp=0x700ffc40 r3=0x00000000 lr=0x8280f824 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f824 saved-r31=0x8287017c saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403264 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f83c + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f83c saved-r31=0x82870180 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403292 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f84c + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f84c saved-r31=0x8289ac74 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403338 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f87c + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f87c saved-r31=0x8289ac74 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870184 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403368 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f894 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f894 saved-r31=0x82870184 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870184 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403396 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f8a4 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f8a4 saved-r31=0x8289ac9c saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870184 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403442 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f8d4 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f8d4 saved-r31=0x8289ac9c saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870188 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403472 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f8ec + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f8ec saved-r31=0x82870188 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870188 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403517 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f918 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f918 saved-r31=0x8289acc4 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870188 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403564 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f94c + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f94c saved-r31=0x8287018c saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870190 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403594 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f964 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f964 saved-r31=0x82870190 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870190 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403640 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f994 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f994 saved-r31=0x8289ad14 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870194 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403670 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f9ac + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f9ac saved-r31=0x82870194 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870194 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403716 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f9dc + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f9dc saved-r31=0x8289ad3c saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870198 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403746 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f9f4 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f9f4 saved-r31=0x82870198 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870198 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403774 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa04 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa04 saved-r31=0x8289ad64 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870198 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403820 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa34 + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa34 saved-r31=0x8289ad64 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x8287019c saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403850 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa4c + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa4c saved-r31=0x8287019c saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x8287019c saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403878 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa5c + CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa5c saved-r31=0x8289ad8c saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x8287019c saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +2026-05-04T15:04:29.441380Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x82181750 tid=1 hw=0 cycle=5363599 sp=0x700ff8c0 r3=0x828f3d08 lr=0x82180114 + CTOR-PROBE frame=0 fp=0x700ff8c0 lr=0x82180114 saved-r31=0x00000000 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff920 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff980 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +2026-05-04T15:04:29.441477Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.441490Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=2 handle=0x1010 hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1018 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442258Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x101c hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442302Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1020 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1024 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442479Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1028 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x102c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1030 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442988Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.442996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1040 hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.443275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1030) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.443931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1048 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.443980Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x104c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.444056Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1050 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.444074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1054 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.444087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1058 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.444216Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x105c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.444228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615/e" err=File not found: cache:/d4ea4615/e handle=0x1060 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.444239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1064 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.447884Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1068 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.449891Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x1074 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.450138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.450671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x107c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.450703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1080 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.450848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1084 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.450876Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1088 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.450910Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x108c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.451051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1090 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.451062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/e" err=File not found: cache:/69d8e45c/e handle=0x1094 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.451071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x1098 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.452228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x10a0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.452507Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.452865Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.452874Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x10b8 hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.453497Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10bc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.453543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10c0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.453820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10c4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.453896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10c8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.453981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10cc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.454417Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10d0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.454444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x10d4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.454465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10d8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.459307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.459480Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:29.459478Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0accb000 size_bytes=4096 size_dwords=1024 +2026-05-04T15:04:29.459503Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64 +2026-05-04T15:04:29.459494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10e8 hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.360963Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b0d7000 width=1280 height=720 +2026-05-04T15:04:30.380730Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.380749Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10f4 hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=6160023 sp=0x700ff760 r3=0x700ff810 lr=0x82173a40 + CTOR-PROBE frame=0 fp=0x700ff760 lr=0x82173a40 saved-r31=0x700ff760 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff880 lr=0x822f1b50 saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +2026-05-04T15:04:30.382041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.382912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1108 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.382964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x110c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.383307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1110 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.383350Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1114 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.383406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1118 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.383678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x111c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.383692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/a" err=File not found: cache:/aab216c3/a handle=0x1120 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.383703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1124 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.562958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x112c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.563277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x112c) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.567860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1134 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.567906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1138 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.568143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x113c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.568172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1140 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.568208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1144 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.568353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1148 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.568370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x114c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.568381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1150 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.579213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1158 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.579560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.580447Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1168 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.580501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x116c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.580964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1170 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.581006Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1174 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.581060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1178 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.581305Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x117c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.581318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1180 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.581330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1184 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.622911Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.622934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x1188 hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.622957Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.622962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x118c hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.623257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b8ef000 driver=0x41550000 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.680065Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.680279Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.680454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.680622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.680803Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.680999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.681167Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.681338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.681506Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.681678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.681846Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.682013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.682180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.682351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.682521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.682693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.682862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.683032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.683199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.683365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.683565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.683741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.683908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.684074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.684251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.684415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.684579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.684795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.684974Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.685146Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.685315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.685492Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.685663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.685831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.686001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.686180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.686348Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.686516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.686686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.686855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.687020Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.687186Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.687355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.687554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.687807Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.687984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.688175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.688434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.688619Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.688808Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.689018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.689340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.689523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.689707Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.689880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.690068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.690238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.690411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.690580Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.690756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.690932Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.691106Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.691276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.691443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.691607Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.691782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.691948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.692115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.692252Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.694202Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.694217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x12ac hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.694702Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.694712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x12b8 hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.696615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.697501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12d0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.697551Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12d4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.698052Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12d8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.698094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12dc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.698153Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12e0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.698432Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12e4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.698446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/5" err=File not found: cache:/aab216c3/5 handle=0x12e8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.698459Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12ec path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.699285Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.699294Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x12f0 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.699392Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.699400Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12f8 hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.699431Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.699437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12fc hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.703604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1304 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.705335Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1310 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.705624Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1310) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1318 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x131c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1320 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1324 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1328 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x132c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/c" err=File not found: cache:/69d8e45c/c handle=0x1330 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.706790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1334 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.707378Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.708058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.712573Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1344 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.720917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x1348 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.725071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.725317Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.725568Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.725810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.726077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.726325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.726584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.726869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.727109Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.727345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.727577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.727845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.728191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.733167Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.737741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.738067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.738274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.738521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.738789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.738968Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.739164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.739333Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.739498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.739670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.739835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.740000Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.740166Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.740334Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.740500Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.740671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.740850Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.741033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.741198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.741361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.741581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.741756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.741921Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.742084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.742248Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.742417Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.742583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.742761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.742927Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.743092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.743258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.743422Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.743587Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.743766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.743929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.744091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.744269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.744435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.744599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.744780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.744947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.745112Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.745280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.745446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.745611Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.745780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.745945Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.746110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.746274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.746470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.749953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x1484 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1488 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x148c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1490 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752617Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1494 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752767Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1498 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x149c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.752789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x14a0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.753210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.753693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.755982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14ac path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.759060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14b8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767233Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14bc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14c0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767711Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14c4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14c8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14cc path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14d0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.767957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14d4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.768504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.773382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.773582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.773779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.773958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.774130Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.774301Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.774473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.774651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.774839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.775012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.775183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.775353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.775524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.775705Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.775878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.776048Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.776218Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.776388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.776556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.776730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.867680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x152c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.867743Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1530 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.868182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1534 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.868211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1538 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.868257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x153c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.868437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1540 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.868453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x1544 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.868464Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x1548 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.868983Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.870790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1550 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.870829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1554 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.871483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1558 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.871519Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x155c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.871568Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1560 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.871753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1564 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.871768Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/2" err=File not found: cache:/87719002/2 handle=0x1568 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.871779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x156c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.872269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.876979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.877157Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.877332Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.877552Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.877728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.877898Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.878073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.878246Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.878418Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.878572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x159c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15a0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926605Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15a4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15a8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15ac path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15b0 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x15b4 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.926857Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15b8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.927387Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(11) is_main=false cycle=18574608 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.927615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.927663Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.927671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x15c8 hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9170927 sp=0x700ff620 r3=0x00000000 lr=0x821cceb0 + CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821cceb0 saved-r31=0x400065a0 saved-r30=0x700ff6a0 + CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9170985 sp=0x700ff620 r3=0x00000000 lr=0x821ccec8 + CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821ccec8 saved-r31=0x700ff620 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9171042 sp=0x700ff620 r3=0x00000000 lr=0x821ccedc + CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821ccedc saved-r31=0x700ff620 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9171102 sp=0x700ff620 r3=0x00000000 lr=0x821ccefc + CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821ccefc saved-r31=0x700ff620 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9171172 sp=0x700ff6a0 r3=0x00000000 lr=0x821c53e0 + CTOR-PROBE frame=0 fp=0x700ff6a0 lr=0x821c53e0 saved-r31=0x700ff6a0 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +2026-05-04T15:04:30.934366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x15d8 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.934437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15dc path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x821701c8 tid=1 hw=0 cycle=9203618 sp=0x700ff5c0 r3=0x828f4070 lr=0x8216f65c + CTOR-PROBE frame=0 fp=0x700ff5c0 lr=0x8216f65c saved-r31=0x40929b60 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x700ff630 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x700ff6a0 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000 + CTOR-PROBE frame=7 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 +2026-05-04T15:04:30.936085Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x15e4 hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936629Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x15f4 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936769Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1600 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936825Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1608 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x160c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.936985Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1610 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.937132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1614 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.937590Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1618 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.937610Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x161c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:30.937626Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x1620 path=sylpheed.iso max=Some(50000000) ips=None +CTOR-PROBE pc=0x8217c850 tid=7 hw=2 cycle=3368 sp=0x71187c00 r3=0x00000000 lr=0x821ccf70 + CTOR-PROBE frame=0 fp=0x71187c00 lr=0x821ccf70 saved-r31=0x00000000 saved-r30=0x00000000 + CTOR-PROBE frame=1 fp=0x71187c80 lr=0x821c7d64 saved-r31=0x40929b60 saved-r30=0x00000000 + CTOR-PROBE frame=2 fp=0x71187ce0 lr=0x82174664 saved-r31=0x71187ce0 saved-r30=0x00000000 + CTOR-PROBE frame=3 fp=0x71187d70 lr=0x822f2144 saved-r31=0x40d09a40 saved-r30=0x00000000 + CTOR-PROBE frame=4 fp=0x71187e20 lr=0x822f2034 saved-r31=0x40d09a40 saved-r30=0x00000000 + CTOR-PROBE frame=5 fp=0x71187ea0 lr=0x822f1f08 saved-r31=0x40d09a40 saved-r30=0x00000000 + CTOR-PROBE frame=6 fp=0x71187f00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000 +2026-05-04T15:04:31.839228Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b0d7000 width=1280 height=720 +2026-05-04T15:04:31.839404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.844560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1628 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.844654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x162c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.846687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1630 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.846803Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1634 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.846982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1638 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.847686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x163c path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.847709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/0" err=File not found: cache:/87719002/0 handle=0x1640 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.847727Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1644 path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.849275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.858660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.859103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.859505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.859916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.860318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.860725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.861127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.861527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.861933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.862336Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.862747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.863148Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.863562Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.863972Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.864371Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.864780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.865183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.865584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.865996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.866401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.866810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.867210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.867615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.868026Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.868435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.868846Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.869253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.869660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.870087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.870498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.870915Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.871321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.871731Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.872136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.872546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.873052Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.873457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.873870Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.874274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.874680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.875082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.875482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.875890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.876292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.876696Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.877097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.877505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.877909Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.878393Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.881518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.890439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.890890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.891297Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.891704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.892108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.892508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.892913Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.893315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.893723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.894133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.894533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.894939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.895346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.895819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.896230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.896854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.897256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.897660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.898063Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.898463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.898873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.899273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.899682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.900087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.900495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.900906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.901313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.901720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.902124Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.902528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.902936Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.903393Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.903801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.904203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.904605Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.905013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.905413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.905824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.906226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.906626Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.907036Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.907439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.907849Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.908258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.908665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.909067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.909467Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.909871Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.910271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.910681Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.911092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.911491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.911895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.912296Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.912699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.913100Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.913503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.913908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.914308Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.914713Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.915123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.915556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.915970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.916373Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.916779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.917180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.917582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.917987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.918389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.918796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.919198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.919600Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.920007Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.920411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.920818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.921219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.921620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.922032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.922433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.922838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.923241Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.923641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.924050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.924449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.924859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.925258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.925664Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.926066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.926468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.926873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.927272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.927674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.928129Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.928529Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.928937Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.929338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.929741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.930142Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.930540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.930948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.931347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.931760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.932245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.932671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.933079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.933481Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.933893Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.934360Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:31.938875Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14ac) path=sylpheed.iso max=Some(50000000) ips=None +2026-05-04T15:04:33.034626Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=50000000 path=sylpheed.iso max=Some(50000000) ips=None + +=== Final State === +PC: 0x825f0fd8 +LR: 0x824ac578 +CTR: 0x823e9d90 +CR: 0x24000024 +XER: CA=0 OV=0 SO=0 +r0 : 0x0000000082153bd8 +r1 : 0x00000000700ff880 +r2 : 0x0000000020000000 +r4 : 0x0000000000000001 +r7 : 0x0000000040111a50 +r11: 0x0000000000000127 +r12: 0x00000000822f1e00 +r13: 0x000000007fff0000 +r18: 0x0000000040d09a7c +r19: 0x0000000000000001 +r21: 0xffffffffffffffff +r22: 0x0000000040542740 +r23: 0x00000000828f3844 +r24: 0x0000000000000055 +r25: 0x00000000828e0000 +r26: 0x00000000828f3888 +r27: 0x0000000000000055 +r31: 0x00000000000010ec +2026-05-04T15:04:33.037817Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso + +=== Thread diagnostics === + hw=0 idx=0 tid=1 state=Ready pc=0x825f0fd8 lr=0x824ac578 sp=0x700ff880 + r0=0x82153bd8 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x40111a50 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000127 r12=0x822f1e00 r13=0x7fff0000 + hw=0 idx=1 tid=12 state=Ready pc=0x824ac578 lr=0x824ac578 sp=0x714a7970 + r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000007 r10=0x40542100 r11=0x00000001 r12=0x822dfc38 r13=0x4d0d3000 + hw=0 idx=2 tid=17 state=Ready pc=0x823dde30 lr=0xbcbcbcbc sp=0x7152bf00 + r0=0x00000000 r3=0x828f3c4c r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a4000 + hw=1 idx=0 tid=11 state=Exited(0) pc=0xbcbcbcbc lr=0xbcbcbcbc sp=0x71497f00 + r0=0x821511a0 r3=0x00000000 r4=0x4024b1a0 r5=0x402118c0 r6=0x03a72328 r7=0x03a723d0 + r8=0x43b7732c r9=0x828f0000 r10=0x00000001 r11=0x828f0000 r12=0xbcbcbcbc r13=0x4d0d1000 + hw=1 idx=1 tid=13 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x714d7e00 + r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d5000 + hw=1 idx=2 tid=15 state=Ready pc=0x825f1080 lr=0x824ab1d4 sp=0x7150bc90 + r0=0x821511a0 r3=0x7150bce8 r4=0x7150be68 r5=0x00000008 r6=0x00000000 r7=0x00000001 + r8=0x00000000 r9=0x7150bde8 r10=0x820b0000 r11=0x00000000 r12=0x824564e4 r13=0x4e0a0000 + hw=1 idx=3 tid=19 state=Ready pc=0x823ddb50 lr=0xbcbcbcbc sp=0x7172bf00 + r0=0x00000000 r3=0x828f3c88 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a8000 + hw=2 idx=0 tid=6 state=Blocked(WaitAny { handles: [1111821148], deadline: Some(42946672) }) pc=0x824cd4f4 lr=0x824cd4f4 sp=0x71087e60 + r0=0x00000000 r3=0x00000000 r4=0x00000003 r5=0x00000001 r6=0x00000000 r7=0x71087eb0 + r8=0x00000000 r9=0x00000000 r10=0x00000002 r11=0x00000002 r12=0xbcbcbcbc r13=0x4b0d5000 + hw=2 idx=1 tid=7 state=Ready pc=0x824bf49c lr=0x824bf494 sp=0x71187ae0 + r0=0x00000000 r3=0x00000001 r4=0x4244df00 r5=0x00000003 r6=0x00000000 r7=0x0000800e + r8=0x00000000 r9=0x00000001 r10=0x00000001 r11=0x00000000 r12=0x824bf494 r13=0x4b809000 + hw=3 idx=0 tid=3 state=Blocked(WaitAny { handles: [4116], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7102fb80 + r0=0x821511a0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a723d0 + r8=0x43b7732c r9=0x828f0000 r10=0x00000008 r11=0x00000000 r12=0x8245a660 r13=0x4acc5000 + hw=3 idx=1 tid=4 state=Blocked(WaitAny { handles: [4152, 4156], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7106fc90 + r0=0x821511d0 r3=0x00000000 r4=0x7106fcf0 r5=0x00000001 r6=0x00000001 r7=0x00000000 + r8=0x7106fce0 r9=0x43b77334 r10=0x00000002 r11=0x00000020 r12=0x82450b48 r13=0x4acc7000 + hw=3 idx=2 tid=14 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71507e00 + r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d7000 + hw=3 idx=3 tid=18 state=Blocked(WaitAny { handles: [5624, 16777216], deadline: None }) pc=0x824ab214 lr=0x824ab214 sp=0x7162bce0 + r0=0x00000000 r3=0x00000000 r4=0x7162bd40 r5=0x00000001 r6=0x00000001 r7=0x00000000 + r8=0x00000000 r9=0x00000013 r10=0x00000002 r11=0x00000020 r12=0x823ddbe4 r13=0x4e0a6000 + hw=4 idx=0 tid=8 state=Blocked(Suspended) pc=0x824d2878 lr=0xbcbcbcbc sp=0x71287f00 + r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8eb000 + hw=4 idx=1 tid=16 state=Blocked(WaitAny { handles: [5600], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0 + r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10 + r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x8217057c r13=0x4e0a2000 + hw=5 idx=0 tid=2 state=Blocked(WaitAny { handles: [4108], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0 + r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10 + r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x82181988 r13=0x4acc3000 + hw=5 idx=1 tid=5 state=Blocked(WaitAny { handles: [4272, 4276], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7107fc60 + r0=0x821511a0 r3=0x00000000 r4=0x7107fcc0 r5=0x00000001 r6=0x00000001 r7=0x00000000 + r8=0x7107fcb0 r9=0x00009030 r10=0x00000002 r11=0x00000020 r12=0x82458d68 r13=0x4acc9000 + hw=5 idx=2 tid=9 state=Blocked(Suspended) pc=0x824d2940 lr=0xbcbcbcbc sp=0x71387f00 + r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000 + r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8ed000 + hw=5 idx=3 tid=10 state=Blocked(WaitAny { handles: [4100], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71397d90 + r0=0x82153c08 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a72328 + r8=0x43b7728c r9=0x43b77328 r10=0x40541e00 r11=0x820b5714 r12=0x821789c8 r13=0x4d0cf000 + + -- Handle waiter lists -- + handle=0x000012f4 Semaphore(0/2147483647) waiters(tid)=[14, 13] + handle=0x0000103c Semaphore(0/2147483647) waiters(tid)=[4] + handle=0x0000100c Event(sig=false, mr=true) waiters(tid)=[2] + handle=0x00001038 Event(sig=false, mr=false) waiters(tid)=[4] + handle=0x000015e0 Event(sig=false, mr=true) waiters(tid)=[16] + handle=0x00001004 Event(sig=false, mr=true) waiters(tid)=[10] + handle=0x000010b0 Event(sig=false, mr=false) waiters(tid)=[5] + handle=0x42450b5c Event(sig=false, mr=true) waiters(tid)=[6] + handle=0x000015f8 Event(sig=false, mr=false) waiters(tid)=[18] + handle=0x00001014 Semaphore(0/2147483647) waiters(tid)=[3] + handle=0x000010b4 Semaphore(0/2147483647) waiters(tid)=[5] + +=== Handle audit trails === + handle=0x00001004 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=10 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x0000100c kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=2 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x00001014 kind=Semaphore waiters=1 signals=15 waits=16 wakes=15 + created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore + waits (16): + [ 0] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 1] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 2] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 3] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0 + ... (12 more) + signals (15): + [ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + ... (11 more) + wakes (15): + [ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + [ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + [ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + [ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + ... (11 more) + handle=0x00001038 kind=Event/Auto waiters=1 signals=0 waits=32 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (32): + [ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + handle=0x0000103c kind=Semaphore waiters=1 signals=32 waits=32 wakes=12 + created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore + waits (32): + [ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + signals (32): + [ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + [ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + [ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + [ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc + ... (28 more) + wakes (12): + [ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 2] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 3] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + ... (8 more) + handle=0x000010b0 kind=Event/Auto waiters=1 signals=0 waits=9 wakes=0 + created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent + waits (9): + [ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (5 more) + handle=0x000010b4 kind=Semaphore waiters=1 signals=8 waits=9 wakes=5 + created cycle=0 tid=4 lr=0x824ab110 src=NtCreateSemaphore + waits (9): + [ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (5 more) + signals (8): + [ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + ... (4 more) + wakes (5): + [ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + ... (1 more) + handle=0x000010dc kind=Semaphore waiters=0 signals=2 waits=3 wakes=2 + created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore + waits (3): + [ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + signals (2): + [ 0] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + [ 1] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0 + wakes (2): + [ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + [ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + handle=0x000010f0 kind=Event/Manual waiters=0 signals=1 waits=3 wakes=1 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (3): + [ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4 + signals (1): + [ 0] cycle=0 tid=1 lr=0x824aa304 src=NtSetEvent aux=0x0 + wakes (1): + [ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/manual aux=0x0 + handle=0x000010fc kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=1 lr=0x824ac578 src=do_wait_single aux=0x0 + signals (1): + [ 0] cycle=0 tid=4 lr=0x824aa304 src=NtSetEvent aux=0x0 + wakes (1): + [ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + handle=0x00001104 kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 + created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=4 lr=0x824ac578 src=do_wait_single aux=0x0 + signals (1): + [ 0] cycle=0 tid=5 lr=0x824aa304 src=NtSetEvent aux=0x0 + wakes (1): + [ 0] cycle=0 tid=5 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0 + handle=0x000012f4 kind=Semaphore waiters=2 signals=0 waits=2 wakes=0 + created cycle=0 tid=12 lr=0x824ab110 src=NtCreateSemaphore + waits (2): + [ 0] cycle=0 tid=14 lr=0x824ac578 src=do_wait_single aux=0x0 + [ 1] cycle=0 tid=13 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x000015bc kind=Timer/Auto waiters=0 signals=0 waits=32 wakes=1 + created cycle=0 tid=1 lr=0x82612744 src=NtCreateTimer + waits (32): + [ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + wakes (1): + [ 0] cycle=9168371 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1 + handle=0x000015c0 kind=Event/Auto waiters=0 signals=0 waits=32 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (32): + [ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + [ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4 + ... (28 more) + handle=0x000015e0 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=16 lr=0x824ac578 src=do_wait_single aux=0x0 + handle=0x000015f8 kind=Event/Auto waiters=1 signals=0 waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + waits (1): + [ 0] cycle=0 tid=18 lr=0x824ab214 src=do_wait_multiple aux=0x4 + +=== Handle audit (focus) === + handle=0x00001004 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + created stack (6 frames): + [ 0] fp=0x700ffab0 lr=0x824a9f6c + [ 1] fp=0x700ffb40 lr=0x821784f8 + [ 2] fp=0x700ffbd0 lr=0x8217c8a8 + [ 3] fp=0x700ffc40 lr=0x8280f824 + [ 4] fp=0x700ffca0 lr=0x824acbf0 + [ 5] fp=0x700ffd10 lr=0x824ab7a8 + created-class probes (6): + frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ffb00 + frame=1 lr=0x821784f8 saved-r31=0x700ffb40 saved-r30=0x00000000 + frame=2 lr=0x8217c8a8 saved-r31=0x700ffbd0 saved-r30=0x00000000 + frame=3 lr=0x8280f824 saved-r31=0x82870180 saved-r30=0x00000000 + frame=4 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000 + frame=5 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000 + timeline (last 16 of 1): + cycle=0 tid=10 lr=0x824ac578 src=do_wait_single[wait] aux=0x0 + -- DIAGNOSIS -- + GuestExport=0 KernelInternal=0 waits=1 + => producer is a missing kernel signal source (or BST-paradox upstream) + WAIT-THREAD tid=10 pc=0x824ac578 lr=0x824ac578 sp=0x71397d90 r3=0x00000000 r30=0x00000000 r31=0x00001004 + FRAME 0 fp=0x71397d90 lr=0x824ac578 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 1 fp=0x71397e10 lr=0x821789c8 saved r31=0x71397e10 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 2 fp=0x71397f00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + handle=0x0000100c kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + created stack (6 frames): + [ 0] fp=0x700ff7c0 lr=0x824a9f6c + [ 1] fp=0x700ff850 lr=0x821817c0 + [ 2] fp=0x700ff8c0 lr=0x82180114 + [ 3] fp=0x700ff920 lr=0x82181c58 + [ 4] fp=0x700ff980 lr=0x8216eaa4 + [ 5] fp=0x700ffd10 lr=0x824ab8e0 + created-class probes (6): + frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff810 + frame=1 lr=0x821817c0 saved-r31=0x828f3d08 saved-r30=0x00000000 + frame=2 lr=0x82180114 saved-r31=0x828f3d08 saved-r30=0x00000000 + frame=3 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000 + frame=4 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000 + frame=5 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000 + timeline (last 16 of 1): + cycle=0 tid=2 lr=0x824ac578 src=do_wait_single[wait] aux=0x0 + -- DIAGNOSIS -- + GuestExport=0 KernelInternal=0 waits=1 + => producer is a missing kernel signal source (or BST-paradox upstream) + WAIT-THREAD tid=2 pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0 r3=0x00000000 r30=0x00000000 r31=0x0000100c + FRAME 0 fp=0x7101fdf0 lr=0x824ac578 saved r31=0x828f3d34 r30=0x00000000 r29=0x828f3d08 r28=0x00000000 + FRAME 1 fp=0x7101fe70 lr=0x82181988 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 2 fp=0x7101ff00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + handle=0x000015e0 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0 + created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent + created stack (6 frames): + [ 0] fp=0x700ff4c0 lr=0x824a9f6c + [ 1] fp=0x700ff550 lr=0x82170210 + [ 2] fp=0x700ff5c0 lr=0x8216f65c + [ 3] fp=0x700ff630 lr=0x821707f8 + [ 4] fp=0x700ff6a0 lr=0x821c5418 + [ 5] fp=0x700ff720 lr=0x82172d8c + created-class probes (6): + frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff510 + frame=1 lr=0x82170210 saved-r31=0x700ff550 saved-r30=0x00000000 + frame=2 lr=0x8216f65c saved-r31=0x700ff5c0 saved-r30=0x00000000 + frame=3 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000 + frame=4 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000 + frame=5 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000 + timeline (last 16 of 1): + cycle=0 tid=16 lr=0x824ac578 src=do_wait_single[wait] aux=0x0 + -- DIAGNOSIS -- + GuestExport=0 KernelInternal=0 waits=1 + => producer is a missing kernel signal source (or BST-paradox upstream) + WAIT-THREAD tid=16 pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0 r3=0x00000000 r30=0x00000000 r31=0x000015e0 + FRAME 0 fp=0x7151bdf0 lr=0x824ac578 saved r31=0x828f4070 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 1 fp=0x7151be70 lr=0x8217057c saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + FRAME 2 fp=0x7151bf00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000 + +=== Dump-addr === + addr=0x828f3d08 + +0x00: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................ + +0x10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x20: 00 00 00 00 00 00 00 00 00 00 00 07 01 00 00 00 | be32=00000000 00000000 00000007 01000000 | ................ + +0x30: 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff | be32=00000000 00000000 00000000 ffffffff | ................ + +0x40: 00 00 00 00 00 00 00 00 00 00 10 10 00 00 10 0c | be32=00000000 00000000 00001010 0000100c | ................ + +0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x70: 00 00 00 01 82 8f 3d 08 00 00 00 00 00 00 00 00 | be32=00000001 828f3d08 00000000 00000000 | ......=......... + addr=0x828f4070 + +0x00: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=01000000 00000000 00000000 00000000 | ................ + +0x10: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 15 e4 | be32=ffffffff 00000000 00000000 000015e4 | ................ + +0x20: 00 00 15 e0 00 00 00 00 00 00 00 00 00 00 00 00 | be32=000015e0 00000000 00000000 00000000 | ................ + +0x30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 | be32=00000000 00000000 00000000 00000008 | ................ + +0x40: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................ + +0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................ + +0x60: 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000001 00000000 00000000 00000000 | ................ + +0x70: 00 00 00 01 00 00 00 00 00 00 00 00 ff ff 00 00 | be32=00000001 00000000 00000000 ffff0000 | ................ +2026-05-04T15:04:33.038474Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=3888 instructions=50000008 import_calls=407415 unimplemented=0 path=sylpheed.iso +2026-05-04T15:04:33.047643Z  INFO xenia_rs::observability: metrics summary: + histogram xex.load_image_ms = count=1 sum=66.000 min=66.000 max=66.000 mean=66.000 + counter xex.bytes_in = 3485696 + counter xex.bytes_out = 9568256 + counter kernel.calls{name=RtlImageXexHeaderField} = 2 + counter kernel.calls{name=NtAllocateVirtualMemory} = 2 + counter kernel.calls{name=KeGetCurrentProcessType} = 3 + counter kernel.calls{name=RtlInitializeCriticalSection} = 29 + counter kernel.calls{name=RtlEnterCriticalSection} = 79315 + counter kernel.calls{name=RtlLeaveCriticalSection} = 79315 + counter kernel.calls{name=XexCheckExecutablePrivilege} = 1 + counter kernel.calls{name=KeTlsAlloc} = 2 + counter kernel.calls{name=KeTlsSetValue} = 2 + counter kernel.calls{name=KeQuerySystemTime} = 1 + counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104 + counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17 + counter kernel.calls{name=NtCreateEvent} = 394 + counter kernel.calls{name=KeQueryPerformanceFrequency} = 6 + counter kernel.calls{name=NtCreateFile} = 88 + counter kernel.calls{name=NtReadFile} = 346 + counter kernel.calls{name=NtClose} = 544 + counter kernel.calls{name=RtlNtStatusToDosError} = 35 + counter kernel.calls{name=ExCreateThread} = 18 + counter scheduler.spawn.ok = 18 + counter kernel.calls{name=ObReferenceObjectByHandle} = 15 + counter kernel.calls{name=KeSetAffinityThread} = 12 + counter kernel.calls{name=ObDereferenceObject} = 17 + counter kernel.calls{name=XamContentCreateEnumerator} = 1 + counter kernel.calls{name=XamEnumerate} = 1 + counter kernel.calls{name=NtWaitForSingleObjectEx} = 94889 + counter kernel.calls{name=NtCreateSemaphore} = 10 + counter kernel.calls{name=RtlInitAnsiString} = 167 + counter kernel.calls{name=NtOpenFile} = 49 + counter kernel.calls{name=NtQueryVolumeInformationFile} = 16 + counter kernel.calls{name=NtQueryDirectoryFile} = 1 + counter kernel.calls{name=NtQueryInformationFile} = 380 + counter kernel.calls{name=NtQueryFullAttributesFile} = 16 + counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55701 + counter kernel.calls{name=NtDuplicateObject} = 36 + counter kernel.calls{name=NtReleaseSemaphore} = 393 + counter kernel.calls{name=NtSetInformationFile} = 77 + counter kernel.calls{name=NtWriteFile} = 43 + counter kernel.calls{name=NtSetEvent} = 334 + counter kernel.calls{name=MmFreePhysicalMemory} = 12 + counter kernel.calls{name=XamNotifyCreateListener} = 1 + counter kernel.calls{name=VdInitializeEngines} = 2 + counter kernel.calls{name=VdShutdownEngines} = 1 + counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 2 + counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1 + counter kernel.calls{name=ExGetXConfigSetting} = 3 + counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2 + counter kernel.calls{name=MmGetPhysicalAddress} = 1 + counter kernel.calls{name=VdInitializeRingBuffer} = 1 + counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1 + counter kernel.calls{name=KiApcNormalRoutineNop} = 1 + counter kernel.calls{name=KeSetBasePriorityThread} = 3 + counter kernel.calls{name=KeWaitForSingleObject} = 1 + counter kernel.calls{name=VdQueryVideoMode} = 2 + counter kernel.calls{name=VdQueryVideoFlags} = 2 + counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1 + counter kernel.calls{name=KeEnterCriticalRegion} = 3 + counter kernel.calls{name=VdRetrainEDRAMWorker} = 1 + counter kernel.calls{name=VdRetrainEDRAM} = 3 + counter kernel.calls{name=KeLeaveCriticalRegion} = 3 + counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1 + counter kernel.calls{name=VdGetSystemCommandBuffer} = 2 + counter kernel.calls{name=VdSwap} = 2 + counter gpu.interrupt.delivered{source=1} = 2 + counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28 + counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28 + counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1 + counter gpu.interrupt.delivered{source=0} = 295 + counter kernel.calls{name=VdSetDisplayMode} = 1 + counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1 + counter kernel.calls{name=RtlFillMemoryUlong} = 1 + counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1 + counter kernel.calls{name=VdPersistDisplay} = 1 + counter kernel.calls{name=NtResumeThread} = 6 + counter kernel.calls{name=XGetGameRegion} = 2 + counter kernel.calls{name=KeInitializeSemaphore} = 1 + counter kernel.calls{name=KeResumeThread} = 2 + counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33 + counter kernel.calls{name=KfLowerIrql} = 26 + counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1 + counter kernel.calls{name=ObLookupThreadByThreadId} = 2 + counter kernel.calls{name=ObOpenObjectByPointer} = 2 + counter kernel.calls{name=XNotifyPositionUI} = 1 + counter kernel.calls{name=NtCreateTimer} = 1 + counter kernel.calls{name=NtSetTimerEx} = 1 + counter kernel.calls{name=XamInputGetCapabilities} = 8 + counter kernel.calls{name=XNotifyGetNext} = 94828 + counter kernel.calls{name=XamUserGetSigninState} = 4 + counter kernel.calls{name=XamUserGetXUID} = 1 diff --git a/crates/xenia-app/src/main.rs b/crates/xenia-app/src/main.rs index c901a40..f7b316a 100644 --- a/crates/xenia-app/src/main.rs +++ b/crates/xenia-app/src/main.rs @@ -176,6 +176,26 @@ enum Commands { /// `XENIA_XAUDIO_TICK=1`. #[arg(long)] xaudio_tick: bool, + /// Diagnostic. Comma-separated list of guest PCs at which the + /// worker prologue prints a one-shot `CTOR-PROBE` line capturing + /// live r3/lr/sp + an 8-frame back-chain. Hit-once-per-hit — for + /// the bridge ctor `sub_8217C850` called 8× from the + /// static-init driver, the probe fires 8×. Use to recover + /// pool-element `this` addresses that MSVC ctors fail to + /// preserve in r31. Read-only; lockstep digest unaffected. + /// Examples: `--ctor-probe=0x8217C850`, + /// `--ctor-probe=0x82181750,0x821701C8`. + #[arg(long)] + ctor_probe: Option, + /// Diagnostic. Comma-separated list of guest addresses to dump + /// (64 bytes each, hex + u32 lanes) at end-of-run, after the + /// per-handle FOCUS report. Used to inspect the static + /// dispatcher / job-queue / pool struct layouts identified by + /// AUDIT-003 (e.g. `--dump-addr=0x828F3D08,0x828F4070`). The + /// dump captures a snapshot at the moment `dump_thread_diagnostic` + /// runs — typically when `--halt-on-deadlock` triggers. + #[arg(long)] + dump_addr: Option, }, /// Browse XISO disc image contents Browse { @@ -331,6 +351,8 @@ fn main() -> Result<()> { reservations_table, parallel, xaudio_tick, + ctor_probe, + dump_addr, } => cmd_exec( &path, max_instructions, @@ -349,6 +371,8 @@ fn main() -> Result<()> { reservations_table, parallel, xaudio_tick, + ctor_probe.as_deref(), + dump_addr.as_deref(), ), Commands::Browse { path } => cmd_browse(&path), Commands::Info { path } => cmd_info(&path), @@ -550,6 +574,8 @@ fn cmd_exec( reservations_table: bool, parallel: bool, xaudio_tick: bool, + ctor_probe: Option<&str>, + dump_addr: Option<&str>, ) -> Result<()> { cmd_exec_inner( path, @@ -569,6 +595,8 @@ fn cmd_exec( reservations_table, parallel, xaudio_tick, + ctor_probe, + dump_addr, None, None, false, @@ -607,6 +635,8 @@ fn cmd_check( reservations_table, parallel, xaudio_tick, + None, // ctor_probe — diagnostic, never wanted on goldens + None, // dump_addr — same out, expect, stable_digest, @@ -631,6 +661,8 @@ fn cmd_exec_inner( reservations_table: bool, parallel: bool, xaudio_tick: bool, + ctor_probe: Option<&str>, + dump_addr: Option<&str>, digest_out: Option<&str>, digest_expect: Option<&str>, stable_digest: bool, @@ -879,6 +911,89 @@ fn cmd_exec_inner( } } + // Diagnostic. Parse `--ctor-probe=0x8217C850,0x...` (or + // `XENIA_CTOR_PROBE=...`) into `kernel.ctor_probe_pcs`. The + // worker prologue checks this set on every step; on a hit it + // prints a single back-chain capture line. Empty set = no + // probes = no-op fast path. + let ctor_probe_combined: Option = match (ctor_probe, std::env::var("XENIA_CTOR_PROBE").ok()) { + (Some(s), _) => Some(s.to_string()), + (None, Some(s)) if !s.is_empty() => Some(s), + _ => None, + }; + if let Some(list) = ctor_probe_combined { + for token in list.split(',').map(str::trim).filter(|s| !s.is_empty()) { + let parsed = if let Some(hex) = token.strip_prefix("0x").or_else(|| token.strip_prefix("0X")) { + u32::from_str_radix(hex, 16) + } else { + token.parse::() + }; + match parsed { + Ok(pc) => { + kernel.ctor_probe_pcs.insert(pc); + } + Err(_) => { + return Err(anyhow::anyhow!( + "invalid PC in --ctor-probe: {token:?}" + )); + } + } + } + if !quiet && !kernel.ctor_probe_pcs.is_empty() { + let pcs: Vec = kernel + .ctor_probe_pcs + .iter() + .map(|p| format!("{p:#010x}")) + .collect(); + tracing::info!( + "ctor probes armed: {} ({})", + kernel.ctor_probe_pcs.len(), + pcs.join(", ") + ); + } + } + + // Diagnostic. Parse `--dump-addr=0x828F3D08,...` (or + // `XENIA_DUMP_ADDR=...`) into `kernel.dump_addrs`. The contents + // are dumped at end-of-run by `dump_thread_diagnostic`. Pure + // read; never mutates guest state. + let dump_addr_combined: Option = match (dump_addr, std::env::var("XENIA_DUMP_ADDR").ok()) { + (Some(s), _) => Some(s.to_string()), + (None, Some(s)) if !s.is_empty() => Some(s), + _ => None, + }; + if let Some(list) = dump_addr_combined { + for token in list.split(',').map(str::trim).filter(|s| !s.is_empty()) { + let parsed = if let Some(hex) = token.strip_prefix("0x").or_else(|| token.strip_prefix("0X")) { + u32::from_str_radix(hex, 16) + } else { + token.parse::() + }; + match parsed { + Ok(addr) => { + kernel.dump_addrs.push(addr); + } + Err(_) => { + return Err(anyhow::anyhow!( + "invalid address in --dump-addr: {token:?}" + )); + } + } + } + if !quiet && !kernel.dump_addrs.is_empty() { + let addrs: Vec = kernel + .dump_addrs + .iter() + .map(|a| format!("{a:#010x}")) + .collect(); + tracing::info!( + "dump addresses armed: {} ({})", + kernel.dump_addrs.len(), + addrs.join(", ") + ); + } + } + // Install the GPU register aperture MMIO region on the guest memory so // any `0x7FC8xxxx` access routes to our atomic mailbox. Matches canary's // `graphics_system.cc:141-144`. The callbacks capture Arc clones of the @@ -1812,6 +1927,13 @@ fn worker_prologue( let pc = kernel.scheduler.ctx(hw_id).pc; + // 0) Diagnostic ctor-probe: if `pc` is in + // `kernel.ctor_probe_pcs`, capture live r3/lr/sp + back-chain + // and println one record. Read-only; lockstep digest unaffected. + // Empty set is the common case → single `is_empty()` test inside + // the helper, no overhead on the hot path. + kernel.fire_ctor_probe_if_match(hw_id, mem); + // 1) Halt-sentinel check (per HW thread). if pc == LR_HALT { let injected_here = kernel.interrupts.saved.is_some() @@ -3405,6 +3527,56 @@ fn dump_thread_diagnostic( } } } + + // Diagnostic. `--dump-addr` content dump at end-of-run. Each + // address gets a 64-byte dump in three forms (raw bytes, u32 + // big-endian lanes, ASCII guess). The lanes form is gold for + // pool-element / dispatcher struct reverse-engineering: at + // [base+0]=-1 means "empty queue" sentinel from AUDIT-003, while + // any image-range pointer `0x82xxxxxx` at a fixed offset hints + // at an embedded silph::Event* / vtable / next-link. + if !kernel.dump_addrs.is_empty() { + println!("\n=== Dump-addr ==="); + const DUMP_BYTES: usize = 128; + for &addr in &kernel.dump_addrs { + println!(" addr={:#010x}", addr); + let mut bytes = [0u8; DUMP_BYTES]; + for i in 0..DUMP_BYTES { + bytes[i] = mem.read_u8(addr.wrapping_add(i as u32)); + } + for row in 0..(DUMP_BYTES / 16) { + let off = row * 16; + let hex: String = (0..16) + .map(|i| format!("{:02x}", bytes[off + i])) + .collect::>() + .join(" "); + let words: String = (0..4) + .map(|i| { + let b = &bytes[off + i * 4..off + i * 4 + 4]; + format!( + "{:08x}", + u32::from_be_bytes([b[0], b[1], b[2], b[3]]) + ) + }) + .collect::>() + .join(" "); + let ascii: String = (0..16) + .map(|i| { + let b = bytes[off + i]; + if (0x20..=0x7E).contains(&b) { + b as char + } else { + '.' + } + }) + .collect(); + println!( + " +{:#04x}: {} | be32={} | {}", + off, hex, words, ascii, + ); + } + } + } } #[allow(clippy::too_many_arguments)] diff --git a/crates/xenia-kernel/src/state.rs b/crates/xenia-kernel/src/state.rs index 18a7a36..8101d7d 100644 --- a/crates/xenia-kernel/src/state.rs +++ b/crates/xenia-kernel/src/state.rs @@ -179,6 +179,30 @@ pub struct KernelState { /// backend (which lives on the worker thread under `--gpu-thread`). pub ring_base: u32, pub ring_size_dwords: u32, + /// Diagnostic. PCs at which the worker prologue fires a one-shot + /// stack/back-chain dump capturing live `r3` (= `this` in MSVC + /// PPC ctors), `lr` (= return site), and the cycle/tid that hit + /// the PC. Populated from `--ctor-probe=0x8217C850,0x...` / + /// `XENIA_CTOR_PROBE`. Empty by default → check is a single + /// `is_empty()` test, no extra cost on the unprobed hot path. + /// Read-only diagnostic — no guest state is mutated, so the + /// `sylpheed_n*m.json` lockstep digest is preserved. + /// + /// **Why a per-PC probe instead of per-handle?** The MSVC ctors + /// at `sub_8217C850` (and friends) don't preserve `this` in r31 + /// across the inner `bl` to `silph::Event::Construct`, so the + /// AUDIT-002 multi-frame back-chain at `NtCreateEvent` only + /// recovers stack-relative pointers — never the pool-element + /// `this`. Hooking the ctor's PRE-prologue PC captures r3 = this + /// before any save/restore can clobber it. + pub ctor_probe_pcs: std::collections::HashSet, + /// Diagnostic. Guest addresses to dump (64 bytes each, hex + u32 + /// lanes) at end-of-run. Populated from `--dump-addr=0x828F3D08, + /// 0x828F4070`. Used to inspect static dispatcher / job-queue / + /// pool struct layouts identified by AUDIT-003. Read-only — the + /// dump is performed by `dump_thread_diagnostic`, never during + /// the hot interpreter loop, so lockstep determinism is unaffected. + pub dump_addrs: Vec, } impl KernelState { @@ -230,6 +254,8 @@ impl KernelState { ring_base: 0, ring_size_dwords: 0, parallel_active: false, + ctor_probe_pcs: std::collections::HashSet::new(), + dump_addrs: Vec::new(), }; crate::exports::register_exports(&mut state); crate::xam::register_exports(&mut state); @@ -522,6 +548,48 @@ impl KernelState { self.audit.record_wake(handle, entry); } + /// Diagnostic. If the live PC for HW slot `hw_id` is in + /// `self.ctor_probe_pcs`, emit a single `CTOR-PROBE` line with + /// the current cycle, tid, hw_id, sp, r3, lr, plus an 8-frame + /// back-chain walk. Read-only — no guest state is mutated, so a + /// run with the probe set is byte-identical to one without (the + /// probe only adds println noise). + /// + /// Intended call site: top of `worker_prologue`, after `pc` has + /// been read but before any thunk-dispatch / step-block branch. + /// Fires once per hit — if the same PC is reached again (e.g. + /// the bridge ctor sub_8217C850 called 8 times by the static- + /// init driver), it fires 8 times, which is exactly what we want + /// for pool-element identification. + pub fn fire_ctor_probe_if_match(&self, hw_id: u8, mem: &GuestMemory) { + if self.ctor_probe_pcs.is_empty() { + return; + } + let ctx = self.scheduler.ctx(hw_id); + let pc = ctx.pc; + if !self.ctor_probe_pcs.contains(&pc) { + return; + } + let tid = self.scheduler.tid(hw_id).unwrap_or(0); + let r3 = ctx.gpr[3] as u32; + let lr = ctx.lr as u32; + let sp = ctx.gpr[1] as u32; + let cycle = ctx.cycle_count; + let frames = walk_guest_back_chain(sp, lr, mem, 8); + println!( + "CTOR-PROBE pc={:#010x} tid={} hw={} cycle={} sp={:#010x} r3={:#010x} lr={:#010x}", + pc, tid, hw_id, cycle, sp, r3, lr, + ); + for (i, (fp, frame_lr)) in frames.iter().enumerate() { + let saved_r31 = mem.read_u32(fp.wrapping_sub(12)); + let saved_r30 = mem.read_u32(fp.wrapping_sub(16)); + println!( + " CTOR-PROBE frame={} fp={:#010x} lr={:#010x} saved-r31={:#010x} saved-r30={:#010x}", + i, fp, frame_lr, saved_r31, saved_r30, + ); + } + } + /// Read a TLS slot for the currently running HW thread. pub fn tls_get(&self, index: u32) -> u64 { self.scheduler.tls_get(index) @@ -1231,6 +1299,38 @@ mod tests { /// A NUL-terminated ASCII string is read up to `max`; non-printable /// bytes mark the candidate as bogus (return empty string). The /// `.?A` prefix gating in `read_class_at_this` then rejects them. + /// `fire_ctor_probe_if_match` only emits when `pc` matches a + /// configured PC. We assert it's a no-op on miss and a no-panic + /// on hit (the println goes to stdout; we just check the helper + /// reads the back-chain without faulting). + #[test] + fn fire_ctor_probe_if_match_no_op_on_empty_set() { + let mem = GuestMemory::new().expect("memory init"); + let state = KernelState::new(); + // No probes set → must be a no-op even when the scheduler + // ctx has whatever PC. + state.fire_ctor_probe_if_match(0, &mem); + assert!(state.ctor_probe_pcs.is_empty()); + } + + #[test] + fn fire_ctor_probe_if_match_only_fires_on_listed_pc() { + // We can't easily redirect stdout under cargo-test, so this + // test mostly verifies the membership check + that no panic + // occurs when frame walking encounters zero/sentinel pages. + // The empty-stack walk returns just `[(sp, lr)]`, exercising + // the loop body once safely. + let mem = GuestMemory::new().expect("memory init"); + let mut state = KernelState::new(); + state.ctor_probe_pcs.insert(0x8217_C850); + // The default PpcContext on slot 0 has pc=0 (idle sentinel), + // so the probe set membership test misses → no fire. + state.fire_ctor_probe_if_match(0, &mem); + // Sanity: an unrelated PC isn't claimed. + assert!(!state.ctor_probe_pcs.contains(&0x8200_0000)); + assert!(state.ctor_probe_pcs.contains(&0x8217_C850)); + } + #[test] fn read_ascii_cstring_handles_termination_and_garbage() { use xenia_memory::page_table::MemoryProtect;