WCET phase 5 (#778): data-dependent masked-ceiling loop certificates#839
Merged
Conversation
Extend the --wcet-hints scry seam past const-trip/const-depth to a
DATA-DEPENDENT masked bound (`i REL (x & K)`). The masked value is
entry-independently bounded to [0, K] for ANY runtime x (x & K in [0,K]),
so synth DERIVES the worst-case trip as the MAX over both endpoints of the
bound domain (rhs=K and rhs=0, both required to terminate) — a single
endpoint is unsound for count-down shapes. Hint-gated + derived-not-trusted,
mirroring the equality-exit and recursion-depth seams:
- new Sym::Masked{mask} tracked from `And rd,_,#K` (K>=0, sign-bit clear so
x&K stays non-negative); base identity irrelevant (x&K<=K for any x)
- eval_pred accepts (Slot, Masked) -> Pred{rhs:K, masked_ceiling:Some(K)},
surviving the SetCond->cmp#0 indirection via Sym::Bool
- masked_exit_index: both-endpoints max + Eq/Ne |step|==1 restriction;
always hint-gated
- new WcetLoopBoundSource::MaskCeiling so the sidecar states the extra
data-dependent-ceiling assumption (distinct from HintVerified)
Decline moved not deleted: unhinted masked loop still declines `loop`;
unmasked `i < param` still rejects `hint-unverifiable-induction` (param is
Sym::Top, never Masked); too-low hint rejects `hint-below-derived-trip`.
Frozen-safe: WCET reads the final stream, .text byte-identical w/ or w/o hints.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01YJK5LZZEkV5smCY1jKn18L
Execute compiled masked-ceiling loops under unicorn (Thumb-2): bound >= actual for the worst-case input, entry-independence across the masked domain, and the count-DOWN case whose worst case is the rhs=0 endpoint (proves both-endpoints max is not the naive single-endpoint undercount). Plus decline-honesty: unhinted masked stays declined, too-low hint rejected, UNMASKED i<param stays declined hint-unverifiable-induction (the mask is the discriminator). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YJK5LZZEkV5smCY1jKn18L
wcet_bound_gate.rs: 5 phase-5 fixtures (red-first) — unhinted masked declines `loop`; count-up correct hint bounds (trip 7, source mask-ceiling, 262 cyc); count-DOWN uses both-endpoints (trip 10 not the naive 3, 339 cyc); too-low hint rejected hint-below-derived-trip; UNMASKED i<param stays declined hint-unverifiable-induction (the mask is the discriminator — decline moved, not deleted). claims.yaml: pin the both-endpoints max (hi.max(lo), both required to terminate) under SYNTH-WCET-CYCLE-MODEL — a single-endpoint regression would undercount. ci.yml: phase-5 note on the existing WCET gate step. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YJK5LZZEkV5smCY1jKn18L
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YJK5LZZEkV5smCY1jKn18L
avrabe
enabled auto-merge (squash)
July 22, 2026 19:07
# Conflicts: # CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Extends the
--wcet-hintsscry seam (untrusted oracle + sound synth-side checker) past const-trip / const-depth to a DATA-DEPENDENT loop whose exit bound is a masked valuei REL (x & K). This is the named richer-certificate follow-up to WCET phase 4 (bounded recursion), applying the same untrusted-hint + sound-checker pattern to data-dependent loop shapes — no scry dependency, a synth-side seam.Refs #778, #242 (Track D schedulability).
The certificate design (what synth verifies)
The witness is an entry-independent masked ceiling, not merely a decreasing measure. A decreasing measure proves termination; a finite WCET number additionally needs an entry-independent upper bound on the measure's initial value. That discriminator is the mask:
x & K ∈ [0, K]for ANY runtimexwhenK's sign bit is clear (Sym::Masked { mask }, tracked fromAnd rd, _, #K). Base identity is irrelevant —x & K ≤ Kregardless of whatxholds (simpler and more robust than recursion's masked chain, which needs the base identity for its decrement).[0, K], so synth DERIVES the worst-case trip as the MAX over both endpoints (rhs = Kandrhs = 0), requiring both to terminate. A single endpoint is unsound for a count-DOWN loop — the fatal class (see below). The both-endpoints max is pinned inclaims.yamlunderSYNTH-WCET-CYCLE-MODEL.|step| == 1(else an interior bound value can be missed — the divisibility-divergence trap), carried over from the recursion module.loop; a--wcet-hintsloop_boundsentry only gates consumption; the emitted trip is synth's DERIVED ceiling (new sourcemask-ceiling), never the raw hint.bound ≥ actual evidence (unicorn Thumb-2 cross-check)
scripts/repro/wcet_phase5_778_masked_loop_soundness.pyexecutes the compiled loops and assertsbound ≥ executed insnsfor the worst-case input + entry-independence across the masked domain:maskloop(0xFFFFFFFF)= r0 21: 138 insns ≤ 262 cyc;maskloop(0): 19 ≤ 262.cd(0)= r0 10 (10 iterations — therhs=0worst case): 180 insns ≤ 339 cyc. A naive single-endpoint seed (rhs=7) would have derived trip 3 → a bound below the real 10-iteration execution. The both-endpoints max derives 10 — this is the load-bearing soundness case.invalid-cert-rejected evidence (red-first)
hint-below-derived-trip, function stays declined.i < param(no entry-independent ceiling) → still declinesloop+hint-unverifiable-inductioneven WITH a hint.paramisSym::Top, neverSym::Masked, soeval_predreturnsNone— the mask is the sole discriminator. This is the existingdata_dependent_hint_is_rejected_unverifiabletest staying green: proof the decline moved onto the masked shape, not widened to every runtime bound.loop(opt-in gate).before → after decline matrix
i < (x&K), no hintloopdeclineloopdecline (opt-in)loopdeclinemask-ceiling, derived trip)loopdeclineloopdecline +hint-below-derived-tripi < param, any hintloop+hint-unverifiable-inductionGates
crates/synth-cli/tests/wcet_bound_gate.rs: 5 new phase-5 fixtures (count-up accept, count-down both-endpoints, unhinted decline, too-low reject, unmasked reject). 39/39 gate tests pass.claims.yaml: pins the both-endpoints max (let (hi, lo) = (at(ceiling)?, at(0)?);) — a single-endpoint regression reddens claim-check. 25/25 claims hold..github/workflows/ci.yml: phase-5 note on the existing WCET gate step.Frozen + claim status
.textis byte-identical with or without--wcet-hints(verified). The sidecar is additive metadata.SYNTH-WCET-CYCLE-MODELid).🤖 Generated with Claude Code
https://claude.ai/code/session_01YJK5LZZEkV5smCY1jKn18L