Berkeley CSUA MOTD:Entry 10234
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2003/9/17-18 [Computer/SW/Compilers] UID:10234 Activity:nil
9/17    For this snipet of code:
        for (i = 0; i < 3; i++) {
            printf("\n\n0x%x %d", ptr++, *ptr);
        }
        Is there anything machine dependent about the evaluation of ptr++?
        I tried this on sparc/solaris and *ptr prints out the value AFTER
        the ++ increment.  But on a MIPS CPU, *ptr evaluates to before the
        ++.  WTF?
        \_ wtf is that you should learn c better. the order of evaluation
           of arguments is implementation-dependent, so a compiler
           is free to do whatever.
           \_ And this is the winner.  The comma operator evaluates left to
              right (as in: (a=b, ++b) works just fine).  However functions
              can evaluate their arguments in any order.  I don't understand the
              need for people to do this anyway.  Add the '++ptr' on its own
              line.
              \_ |>|_||>3!!  7|-|475 4|\| 3><7R4 |_i|\|3 0F <0|>3!!!!1!!
                 R34|_ |-|4X0R5 |/\|R173 5|\/|4|_|_ <0|>3!!!!1!|
                 \_ to match their 5|\/|4|_|_ heads (both of em)?
        \_ http://www.embedded.com/story/OEG20020429S0037
        \_ From the C9x Standard (section 5.1.2.3):
                "The  grouping  of  an  expression  does  not
                 completely  determine  its  evaluation ... the
                 actual increment ... can occur at any time
                 between the previous sequence point and the
                 next sequence point"
           In your case, this means that ptr++ could occur
           either before or after printf(); and both would
           be completely valid (even in the same program).
        \_ this C or C++ code?
           \_ :-)
           \_ I won't apply for your job unless you tell us which one!
2025/04/04 [General] UID:1000 Activity:popular
4/4     

You may also be interested in these entries...
2014/1/14-2/5 [Computer/SW/Languages/C_Cplusplus] UID:54763 Activity:nil
1/14    Why is NULL defined to be "0" in C++ instead of "((void *) 0)" like in
        C?  I have some overloaded functtions where one takes an integer
        parameter and the other a pointer parameter.  When I call it with
        "NULL", the compiler matches it with the integer version instead of
        the pointer version which is a problem.  Other funny effect is that
        sizeof(NULL) is different from sizeof(myPtr).  Thanks.
	...
2013/4/29-5/18 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Compilers] UID:54665 Activity:nil
4/29    Why were C and Java designed to require "break;" statements for a
        "case" section to terminate rather than falling-through to the next
        section?  99% of the time poeple want a "case" section to terminate.
        In fact some compilers issue warning if there is no "break;" statement
        in a "case" section.  Why not just design the languages to have
        termination as the default behavior, and provide a "fallthru;"
	...
2012/12/18-2013/1/24 [Computer/SW/Languages/Perl] UID:54561 Activity:nil
12/18   Happy 25th birthday Perl, and FUCK YOU Larry Wall for fucking up
        the computer science formalism that sets back compilers development
        back for at least a decade:
        http://techcrunch.com/2012/12/18/print-happy-25th-birthday-perl
        \_ I tried to learn Perl but was scared away by it.  Maybe scripting
           lanauages have to be like that in order to work well?
	...
2011/3/7-4/20 [Computer/SW/Languages/C_Cplusplus] UID:54056 Activity:nil
3/7     I have a C question.  I have the following source code in two identical
        files t.c and t.cpp:
                #include <stdlib.h>
                int main(int argc, char *argv[]) {
                  const char * const * p1;
                  const char * * p2;
	...
2010/1/22-30 [Computer/HW/Laptop, Computer/SW/OS/OsX] UID:53655 Activity:high
1/22    looking to buy a new development laptop
        needs ssdrive, >6 hr possible batt life, and runs linux reasonably
        Anyone have a recommendation? Thx.
        \_ thinkpad t23 w ssdrive and battery inplace of drive bay
        \_ Ever wondered what RICHARD STALLMAN uses for a laptop?  Well,
           wonder no more!
	...
2010/1/12-29 [Computer/SW/Apps/Media] UID:53627 Activity:kinda low
1/12    How do I get a job NOT related to internet DNS social network cloud
        twitter GOOG EC2 amazon API ???
        \_ A CS job not related to API?
        \_ Chip design, or maybe software that does chip design. What is
           your major? How about game developer?
        \_ DNS? DNS? What era ado you live in? I agree that social network
	...
2009/8/31-9/9 [Computer/SW/Compilers] UID:53312 Activity:nil
8/31    I'm trying to learn ActionScript, like a step by step tutorial.
        The site at http://www.actionscript.org/resources/categories/Tutorials/Flash/Beginner
        isn't well organized. It doesn't explain how to get started with
        an editor, compiler, IDE. And should I even learn AS2 when you can
        learn AS3? Is Adobe Flash CS4 >>> CS3 or just CS4 > CS3?
	...
2009/5/6-14 [Computer/SW/Languages/Perl, Computer/SW/Languages/Web] UID:52961 Activity:kinda low
5/6     I'm sure you've seen web sites that distribute software by making
        a user fill out a form and then e-mailing the user a randomly
        generate link to the software that works just once. What software
        is used to do this? I'd like to distribute software in such a way.
        \_ "Software"?  What web server/web application environment
           are you using?
	...
2009/2/28-3/11 [Computer/SW/Compilers] UID:52661 Activity:nil
2/28    I'm looking for a recommendation of a compiler/IDE to use to
        develop C/C++ code under Linux. In school, we used jove/gcc and
        I still use emacs/vi and gcc to this day. However, it is really
        lacking. Under Windows I tried Visual Studio and there were some
        really nice things about it, although it was so overwhelming that
        after 6 months of occasional use I still didn't really know what I
	...
2009/1/13-22 [Computer/Theory] UID:52367 Activity:kinda low
1/13    I am writing a commandline parser for a class and I could use some
        tips for algorithms to use. (The project is over and done so I am
        not cheating, but I am dissatisfied with my end result.) I STFW and
        didn't come up with too much I liked. I read the source for some
        shells like tcsh and that is *WAY* too complicated and relies on
        a lot of other code. I know that browsers and other apps have
	...
2008/6/9-12 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Security] UID:50194 Activity:nil
6/8     CSUA code guru please help. I need to see my random number
        generator with a good seed (I just need random 18 bit
        identifiers). The usual time(NULL) is OK, except my program
        might be invoked faster than once a second, and seeding using
        time() produced the same result. I tried clock() but it seems
        to return 0. My program needs to be run in Linux/DOS (Watcom
	...
Cache (5076 bytes)
www.embedded.com/story/OEG20020429S0037
The C and C standards do not specify the order of evaluation for function arguments. As I explained in my column last month As Precise As Possible , the C Standard specifies well-defined, portable behavior for many, but not all, language constructs. In some cases, the Standard describes the behavior of a construct as implementation-defined or unspecified. A program with such behavior is valid, but it may yield different results when compiled and executed for different target platforms. The C Standard uses these terms in essentially the same way as the C Standard; The difference between implementation-defined behavior and unspecified behavior is simply that each compiler must document its implementation-defined behaviors, but not its unspecified behaviors. In other words, implementation-defined behavior is the compilers license to translate a valid construct as it sees fit usually within limits imposed by the Standard, as long as the specifics are documented. Unspecified behavior liberates the compiler from the necessity of documentation. The upside of this freedom is that it allows each compiler to translate certain constructs into code thats tailored to the target platform. The downside is that it can create portability problems: code that yields expected results on one platform may produce surprisingly different results when compiled and executed on other platforms. This month, Ill examine one specific example of unspecified behavior. The call evaluates the arguments from left to right, and performs the post-increment on the first argument, n, before evaluating the second argument. Thus, the first argument evaluates to zero, the second argument evaluates to one, and the function call produces the following output: i 0; For example, n is an expression that both yields a value and has a side effect. The value of the expression is the value of n before its incremented. A function call has evaluated the argument once it has copied n into the parameter storage area for the call on the stack or in a register. The entire argument expression, including the side effect, need not be completely executed at that point. The function call can complete the side effect before it evaluates the next argument, or it can delay completing the side effect until just before jumping to the function. Both compilers for the ARM7 apparently evaluate function call arguments from left to right, but we cant tell yet whether the Pentium compilers evaluate function arguments from left to right or from right to left. Lets see what happens when we compile a different function call: n 0; The call evaluates the right argument first, which increments n, and then it uses the incremented value for the left argument, too. The compiler could do the pre-increment of the second operand before it does anything else. So you still cant tell from the output exactly how the compiler evaluates the function call arguments. Since the order of evaluation for function arguments is unspecified, a compiler can evaluate the arguments to a call in any order, as long as it evaluates all the arguments before jumping to the function. In theory, a compiler could use even a random number generator to determine the order of evaluation for each call. In practice, most compilers seem to use either left-to-right or right-to-left for all calls. The four Pentium compilers I tested evaluate function arguments from right to left. I was surprised to find that the two compilers for the ARM7 varied the order of evaluation from call to call. I dont believe this curious change in the argument evaluation order is a consequence of the ARM7 instruction set. I looked at the code that each compiler generated and its remarkably different considering the similarity of the result. Staying away All other things being equal, portable code is better than non-portable code. Function calls that depend on the order of argument evaluation are non-portable, and you should avoid them. How do you know if youve written a call with an evaluation order dependency? This warning says the call has undefined behavior, not just unspecified behavior. A program exhibiting undefined behavior is not just a non-portable program-its an erroneous program. This brings us to a subtle point: although the order of evaluation for function arguments is unspecified, a program that pushes too far into unspecified territory can produce undefined behavior. Next time, Ill explain what a sequence point is and how it elevates this particular unspecified behavior into an undefined behavior. Dan Saks is the president of Saks & Associates, a C/C training and consulting company. PCBpro-Easiest Site to Quote/Order Circuit Boards Free quotes for circuit boards in seconds with no sign up required. Easy order process makes it easy to complete your circuit board needs. Discover the MIPS benefits that enable the success of Cisco, HP, Sony other equipment: performance, architecture, instruction set, devices, cores, compilers operating systems. Free webinar presented by Tom Riordan,a MIPS architecture pioneer.