Decimal128 floating-point format


In computing, decimal128 is a decimal floating-point computer numbering format that occupies 16 bytes in computer memory. It is intended for applications where it is necessary to emulate decimal rounding exactly, such as financial and tax computations.
Decimal128 supports 34 decimal digits of significand and an exponent range of −6143 to +6144, i.e. to. Therefore, decimal128 has the greatest range of values compared with other IEEE basic floating point formats. Because the significand is not normalized, most values with less than 34 significant digits have multiple possible representations;, etc. Zero has possible representations.
Decimal128 floating point is a relatively new decimal floating-point format, formally introduced in the 2008 version of IEEE 754 as well as with.

Representation of decimal128 values

SignCombinationSignificand continuation
1 bit17 bits110 bits
smmmmmmmmmmmmmmmmmcccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc

IEEE 754 allows two alternative representation methods for decimal128 values. The standard does not specify how to signify which representation is used, for instance in a situation where decimal128 values are communicated between systems.
In one representation method, based on binary integer decimal, the significand is represented as binary coded positive integer.
The other, alternative, representation method is based on densely packed decimal for most of the significand.
Both alternatives provide exactly the same range of representable numbers: 34 digits of significand and 3 × 212 = possible exponent values.
In both cases, the most significant 4 bits of the significand are combined with the most significant 2 bits of the exponent to use 30 of the 32 possible values of 5 bits in the combination field. The remaining combinations encode infinities and NaNs.
Combination fieldExponentSignificand MsbitsOther
00mmmmmmmmmmmmmmm00xxxxxxxxxxxx0ccc
01mmmmmmmmmmmmmmm01xxxxxxxxxxxx0ccc
10mmmmmmmmmmmmmmm10xxxxxxxxxxxx0ccc
1100mmmmmmmmmmmmm00xxxxxxxxxxxx100c
1101mmmmmmmmmmmmm01xxxxxxxxxxxx100c
1110mmmmmmmmmmmmm10xxxxxxxxxxxx100c
11110mmmmmmmmmmmm±Infinity
11111mmmmmmmmmmmmNaN. Sign bit ignored. Sixth bit of the combination field determines if the NaN is signaling.

In the case of Infinity and NaN, all other bits of the encoding are ignored. Thus, it is possible to initialize an array to Infinities or NaNs by filling it with a single byte value.

Binary integer significand field

This format uses a binary significand from 0 to 1034 − 1 = = 1ED09BEAD87C0378D8E63FFFFFFFF16 =
The encoding can represent binary significands up to 10 × 2110 − 1 = but values larger than 1034 − 1 are illegal.
As described above, the encoding varies depending on whether the most significant 4 bits of the significand are in the range 0 to 7, or higher.
If the 2 bits after the sign bit are "00", "01", or "10", then the
exponent field consists of the 14 bits following the sign bit, and the
significand is the remaining 113 bits, with an implicit leading 0 bit:
s 00eeeeeeeeeeee ttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt
s 01eeeeeeeeeeee ttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt
s 10eeeeeeeeeeee ttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt
This includes subnormal numbers where the leading significand digit is 0.
If the 2 bits after the sign bit are "11", then the 14-bit exponent field is shifted 2 bits to the right, and the represented significand is in the remaining 111 bits. In this case there is an implicit leading 3-bit sequence "100" in the true significand.
s 1100eeeeeeeeeeee t tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt
s 1101eeeeeeeeeeee t tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt
s 1110eeeeeeeeeeee t tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt tttttttttt
The "11" 2-bit sequence after the sign bit indicates that there is an implicit "100" 3-bit prefix to the significand. Compare having an implicit 1 in the significand of normal values for the binary formats. The "00", "01", or "10" bits are part of the exponent field.
For the decimal128 format, all of these significands are out of the valid range, and are thus decoded as zero, but the pattern is same as decimal32 and decimal64.
In the above cases, the value represented is
If the four bits after the sign bit are "1111" then the value is an infinity or a NaN, as described above:
s 11110 xx...x ±infinity
s 11111 0x...x a quiet NaN
s 11111 1x...x a signalling NaN

Densely packed decimal significand field

In this version, the significand is stored as a series of decimal digits. The leading digit is between 0 and 9, and the rest of the significand uses the densely packed decimal encoding.
The leading 2 bits of the exponent and the leading digit of the significand are combined into the five bits that follow the sign bit.
This twelve bits after that are the exponent continuation field, providing the less-significant bits of the exponent.
The last 110 bits are the significand continuation field, consisting of eleven 10-bit declets. Each declet encodes three decimal digits using the DPD encoding.
If the first two bits after the sign bit are "00", "01", or "10", then those are the leading bits of the exponent, and the three bits after that are interpreted as the leading decimal digit :
s 00 TTT eeeeeeeeeeee
s 01 TTT eeeeeeeeeeee
s 10 TTT eeeeeeeeeeee
If the first two bits after the sign bit are "11", then the second two bits are the leading bits of the exponent, and the last bit is prefixed with "100" to form the leading decimal digit :
s 1100 T eeeeeeeeeeee
s 1101 T eeeeeeeeeeee
s 1110 T eeeeeeeeeeee
The remaining two combinations of the 5-bit field
are used to represent ±infinity and NaNs, respectively.
The DPD/3BCD transcoding for the declets is given by the following table.
b9...b0 are the bits of the DPD, and d2...d0 are the three BCD digits.
The 8 decimal values whose digits are all 8s or 9s have four codings each.
The bits marked x in the table above are ignored on input, but will always be 0 in computed results.
In the above cases, with the true significand as the sequence of decimal digits decoded, the value represented is