Sequence points
Sequence points are points in an execution of a program where all side effects produced by evaluations prior to the sequence points have been completed. Side effects produced by evaluations that occur after the sequence point will therefor be separated from side effects produced by evaluations that occur before the sequence point and happen afterwards.
Evaluations
Evaluating something means to apply some runtime semantics on an expression. There are unevaluated expressions (operands of sizeof, some operands of typeid and such) that only inspect the expression's type and don't have meaning at runtime. If an expression is evaluated, it can result in a value which may imply reading values out of objects, or it may just evaluate to an object without reading the value of it (it then remains an lvalue, as with the left subexpression of an assignment). In addition, it can produce side effects as necessary. An evaluation is complete if its value is known, but until a sequence point has been reached, side effects produced by the evaluation are assumed to be still processed.
You have sequence points after all evaluations that usually are needed to be processed completely before some certain other expressions are processed. These are
- After evaluation of
a in a && b and a || b and a ? b : c. Also after evaluation of a in a, b - this operator is called the "comma operator".
- For a function call, after evaluating the function call arguments and before starting evaluations in the function body.
- After the evaluation of a complete expression (one that wasn't evaluated as part of another expression). Examples are loop conditions, if conditions, switch values and expression statements.
- Immediately before a function terminates (by unwinding the function by an exception or by ordinarily returning it after (possibly) creating the return value). This makes sure that every side effect in a function really has been settled and is completely processed.
Side effects
A side effect is a change in the execution environment of the program that happens in addition to simply computing a value. This can be (among others) writing to an object, calling an input/output function or calling a function that does so.
Flow of program execution
With these three terms, the flow of a program can be visualized as follows. In the following diagrams, an E(X) specifies the evaluation of a (sub-)expression x, an % specifies a sequence point and an S(k, e) specifies a side effect k on an object e. If an evaluation needs to read a value from a named object (if x is a name), the evaluation is written as V(x), otherwise it's written as E(x). Side effects are written right and left to the expressions. An edge between two expressions means that the upper expression is evaluated before the lower expression (usually because the lower expression depends on the value or lvalue of the upper expression).
If you look at the two expression statements i++; i++;, you can depict the following diagram
E(i++) -> { S(increment, i) }
|
%
|
E(i++) -> { S(increment, i) }
|
%
As can be seen, there are two sequence points, and one of them separates the two modifications of i. Function call arguments are interesting too, although I will omit the diagram for this
int c = 0;
int d = 0;
void f(int a, int b) { assert((a == c - 1) && (b == d - 1)); }
int main() { f(c++, d++); }
The assert is fine, because it is guaranteed that when f's body is executed, side effects produced by argument evaluations are complete: Therefor, c and d have been completely incremented.
Let's consider the expression statement i++ * j++;
{ S(increment, i) } <- E(i++) E(j++) -> { S(increment, j) }
\ /
+--+--+
|
E(i++ * j++)
|
%
Wow, where do the two branches come from? Remember from the initial definition of sequence point: Sequence points affect evaluations that occur prior to it. All subexpressions of the multiplication are evaluated prior to it and there is no other sequence point, so we must assume "maximal parallelity" to find where potentially we have concurring writes to the same object. More formally, the two branches are not ordered. The sequence point relation is this a relation that orders some evaluations to each other and doesn't order others: It's therefor a partial order.
Conflicting side effects
To give the compiler maximal freedom in generating and optimizing machine code, cases like the multiplication above don't sequence the evaluations of subexpressions and don't separate the side effects produced by them except in the few cases outlined above. This can lead to conflicts, and the C++ Standard marks behavior of programs undefined if they try to modify the same object without an intervening sequence point (really, it applies to scalar objects, because other objects are either non-modifiable (arrays) or just aren't applicable to this rule (class objects)). Behavior is also undefined if a previous value is read from the object but there is a modification too, as in i * i++
// This yields to undefined behavior!
// Left 'i' is not guaranteed to read new value:
V(i) E(i++) -> { S(increment, i) })
\ /
+---+---+
|
E(i * i++)
|
%
As an exception, it's allowed to read the value of the object if it is needed for computing the new value. This is the case in i = i + 1
V(i) E(1)
\ /
+---+---+
|
E(i) E(i + 1)
\ /
+-------+-------+
|
E(i = i + 1) -> { S(assign, i) }
|
%
As we see here, the value of i is read on the right side and after the evaluation of both sides the assignment takes place. So we have a side effect and the read of i's value without an intervening sequence point, but the read was only to determine the value to be stored into i, so it is fine.
Sometimes, a value is read after a modification was done. This is the case for a = (b = 0), which in C++ will write to b and then read from b, without an intervening sequence point! This however is fine, because it does not read the previous value of b, but the new value of it. In this case, the side effect of the assignment to b has been complete not only before the next sequence point, but also before the read of b, as needed for the assignment to a to get the new value from b. In the spec, this relation is established by explicit constraints, in this case it appertains in particular to b = 0 and reads "The result of the assignment operation is the value stored in the left operand after the assignment has taken place; the result is an lvalue." Why not a sequence point to make this relation? Because a sequence point would have the undesirable effect of requiring every side effect that happens in the evaluation of the left and right operand to be complete, instead of doing so only for the assignment in case its resulting lvalue is read from.
Closing words
It should be noted that temporaries created in the evaluation of a full-expression are usually not cleaned up before the very next sequence point but only when the full-expression has been completely evaluated (in certain situations, the lifetime of temporaries will instead be even longer if there were references bound to them).