589
For unsigned integer types other than
590
If there are
591 this shall be known as the value representation.
592 The values of any padding bits are unspecified.44)
593 For signed integer types, the bits of the object representation shall be divided into three groups: value bits, padding bits, and the sign bit.
594 There need not be any padding bits;
595 there shall be exactly one sign bit.
596 Each bit that is a value bit shall have the same value as the same bit in the object representation of the corresponding unsigned type (if there are M value bits in the signed type and N in the unsigned type, then M ≤ N).
597
42)Thus, for example, structure assignment
598
43) It is possible for objects
599
In particular, if
600
Furthermore,
601
other operations on values of type
602 44) Some combinations of padding bits might generate trap representations, for example, if one padding bit is a parity bit.
603 Regardless, no arithmetic operation on valid values can generate a trap representation other than as part of an exceptional condition such as an overflow, and this cannot occur with unsigned types.
604 All other combinations of padding bits are alternative object representations of the value specified by the value bits.
605 If the sign bit is zero, it shall not affect the resulting value.
606 If the sign bit is one, the value shall be modified in one of the following ways:
607 the corresponding value with sign bit 0 is negated (sign and magnitude);
608 the sign bit has the value -(2N) (two's complement);
609
the sign bit has the value
610 Which of these applies is implementation-defined, as is whether the value with sign bit 1 and all value bits zero (for the first two), or with sign bit and all value bits 1 (for one's complement), is a trap representation or a normal value.
611 In the case of sign and magnitude and one's complement, if this representation is a normal value it is called a negative zero.
612 If the implementation supports negative zeros, they shall be generated only by:
613
the
614
the
615 compound assignment operators based on the above cases.
616 It is unspecified whether these cases actually generate a negative zero or a normal zero, and whether a negative zero becomes a normal zero when stored in an object.
617
If the implementation does not support negative zeros, the behavior
of the
618 The values of any padding bits are unspecified.45)
619 A valid (non-trap) object representation of a signed integer type where the sign bit is zero is a valid object representation of the corresponding unsigned type, and shall represent the same value.
620
621 The precision of an integer type is the number of bits it uses to represent values, excluding any sign and padding bits.
622 The width of an integer type is the same but including any sign bit;
623 thus for unsigned integer types the two values are the same, while for signed integer types the width is one greater than the precision.
624 45) Some combinations of padding bits might generate trap representations, for example, if one padding bit is a parity bit.
625 Regardless, no arithmetic operation on valid values can generate a trap representation other than as part of an exceptional condition such as an overflow.
626 All other combinations of padding bits are alternative object representations of the value specified by the value bits.
Next
Created at: 2005-06-29 02:18:55
The text from WG14/N1124 is copyright © ISO