Overflow

From Mill Computing Wiki
Revision as of 09:59, 11 December 2014 by Jan (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

When integer operations produce values that can't be contained within the bit width of the result, there are different strategies of how to deal with it.

In all cases the condition codes are generated and can be queried with the dedicated ganged operations. What the overflow behavior does determine is the primary result that is produced.

1. modulo - normal silent overflow or underflow, also called wraparound 2. saturating - the highest of lowest representable value in the given with is the returned result 3. excepting - the appropriate NaR is created as the result 4. widening - here the scalar byte width is doubled and the full and exact result is the return value