Is there any good reason for operator = not being a sequence point? Both in C and C++.
I have trouble thinking about an counter-example.
|
Is there any good reason for I have trouble thinking about an counter-example.
| ||||
|
show 3 more comments
feedback
|
|
By request: In general, things need a reason to be a sequence point. They don't need a reason not to be a sequence point; that's the default. For example, This reason does not exist for | |||||||||||||
feedback
|
|
It is (sort of). The operator= (that can be defined by the engineer (aka the user defined operator= for class types)) is just syntactic sugar for a function call. As a result it has the same "sequence point" semantics as a function call. If we are taking about built in types then I think it is a good thing. | |||||||
feedback
|
|
There are many reasons not to require either side to be evaluated before the other. A more interesting question is whether the evaluation of both sides, complete with side-effects, should be required before the assignment operator itself does anything. I would suggest that such a requirement would ease some aliasing restrictions but in some cases require more work for a compiler. For example, suppose "foo" and "bar" are pointers to large structures whose addresses would overlap. The statement "*foo = *bar;" would represent undefined behavior under the current standard. If there were a sequence point between the evaluation of the operands and the assignment, such a statement would be guaranteed to "work". Such a guarantee would require more complicated for the assignment operator, requiring larger and slower code even if in practice the pointers will never overlap. Example:
unsigned char foo[100];
typedef struct {int x, int y;} POINT;
POINT *p1 = (POINT*)foo;
POINT *p2 = (POINT*)(&(p1->y));
Given the above declarations, I think the following statements have the strictly-defined behaviors indicated and do not involve any Undefined Behavior. p1->y = somevalue; // Sets p2->x to somevalue p2->x = somevalue; // Sets p1->y to somevalue *p1 = mystruct; // Sets p2->x to mystruct.y *p2 = mystruct; // Sets p1->x to mystruct.x The following two statements, however, would involve Undefined Behavior: *p1 = *p2; *p2 = *p1; If there were a sequence point at the equals sign, a compiler would have to either compare p1 and p2, or else copy the source operand to a temp location and then copy it to the destination. The standard, however, makes clear that the above two statements are both considered to be Undefined Behavior. The standard requires compilers to generate code which works correctly when copying a structure to a non-overlapping structure, but places no restriction on what compilers may do if the structures overlap. A compiler which would the processor into a loop sending "Frink Rules!" out every open TCP socket would not violate the standard by so doing. | |||||||||||
feedback
|
a = b = c = 0;– pmg Dec 6 '10 at 1:34ptr && ptr->datato work. Rather, because&&is required by the Standard to have short-circuit behaviour: the Standard says that if the left-hand side evaluates to false, the right-hand side must not be evaluated at all. Therefore, it is not allowed to evaluate the right-hand side first, in case the left-hand side is false. :) – Karl Knechtel Dec 6 '10 at 13:07=, you must evaluate both the left and the right side, and then do the assignment (Just that there are somewhat different rules for "evaluating" each side - lvalues vs. rvalues, etc.). But there is no reason you have to evaluate the left side before the right side, or vice versa - as long as you do both before the actual assignment. With&&, you must evaluate the left side before the right side, because it's possible that the right side must not be evaluated at all. – Karl Knechtel Dec 6 '10 at 13:14