I'm curious if there's a branchless way to do this, or perhaps just a generally better way:
uint16_t add_with_no_overflow(uint16_t num, uint16_t delta)
{
if (UINT16_MAX - delta < num)
{
return UINT16_MAX;
}
return num + delta;
}
I tried thinking about it with min
/max
, but even if I try to use (well-defined) uint overflow, the best I can come up with is max(num + delta, num)
which would return the original number a if overflown, or the result otherwise.
But I can't think of a way with min/max/clamp to get from this split to the desired behaviour (without branching)
Stop fiddling around, keep it simple and rely on the optimizer.
Unless your optimizer is not up to sniff of course. Then by all means continue fiddling around.