You said that you believe that:
*a = *b; a++; b++;
is equivalent to
*a++ = *b++;
but that is false, so you have a false belief. Let's correct your false belief.
In the first case, the following things must happen:
- VAR:
*a
must be evaluated to produce a variable, call it var
- VAL:
*b
must be evaluated to produce a value, call it val
- ASSIGN:
val
must be assigned to var
.
- INCA:
a
must be incremented.
- INCB:
b
must be incremented.
What are the constraints on how the compiler may order those?
- VAR and VAL must happen before ASSIGN.
- ASSIGN must happen before INCA.
- INCA must happen before INCB.
The rule here is that all the side effects of one statement have to be complete before the next statement starts. So there are two legal orderings. VAR VAL ASSIGN INCA INCB, or VAL VAR ASSIGN INCA INCB.
Now let's consider the second case.
*a++ = *b++;
We have the same five operations, but the constraints on their ordering are completely different because these are all in the same statement, so the rule about statements does not apply. Now the constraints are:
- VAR and VAL must happen before ASSIGN.
- the evaluation of VAR must use the original value of
a
- the evaluation of VAL must use the original value of
b
Note that I did not say that the increments are required to happen afterwards. Rather, I said that the original values must be used. As long as the original value is used, the increment can happen at any time.
So for example, it would be perfectly legal to generate this as
var = a;
a = a + 1; // increment a before assign
*var = *b;
b = b + 1; // increment b after assign
It would also be legal to do this:
val = *b;
b = b + 1; // increment b before assign
*a = val;
a = a + 1; // increment a after assign
It would also be legal to do it as you suggest: do the assignment first, and then both increments in left-to right order. And it would also be legal to do the assignment first, and then both increments in right-to-left order.
A C compiler is given broad latitude to generate code however it likes for this kind of expression. Make sure this is very clear in your mind, because most people get this wrong: just because the ++
comes after the variable does not mean that the increment happens late. The increment can happen as early as the compiler likes as long as the compiler ensures that the original value is used.
That's the rule for C and C++. In C#, the language specification requires that the side effects of the left side of an assignment happen before the side effects of the right side of an assignment, and that both happen before the side effect of the assignment. That same code in C# would be required to be generated as:
var_a = a;
a = a + 1;
// must pointer check var_a here
var_b = b;
b = b + 1;
val = *var_b; // pointer checks var_b
*var_a = val;
The "pointer check" is the point at which C# requires that the runtime verify that var_a
is a valid pointer; in other words, that *var_a
is actually a variable. If it is not then it must throw an exception before b
is evaluated.
Again, a C compiler is permitted to do it the C# way, but not required to.