65 Commits

Author SHA1 Message Date
udo
6e4ef8ed7a Reuse core host definitions across requests 2026-07-18 00:55:29 +00:00
udo
c28b446541 Profile complete Wasm request timing 2026-07-17 19:11:05 +00:00
root
556bb06f81 Profile entry and component materialization 2026-07-17 18:28:49 +00:00
root
3e423f49dd Expose MySQL connection state 2026-07-17 18:05:04 +00:00
udo
dbb8ae2c4b Support nested Markdown heading levels 2026-07-17 05:27:00 +00:00
udo
8dbff881a1 Profile request thread runtime on demand 2026-07-17 03:05:37 +00:00
root
5a5450caa8 Keep hostcall CPU profiling off hot paths 2026-07-17 02:35:03 +00:00
root
c15fdc3346 Make hostcall CPU profiling configurable 2026-07-17 02:22:56 +00:00
root
672e5b66ef Profile hostcall thread CPU 2026-07-17 02:09:16 +00:00
root
aeab8df208 Attribute per-unit load phases accurately 2026-07-17 01:41:33 +00:00
root
51cbb19f7d Profile workspace CPU phases 2026-07-17 01:12:55 +00:00
root
0e43a89636 Document persistent MySQL worker pooling 2026-07-17 00:59:10 +00:00
udo
83c05111a9 Profile FastCGI transport phases 2026-07-16 20:49:13 +00:00
udo
bbfbd63b53 Skip wasm bodies on serialized module hits 2026-07-16 20:31:25 +00:00
udo
11025ab8b3 Profile cold unit module loading 2026-07-16 19:57:40 +00:00
udo
9c15d6d85d Profile unit symbol resolution cost 2026-07-16 18:30:11 +00:00
udo
ab3e4dac2e Remove slower unit symbol cache 2026-07-16 18:18:39 +00:00
udo
ea89e3bb6d Cache resolved unit symbols per request 2026-07-16 18:14:23 +00:00
udo
197719ea23 Profile side module loading phases 2026-07-16 18:01:31 +00:00
udo
fd276f8343 Profile component resolution subphases 2026-07-16 17:34:46 +00:00
udo
6a02c07bcb Reuse reset MySQL connections per worker 2026-07-16 17:00:28 +00:00
udo
b04ce3d005 Profile logical MySQL operations 2026-07-16 16:31:13 +00:00
udo
dc5ccee805 Profile request execution phases 2026-07-16 15:12:13 +00:00
udo
8eec28a639 Clarify CSRF field raw rendering 2026-07-14 00:04:43 +00:00
udo
7fabccd90a Add CSRF hidden field helper 2026-07-13 23:52:49 +00:00
udo
0187bb60cf docs: publish password hashing APIs 2026-07-13 19:47:06 +00:00
udo
c1039f5094 Parse standard absolute URL paths 2026-07-13 09:31:45 +00:00
udo
02ed75fc85 Invalidate units when loaded sources change 2026-07-13 07:42:52 +00:00
udo
d857930ceb Expose MySQL affected row counts 2026-07-13 07:10:03 +00:00
root
b1dfe6c807 Reuse MySQL connections within requests 2026-07-13 00:08:07 +00:00
udo
0ff42f357f Document request-scoped MySQL cleanup 2026-07-08 18:44:07 +00:00
udo
b8c2efe976 add native csrf helpers 2026-07-06 09:58:25 +00:00
root
991a0f62b4 harden runtime config and docs 2026-06-27 20:58:07 +00:00
root
4a6fc46ec8 docs: document runtime cache request param 2026-06-21 21:02:36 +00:00
root
c0f3c5507c fix doc example cache path 2026-06-21 20:59:01 +00:00
root
4eda629c8d cleanup, docs 2026-06-17 13:02:57 +00:00
root
b8b56cf3dd cleanup, docs 2026-06-16 23:02:45 +00:00
root
ea08d5f28b cleanup, docs 2026-06-16 12:21:31 +00:00
root
f2a3503ac3 configurable trans-membrance hostcall blocklist 2026-06-16 01:13:06 +00:00
root
52cf266a5e docs 2026-06-15 21:46:31 +00:00
root
99cd92fb4a docs 2026-06-15 21:42:50 +00:00
root
1a5c6547b9 post-W7 cleanup 2026-06-15 12:00:46 +00:00
root
abcb66717e W7 done done 2026-06-15 11:06:35 +00:00
root
1743c51e46 W7 done done 2026-06-15 11:04:16 +00:00
root
04745f39a8 W7 done done 2026-06-15 10:53:36 +00:00
root
bfd6d33829 W7f: sweep dead/legacy/fallback leftovers after native-pipeline removal
Post-deletion cleanup (units run only on wasm):
- types.h/compiler.cpp: drop the native-era SharedUnit fields so_name,
  bin_file_name, and the opt_so_optional cache-mode plumbing (no native
  optional .so path remains). The per-unit compile lock is re-keyed from
  so_name+.lock to wasm_name+.lock (still per-unit).
- unit_info() and to_string(SharedUnit*) no longer expose .so artifact fields.
- backend.h: drop the stale "+ fallback-token gate" comment.
- Docs/comments corrected to wasm-only reality: README, tests/README,
  site/doc C++ preprocessor + error_pages + unit_info pages, site/info intro,
  site/demo/unit-browser artifact card; the Phase-5 native-vs-wasm benchmark
  harness (tests/wasm_benchmark.py) reframed for the wasm-only backend.

Audit confirmed no live references remain to so_handle, load_shared_unit,
compiler_load_shared_unit, compiler_invoke*/_cli/_websocket/_serve_http,
COMPILE_SCRIPT/COMPILE_WASM_UNITS, or the native export-symbol constants;
request_ref_handler/dv_call_handler are kept (live wasm funcref casts).

Swept via the pi agent (delegated to a gpt-5.3-codex-spark sub-model);
independently re-verified on the host: run_cli_tests --include-wasm-kill =>
87 passed, 0 failed, 0 skipped.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-14 23:43:16 +00:00
udo
577aae076e W3 2026-06-13 02:07:38 +00:00
udo
80285b7fb4 feat: implement WASM phase 1 DValue ABI 2026-06-12 12:42:56 +00:00
udo
7066da3cde refactor: rename DTree to DValue 2026-06-12 11:05:52 +00:00
udo
941f5aea08 feat: add configurable UCE error pages 2026-06-12 08:59:09 +00:00