// Example hint
if (__builtin_expect(cond, 1)) { /* likely */ }
// 2-bit saturating counter update (conceptual)
function update2bit(state, taken){
const next = [0,1,2,3][state]; // clamp helper
if (taken) return Math.min(state+1, 3); else return Math.max(state-1, 0);
}
Tables: T0 (base), T1..Tk (tagged)
Index: f(PC, folded(H[L])) with L in {l1, l2, ..., lk}