473,394 Members | 1,724 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Sub-sub-expression evaluation order

Note: For those with instant reactions, this is NOT the common "why is i
= i++ not defined?" question. Please read on.
I came across an interesting question when talking with my colleagues.
According to the standard, most operators evaluate their operands in an
unspecified order. This means that in code like this:

f() + g()

the two functions may be called in either order, and still be standards-
compliant.

Fine. Now, when the evaluation of one sub-expression begins, is there
anything in the standard that says that it must complete (ignoring side-
effects) before the other sub-expression evaluation begins? In other
words, can pieces of the sub-expressions be evaluated in an interleaving
fashion?

Take this example:

f(i++) + g(i++)

The difference from the first example is the sequence points for the
function calls.

Now, obviously since f() and g() may be called in any order, this code
is non-deterministic. My question is: can the compiler evaluate the sub-
expressions in the following order, interleaving the sub-sub-expression
evaluations?

t1 = i;
t2 = i;
i++;
i++;
f(t1);
g(t2);

Note that all side-effects were finished before the function-call
sequence points, so this doesn't violate that.

If there is nothing in the standard to prevent this, then not only is
the code "f(i++) + g(i++)" non-deterministic, but it remains as
undefined as "i++ + i++".
Here is an example where I think the above problem exists, although it's
not obvious (please ignore the obvious problems and poor design; this is
pseudo-code to illustrate a point):
const char *a(void)
{
static char *x;
if (x) free(x);
x = (char*)malloc(2);
strcpy(x, "a");
return x;
}

printf("%s %s\n", a(), a());
The obvious problem here is that the second call to a() (in either
order) will free the pointer returned by the first call.

Here is the revised version, but I believe that the following is still
undefined:

const char *a(void) { ... same as above ... }

static list *strings; // implementation not important

const char *cache(const char *in)
{
char *out;
out = strdup(in);
add_to_list(out);
return out;
}

printf("%s %s\n", cache(a()), cache(a()));
The cache() function only exists so that calls like 'printf' can be made
- that is, they copy the argument off and return the copy (and save it
in a list to be freed later). This way, the second call to a() doesn't
affect anything by freeing the old value.

But, similar to the above, I believe that an implementation is free to
evaluate the printf call in this order:

char *t1 = a();
char *t2 = a();
char *t3 = cache(t1);
char *t4 = cache(t2);
printf("%s %s\n", t3, t4);
Is this right? Is it undefined, according to the standard?
-Frank

--
fw**********@hotmail.com
Nov 14 '05 #1
4 2548
Frank Wallingford wrote:
...
I came across an interesting question when talking with my colleagues.
According to the standard, most operators evaluate their operands in an
unspecified order. This means that in code like this:

f() + g()

the two functions may be called in either order, and still be standards-
compliant.
That's correct.
Fine. Now, when the evaluation of one sub-expression begins, is there
anything in the standard that says that it must complete (ignoring side-
effects) before the other sub-expression evaluation begins? In other
words, can pieces of the sub-expressions be evaluated in an interleaving
fashion?
Yes. The evaluation can be implemented in any way, as long as it
produces the result that satisfies the requirements imposed by the
language specification.
Take this example:

f(i++) + g(i++)

The difference from the first example is the sequence points for the
function calls.
There are indeed sequence points at the beginning of each function's
execution. However, the standard doesn't require the evaluation of
argument subexpressions to be "tightly packed" with the execution of the
corresponding function. In other words, in this particular case the
expression might be interpreted as two consecutive 'i++' evaluations
(not separated by any sequence point) followed by calls to 'f' and 'g'.
This means that the modifications of 'i' are potentially violating the
requirements of the standard and the code produces undefined behavior.
Now, obviously since f() and g() may be called in any order, this code
is non-deterministic.
If by "non-deterministic" you mean that the code produces unspecified
result, you are wrong. The code produces undefined behavior.
My question is: can the compiler evaluate the sub-
expressions in the following order, interleaving the sub-sub-expression
evaluations?

t1 = i;
t2 = i;
i++;
i++;
f(t1);
g(t2);
Yes. That's exactly what I said above. Note though, that there wouldn't
really be any sequence points between two modifications of 'i', which
leads to UB.
Note that all side-effects were finished before the function-call
sequence points, so this doesn't violate that.
What exactly do you mean by "that" here?
If there is nothing in the standard to prevent this, then not only is
the code "f(i++) + g(i++)" non-deterministic, but it remains as
undefined as "i++ + i++".
Exactly.
Here is an example where I think the above problem exists, although it's
not obvious (please ignore the obvious problems and poor design; this is
pseudo-code to illustrate a point):

const char *a(void)
{
static char *x;
if (x) free(x);
x = (char*)malloc(2);
strcpy(x, "a");
return x;
}

printf("%s %s\n", a(), a());

The obvious problem here is that the second call to a() (in either
order) will free the pointer returned by the first call.
That's correct. But I'd say that the nature of the problem is very
different here.
Here is the revised version, but I believe that the following is still
undefined:

const char *a(void) { ... same as above ... }

static list *strings; // implementation not important

const char *cache(const char *in)
{
char *out;
out = strdup(in);
add_to_list(out);
return out;
}

printf("%s %s\n", cache(a()), cache(a()));

The cache() function only exists so that calls like 'printf' can be made
- that is, they copy the argument off and return the copy (and save it
in a list to be freed later). This way, the second call to a() doesn't
affect anything by freeing the old value.

But, similar to the above, I believe that an implementation is free to
evaluate the printf call in this order:

char *t1 = a();
char *t2 = a();
char *t3 = cache(t1);
char *t4 = cache(t2);
printf("%s %s\n", t3, t4);

Is this right?
Yes, that's perfectly possible.
Is it undefined, according to the standard?


I don't see any problems with the last portion of code. It doesn't have
any violations present in the 'f(i++) + g(i++)' example. Why exactly do
you suspect that it is undefined?

--
Best regards,
Andrey Tarasevich
Nov 14 '05 #2
Andrey Tarasevich wrote:
Here is the revised version, but I believe that the following is still
undefined:

const char *a(void) { ... same as above ... }

static list *strings; // implementation not important

const char *cache(const char *in)
{
char *out;
out = strdup(in);
add_to_list(out);
return out;
}

printf("%s %s\n", cache(a()), cache(a()));

The cache() function only exists so that calls like 'printf' can be made
- that is, they copy the argument off and return the copy (and save it
in a list to be freed later). This way, the second call to a() doesn't
affect anything by freeing the old value.

But, similar to the above, I believe that an implementation is free to
evaluate the printf call in this order:

char *t1 = a();
char *t2 = a();
char *t3 = cache(t1);
char *t4 = cache(t2);
printf("%s %s\n", t3, t4);

Is this right?


Yes, that's perfectly possible.
Is it undefined, according to the standard?


I don't see any problems with the last portion of code. It doesn't have
any violations present in the 'f(i++) + g(i++)' example. Why exactly do
you suspect that it is undefined?


Oops... I'm sorry. I misread the code. Of course, the potential
evaluation order you suggested leads to the same problem as in the
original version of the code. If you integrate the functionality of
'cache()' into 'a()' then the problem will disappear (somehow I thought
that this has already been done)

--
Best regards,
Andrey Tarasevich
Nov 14 '05 #3
Andrey Tarasevich <an**************@hotmail.com> wrote in
news:10*************@news.supernews.com:
Andrey Tarasevich wrote:
Here is the revised version, but I believe that the following is
still undefined:

const char *a(void) { ... same as above ... }

static list *strings; // implementation not important

const char *cache(const char *in)
{
char *out;
out = strdup(in);
add_to_list(out);
return out;
}

printf("%s %s\n", cache(a()), cache(a()));

The cache() function only exists so that calls like 'printf' can be
made - that is, they copy the argument off and return the copy (and
save it in a list to be freed later). This way, the second call to
a() doesn't affect anything by freeing the old value.

But, similar to the above, I believe that an implementation is free
to evaluate the printf call in this order:

char *t1 = a();
char *t2 = a();
char *t3 = cache(t1);
char *t4 = cache(t2);
printf("%s %s\n", t3, t4);

Is this right?
Is it undefined, according to the standard?


I don't see any problems with the last portion of code. It doesn't
have any violations present in the 'f(i++) + g(i++)' example. Why
exactly do you suspect that it is undefined?


Oops... I'm sorry. I misread the code. Of course, the potential
evaluation order you suggested leads to the same problem as in the
original version of the code. If you integrate the functionality of
'cache()' into 'a()' then the problem will disappear (somehow I
thought that this has already been done)


Right - the last example is undefined because if the implementation re-
orders the sub-expressions and calls 'a' twice before calling 'cache',
then it ends up accessing memory that has been deallocated.

Thanks for your answers.

-Frank

--
fw**********@hotmail.com
Nov 14 '05 #4
In article <Xn*********************************@69.28.186.158 >
Frank Wallingford <fw**********@hotmail.com> wrote:
Note: For those with instant reactions, this is NOT the common "why is i
= i++ not defined?" question. Please read on.
Indeed. (It is almost a comp.std.c question, it is so well-specified :-) )

[much snippage] f(i++) + g(i++)
... then not only is
the code "f(i++) + g(i++)" non-deterministic, but it remains as
undefined as "i++ + i++".
Yes. There are sequence points before the calls to f() and g(),
after the evaluation of the various parameters, but the parameter
evaluations can be "interleaved", giving this undefinedness (I
believe -- you might check in comp.std.c to see if there is any
sort of consensus on this one).

[another example, mostly snipped]
But, similar to the above, I believe that an implementation is free to
evaluate the printf call in this order:

char *t1 = a();
char *t2 = a();
char *t3 = cache(t1);
char *t4 = cache(t2);
printf("%s %s\n", t3, t4);

Is this right? Is it undefined, according to the standard?


I believe so, yes.
--
In-Real-Life: Chris Torek, Wind River Systems
Salt Lake City, UT, USA (40°39.22'N, 111°50.29'W) +1 801 277 2603
email: forget about it http://web.torek.net/torek/index.html
Reading email is like searching for food in the garbage, thanks to spammers.
Nov 14 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: John Smith | last post by:
I've been playing with splint, which returns the following warning for the code below: statlib.c: (in function log_norm_pdf) statlib.c(1054,31): Expression has undefined behavior (left operand...
3
by: andreas ames | last post by:
Hi all, recently I came across a line of code like the following: if seq.erase(seq.begin(), seq.end()) != seq.end() /* ... */ It made me wonder if this is just bogus or if it even can...
10
by: nachch | last post by:
Does the C specification define the order of evaluation of assignment statements? For example, what should be the output from the following: int foo1() { printf("foo1\n"); return 0; } int...
15
by: Jeroen | last post by:
Hi all, I've got a very specific question about the evaluation order in C++. Assume some kind of custom array class, with an overloaded subscript operator. In the following code: { my_array...
32
by: silpau | last post by:
hi, i am a bit confused on expression evaluation order in expressions involving unary increment.decrement operators along with binary operators. For example in the following expression x...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.