Arithmetic
Overview
Carbon provides a conventional set of arithmetic operators:
var a: i32 = 5;
var b: i32 = 3;
// -5
var negation: i32 = -a;
// 8
var sum: i32 = a + b;
// 2
var difference: i32 = a - b;
// 15
var product: i32 = a * b;
// 1
var quotient: i32 = a / b;
// 2
var remainder: i32 = a % b;
These operators have predefined meanings for some of Carbon's built-in types.
User-defined types can define the meaning of these operations by implementing an interface provided as part of the Carbon standard library.
Precedence and associativity
%%{init: {'themeVariables': {'fontFamily': 'monospace'}}}%%
graph BT
negation["-x"]
multiplication>"x * y<br>
x / y"]
addition>"x + y<br>
x - y"]
modulo["x % y"]
multiplication & modulo --> negation
addition --> multiplication
Binary +
and -
can be freely mixed, and are left-associative.
// -2, same as `((1 - 2) + 3) - 4`.
var n: i32 = 1 - 2 + 3 - 4;
Binary *
and /
can be freely mixed, and are left-associative.
// 0.375, same as `((1.0 / 2.0) * 3.0) / 4.0`.
var m: f32 = 1.0 / 2.0 * 3.0 / 4.0;
Unary -
has higher precedence than binary *
, /
, and %
. Binary *
and
/
have higher precedence than binary +
and -
.
// 5, same as `(-1) + ((-2) * (-3))`.
var x: i32 = -1 + -2 * -3;
// Error, parentheses required: no precedence order between `+` and `%`.
var y: i32 = 2 + 3 % 5;
Built-in types
For binary operators, if the operands have different built-in types, they are converted as follows:
- If the types are
uN
anduM
, or they areiN
andiM
, the operands are converted to the larger type. - If one type is
iN
and the other type isuM
, andM
<N
, theuM
operand is converted toiN
. - If one type is
fN
and the other type isiM
oruM
, and there is an implicit conversion from the integer type tofN
, then the integer operand is converted tofN
.
More broadly, if one operand is of built-in type and the other operand can be implicitly converted to that type, then it is, unless that behavior is overridden.
A built-in arithmetic operation is performed if, after the above conversion step, the operands have the same built-in type. The result type is that type. The result type is never wider than the operands, and the conversions applied to the operands are always lossless, so arithmetic between a wider unsigned integer type and a narrower signed integer is not defined.
Although the conversions are always lossless, the arithmetic may still overflow.
Integer types
Signed and unsigned integer types support all the arithmetic operators.
Signed integer arithmetic produces the usual mathematical result. Unsigned
integer arithmetic in uN
wraps around modulo 2N
.
Division truncates towards zero. The result of the %
operator is defined by
the equation a % b == a - a / b * b
.
Overflow and other error conditions
Integer arithmetic is subject to two classes of problems for which an operation has no representable result:
- Overflow, where the resulting value is too large to be represented in the
type, or, for
%
, when the implied multiplication overflows. - Division by zero.
Unsigned integer arithmetic cannot overflow, but division by zero can still occur.
Note: All arithmetic operators can overflow for signed integer types. For
example, given a value v: iN
that is the least possible value for its type,
-v
, v + v
, v - 1
, v * 2
, v / -1
, and v % -1
all result in overflow.
Signed integer overflow and signed or unsigned integer division by zero are programming errors:
- In a development build, they will be caught immediately when they happen at runtime.
- In a performance build, the optimizer can assume that such conditions don't occur. As a consequence, if they do, the behavior of the program is not defined.
- In a hardened build, overflow and division by zero do not result in undefined behavior. On overflow and division by zero, either the program will be aborted, or the arithmetic will evaluate to a mathematically incorrect result, such as a two's complement result or zero. The program might not in all cases be aborted immediately -- for example, multiple overflow checks might be combined into one -- but no control flow or memory access that depends on the value will be performed.
TODO: Unify the description of these programming errors with those of bit-shift domain errors, document the behavior in a common place and link to it from here.
TODO: In a hardened build, should we prefer to trap on overflow, give a two's complement result, or produce zero? Using zero may defeat some classes of exploit, but comes at a code size and performance cost.
Floating-point types
Floating-point types support all the arithmetic operators other than %
.
Floating-point types in Carbon have IEEE 754 semantics, use the round-to-nearest
rounding mode, and do not set any floating-point exception state.
Because floating-point arithmetic follows IEEE 754 rules: overflow results in ±∞, and division by zero results in either ±∞ or, for 0.0 / 0.0, a quiet NaN.
Strings
TODO: Decide whether strings are built-in types, and whether they support
+
for concatenation. See
#457.
Extensibility
Arithmetic operators can be provided for user-defined types by implementing the following family of interfaces:
// Unary `-`.
interface Negate {
let Result:! Type = Self;
fn Op[me: Self]() -> Result;
}
// Binary `+`.
interface AddWith(U:! Type) {
let Result:! Type = Self;
fn Op[me: Self](other: U) -> Result;
}
constraint Add {
extends AddWith(Self) where .Result = Self;
}
// Binary `-`.
interface SubWith(U:! Type) {
let Result:! Type = Self;
fn Op[me: Self](other: U) -> Result;
}
constraint Sub {
extends SubWith(Self) where .Result = Self;
}
// Binary `*`.
interface MulWith(U:! Type) {
let Result:! Type = Self;
fn Op[me: Self](other: U) -> Result;
}
constraint Mul {
extends MulWith(Self) where .Result = Self;
}
// Binary `/`.
interface DivWith(U:! Type) {
let Result:! Type = Self;
fn Op[me: Self](other: U) -> Result;
}
constraint Div {
extends DivWith(Self) where .Result = Self;
}
// Binary `%`.
interface ModWith(U:! Type) {
let Result:! Type = Self;
fn Op[me: Self](other: U) -> Result;
}
constraint Mod {
extends ModWith(Self) where .Result = Self;
}
Given x: T
and y: U
:
- The expression
-x
is rewritten tox.(Negate.Op)()
. - The expression
x + y
is rewritten tox.(AddWith(U).Op)(y)
. - The expression
x - y
is rewritten tox.(SubWith(U).Op)(y)
. - The expression
x * y
is rewritten tox.(MulWith(U).Op)(y)
. - The expression
x / y
is rewritten tox.(DivWith(U).Op)(y)
. - The expression
x % y
is rewritten tox.(ModWith(U).Op)(y)
.
Implementations of these interfaces are provided for built-in types as necessary to give the semantics described above.
Alternatives considered
- Use a sufficiently wide result type to avoid overflow
- Guarantee that the program never proceeds with an incorrect value after overflow
- Guarantee that all integer arithmetic is two's complement
- Treat overflow as an error but don't optimize on it
- Don't let
Unsigned
arithmetic wrap - Provide separate wrapping types
- Do not provide an ordering or division for
uN
- Give unary
-
lower precedence - Include a unary plus operator
- Floating-point modulo operator
- Provide different division operators
- Use different division and modulo semantics
- Use different precedence groups for division and multiplication
- Use the same precedence group for modulo and multiplication
- Use a different spelling for modulo
References
- Proposal #1083: Arithmetic
- Proposal #1178: Rework operator interfaces