Does anyone know of a C compiler that fails to compile this? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T22:26:40Z http://stackoverflow.com/feeds/question/328215 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this 8 Does anyone know of a C compiler that fails to compile this? Dustin 2008-11-29T23:56:27Z 2008-12-02T02:37:54Z <p>I was hanging out in my profiler for a while trying to figure out how to speed up a common log parser which was bottlenecked around the date parsing and I tried various algorithms to speed things up.</p> <p>The thing I tried that was fastest for me was also by far the most readable, but potentially non-standard C.</p> <p>This worked quite well in gcc, icc, and my really old and picky SGI compiler. As it's a quite readable optimization, I'm wondering if there's any place someone knows of where it doesn't do what I want.</p> <pre><code>static int parseMonth(const char *input) { int rv=-1; int inputInt=0; int i=0; for(i=0; i&lt;4 &amp;&amp; input[i]; i++) { inputInt = (inputInt &lt;&lt; 8) | input[i]; } switch(inputInt) { case 'Jan/': rv=0; break; case 'Feb/': rv=1; break; case 'Mar/': rv=2; break; case 'Apr/': rv=3; break; case 'May/': rv=4; break; case 'Jun/': rv=5; break; case 'Jul/': rv=6; break; case 'Aug/': rv=7; break; case 'Sep/': rv=8; break; case 'Oct/': rv=9; break; case 'Nov/': rv=10; break; case 'Dec/': rv=11; break; } return rv; } </code></pre> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328221#328221 2 Answer by strager for Does anyone know of a C compiler that fails to compile this? strager 2008-11-30T00:01:29Z 2008-11-30T00:01:29Z <p>I get warnings, but no errors (gcc). Seems to compile and operate fine. <strong>May not work for big-endian systems, though!</strong></p> <p>I wouldn't suggest this method, though. Perhaps you can xor instead of or-shift, to create a single byte. Then use the case statement on a byte (or, faster, use a LUT of the first N bits).</p> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328222#328222 2 Answer by Robert Gamble for Does anyone know of a C compiler that fails to compile this? Robert Gamble 2008-11-30T00:01:49Z 2008-11-30T00:59:47Z <p>There are at least 3 things that keep this program from being portable:</p> <ol> <li>Multi-character constants are implementation-defined so different compilers may handle them differently.</li> <li>A byte can be more than 8 bits, there is plenty of hardware where the smallest addressable unit of memory is 16 or even 32 bits, you often find this in DSPs for example. If a byte is more than 8 bits then so will <code>char</code> since <code>char</code> is by definition one byte long; your program will not function properly on such systems.</li> <li>Lastly, there are many machines where <code>int</code> is only 16-bits (which is the smallest size allowed for int) including embedded devices and legacy machines, your program will fail on these machines as well.</li> </ol> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328228#328228 8 Answer by Johannes Schaub - litb for Does anyone know of a C compiler that fails to compile this? Johannes Schaub - litb 2008-11-30T00:06:08Z 2008-11-30T00:06:08Z <p>I only know what the C Standard says about this (C99):</p> <blockquote> <p>The value of an integer character constant containing more than one character (e.g., 'ab'), or containing a character or escape sequence that does not map to a single-byte execution character, is implementation-defined. If an integer character constant contains a single character or escape sequence, its value is the one that results when an object with type char whose value is that of the single character or escape sequence is converted to type int.</p> </blockquote> <p>(6.4.4.4/10 taken from a draft)</p> <p>So it's implementation defined. Meaning it is not guaranteed it works the same everywhere, but the behavior must be documented by the implementation. For example if <code>int</code> is only 16 bits wide in a particular implementation, then <code>'Jan/'</code> can't be represented anymore like you intend it (<code>char</code> must be at least 8 bits, while a character literal is always of type <code>int</code>).</p> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328236#328236 0 Answer by Alnitak for Does anyone know of a C compiler that fails to compile this? Alnitak 2008-11-30T00:12:47Z 2008-11-30T00:12:47Z <p>The fact that a four character constant is equivalent to an particular 32-bit integer is a <strong>non-standard</strong> feature often seen on compilers for MS Windows and Mac computers (and PalmOS, AFAICR).</p> <p>On theses systems a four character string is commonly used as a tag for identifying chunks of data files, or as an application / data-type identifier (e.g. "APPL").</p> <p>It's a convenience then for the developer that they can store such a string into various data-structures without worrying about zero-byte termination, pointers, etc.</p> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328237#328237 0 Answer by artificialidiot for Does anyone know of a C compiler that fails to compile this? artificialidiot 2008-11-30T00:13:27Z 2008-11-30T00:13:27Z <p>Machine word size issues aside, your compiler may promote input[i] to a negative integer which will just set the upper bits of inputInt with or operation, so I suggest you to be explicit about signedness of char variables.</p> <p>But since in US, no one cares about the 8th bit, it is probably a non-issue for you.</p> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328240#328240 9 Answer by Vilx- for Does anyone know of a C compiler that fails to compile this? Vilx- 2008-11-30T00:14:43Z 2008-11-30T00:31:56Z <pre><code>if ( !input[0] || !input[1] || !input[2] || input[3] != '/' ) return -1; switch ( input[0] ) { case 'F': return 1; // Feb case 'S': return 8; // Sep case 'O': return 9; // Oct case 'N': return 10; // Nov case 'D': return 11; // Dec; case 'A': return input[1] == 'p' ? 3 : 7; // Apr, Aug case 'M': return input[2] == 'r' ? 2 : 4; // Mar, May default: return input[1] == 'a' ? 0 : (input[2] == 'n' ? 5 : 6); // Jan, Jun, Jul } </code></pre> <p>Slightly less readable and not so much validating, but perhaps even faster, no?</p> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328261#328261 7 Answer by tvanfosson for Does anyone know of a C compiler that fails to compile this? tvanfosson 2008-11-30T00:38:53Z 2008-11-30T00:38:53Z <p>You're just computing a hash of those four characters. Why not predefine some integer constants that compute the hash in the same way and use those? Same readability and you're not depending on any implementation specific idiosyncrasies of the compiler.</p> <pre><code>uint32_t MONTH_JAN = 'J' &lt;&lt; 24 + 'a' &lt;&lt; 16 + 'n' &lt;&lt; 8 + '/'; uint32_t MONTH_FEB = 'F' &lt;&lt; 24 + 'e' &lt;&lt; 16 + 'b' &lt;&lt; 8 + '/'; ... static uint32_t parseMonth(const char *input) { uint32_t rv=-1; uint32_t inputInt=0; int i=0; for(i=0; i&lt;4 &amp;&amp; input[i]; i++) { inputInt = (inputInt &lt;&lt; 8) | (input[i] &amp; 0x7f); // clear top bit } switch(inputInt) { case MONTH_JAN: rv=0; break; case MONTH_FEB: rv=1; break; ... } return rv; } </code></pre> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328298#328298 10 Answer by Jonathan Leffler for Does anyone know of a C compiler that fails to compile this? Jonathan Leffler 2008-11-30T01:17:04Z 2008-11-30T02:01:32Z <p>Solaris 10 - SPARC - SUN Compiler.</p> <p>Test code:</p> <pre><code>#include &lt;stdio.h&gt; static int parseMonth(const char *input) { int rv=-1; int inputInt=0; int i=0; for(i=0; i&lt;4 &amp;&amp; input[i]; i++) { inputInt = (inputInt &lt;&lt; 8) | input[i]; } switch(inputInt) { case 'Jan/': rv=0; break; case 'Feb/': rv=1; break; case 'Mar/': rv=2; break; case 'Apr/': rv=3; break; case 'May/': rv=4; break; case 'Jun/': rv=5; break; case 'Jul/': rv=6; break; case 'Aug/': rv=7; break; case 'Sep/': rv=8; break; case 'Oct/': rv=9; break; case 'Nov/': rv=10; break; case 'Dec/': rv=11; break; } return rv; } static const struct { char *data; int result; } test_case[] = { { "Jan/", 0 }, { "Feb/", 1 }, { "Mar/", 2 }, { "Apr/", 3 }, { "May/", 4 }, { "Jun/", 5 }, { "Jul/", 6 }, { "Aug/", 7 }, { "Sep/", 8 }, { "Oct/", 9 }, { "Nov/", 10 }, { "Dec/", 11 }, { "aJ/n", -1 }, }; #define DIM(x) (sizeof(x)/sizeof(*(x))) int main(void) { size_t i; int result; for (i = 0; i &lt; DIM(test_case); i++) { result = parseMonth(test_case[i].data); if (result != test_case[i].result) printf("!! FAIL !! %s (got %d, wanted %d)\n", test_case[i].data, result, test_case[i].result); } return(0); } </code></pre> <p>Results (GCC 3.4.2 and Sun):</p> <pre><code>$ gcc -O xx.c -o xx xx.c:14:14: warning: multi-character character constant xx.c:15:14: warning: multi-character character constant xx.c:16:14: warning: multi-character character constant xx.c:17:14: warning: multi-character character constant xx.c:18:14: warning: multi-character character constant xx.c:19:14: warning: multi-character character constant xx.c:20:14: warning: multi-character character constant xx.c:21:14: warning: multi-character character constant xx.c:22:14: warning: multi-character character constant xx.c:23:14: warning: multi-character character constant xx.c:24:14: warning: multi-character character constant xx.c:25:14: warning: multi-character character constant $ ./xx $ cc -o xx xx.c $ ./xx !! FAIL !! Jan/ (got -1, wanted 0) !! FAIL !! Feb/ (got -1, wanted 1) !! FAIL !! Mar/ (got -1, wanted 2) !! FAIL !! Apr/ (got -1, wanted 3) !! FAIL !! May/ (got -1, wanted 4) !! FAIL !! Jun/ (got -1, wanted 5) !! FAIL !! Jul/ (got -1, wanted 6) !! FAIL !! Aug/ (got -1, wanted 7) !! FAIL !! Sep/ (got -1, wanted 8) !! FAIL !! Oct/ (got -1, wanted 9) !! FAIL !! Nov/ (got -1, wanted 10) !! FAIL !! Dec/ (got -1, wanted 11) $ </code></pre> <p>Note that the last test case still passed - that is, it generated a -1.</p> <p>Here's a revised - more verbose - version of parseMonth() which does work the same under both GCC and Sun C compiler:</p> <pre><code>#include &lt;stdio.h&gt; /* MONTH_CODE("Jan/") does not reduce to an integer constant */ #define MONTH_CODE(x) ((((((x[0]&lt;&lt;8)|x[1])&lt;&lt;8)|x[2])&lt;&lt;8)|x[3]) #define MONTH_JAN (((((('J'&lt;&lt;8)|'a')&lt;&lt;8)|'n')&lt;&lt;8)|'/') #define MONTH_FEB (((((('F'&lt;&lt;8)|'e')&lt;&lt;8)|'b')&lt;&lt;8)|'/') #define MONTH_MAR (((((('M'&lt;&lt;8)|'a')&lt;&lt;8)|'r')&lt;&lt;8)|'/') #define MONTH_APR (((((('A'&lt;&lt;8)|'p')&lt;&lt;8)|'r')&lt;&lt;8)|'/') #define MONTH_MAY (((((('M'&lt;&lt;8)|'a')&lt;&lt;8)|'y')&lt;&lt;8)|'/') #define MONTH_JUN (((((('J'&lt;&lt;8)|'u')&lt;&lt;8)|'n')&lt;&lt;8)|'/') #define MONTH_JUL (((((('J'&lt;&lt;8)|'u')&lt;&lt;8)|'l')&lt;&lt;8)|'/') #define MONTH_AUG (((((('A'&lt;&lt;8)|'u')&lt;&lt;8)|'g')&lt;&lt;8)|'/') #define MONTH_SEP (((((('S'&lt;&lt;8)|'e')&lt;&lt;8)|'p')&lt;&lt;8)|'/') #define MONTH_OCT (((((('O'&lt;&lt;8)|'c')&lt;&lt;8)|'t')&lt;&lt;8)|'/') #define MONTH_NOV (((((('N'&lt;&lt;8)|'o')&lt;&lt;8)|'v')&lt;&lt;8)|'/') #define MONTH_DEC (((((('D'&lt;&lt;8)|'e')&lt;&lt;8)|'c')&lt;&lt;8)|'/') static int parseMonth(const char *input) { int rv=-1; int inputInt=0; int i=0; for(i=0; i&lt;4 &amp;&amp; input[i]; i++) { inputInt = (inputInt &lt;&lt; 8) | input[i]; } switch(inputInt) { case MONTH_JAN: rv=0; break; case MONTH_FEB: rv=1; break; case MONTH_MAR: rv=2; break; case MONTH_APR: rv=3; break; case MONTH_MAY: rv=4; break; case MONTH_JUN: rv=5; break; case MONTH_JUL: rv=6; break; case MONTH_AUG: rv=7; break; case MONTH_SEP: rv=8; break; case MONTH_OCT: rv=9; break; case MONTH_NOV: rv=10; break; case MONTH_DEC: rv=11; break; } return rv; } static const struct { char *data; int result; } test_case[] = { { "Jan/", 0 }, { "Feb/", 1 }, { "Mar/", 2 }, { "Apr/", 3 }, { "May/", 4 }, { "Jun/", 5 }, { "Jul/", 6 }, { "Aug/", 7 }, { "Sep/", 8 }, { "Oct/", 9 }, { "Nov/", 10 }, { "Dec/", 11 }, { "aJ/n", -1 }, { "/naJ", -1 }, }; #define DIM(x) (sizeof(x)/sizeof(*(x))) int main(void) { size_t i; int result; for (i = 0; i &lt; DIM(test_case); i++) { result = parseMonth(test_case[i].data); if (result != test_case[i].result) printf("!! FAIL !! %s (got %d, wanted %d)\n", test_case[i].data, result, test_case[i].result); } return(0); } </code></pre> <p>I wanted to use MONTH_CODE() but the compilers did not cooperate.</p> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328312#328312 0 Answer by Charlie Martin for Does anyone know of a C compiler that fails to compile this? Charlie Martin 2008-11-30T01:31:04Z 2008-11-30T01:31:04Z <p>I'd sure love to see the profiling that shows <em>this</em> is your most significant bottleneck, but in any case if you're going to pull something like this, use a union instead of 50 instructions looping and shifting. Here's a little example program, I'll leave it to you to fit it into your program.</p> <pre><code>/* union -- demonstrate union for characters */ #include &lt;stdio.h&gt; union c4_i { char c4[5]; int i ; } ; union c4_i ex; int main (){ ex.c4[0] = 'a'; ex.c4[1] = 'b'; ex.c4[2] = 'c'; ex.c4[3] = 'd'; ex.c4[4] = '\0'; printf("%s 0x%08x\n", ex.c4, ex.i ); return 0; } </code></pre> <p>Here's example output:</p> <pre><code>bash $ ./union abcd 0x64636261 bash $ </code></pre> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328331#328331 4 Answer by Scott Evernden for Does anyone know of a C compiler that fails to compile this? Scott Evernden 2008-11-30T01:54:08Z 2008-11-30T01:54:08Z <pre><code>char *months = "Jan/Feb/Mar/Apr/May/Jun/Jul/Aug/Sep/Oct/Nov/Dec/"; char *p = strnstr(months, input, 4); return p ? (p - months) / 4 : -1; </code></pre> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/328724#328724 1 Answer by uvts_cvs for Does anyone know of a C compiler that fails to compile this? uvts_cvs 2008-11-30T10:45:57Z 2008-11-30T10:45:57Z <p><a href="http://www.comeaucomputing.com/tryitout/" rel="nofollow">Comeau compiler</a></p> <pre><code>Comeau C/C++ 4.3.10.1 (Oct 6 2008 11:28:09) for ONLINE_EVALUATION_BETA2 Copyright 1988-2008 Comeau Computing. All rights reserved. MODE:strict errors C99 "ComeauTest.c", line 11: warning: multicharacter character literal (potential portability problem) case 'Jan/': rv=0; break; ^ "ComeauTest.c", line 12: warning: multicharacter character literal (potential portability problem) case 'Feb/': rv=1; break; ^ "ComeauTest.c", line 13: warning: multicharacter character literal (potential portability problem) case 'Mar/': rv=2; break; ^ "ComeauTest.c", line 14: warning: multicharacter character literal (potential portability problem) case 'Apr/': rv=3; break; ^ "ComeauTest.c", line 15: warning: multicharacter character literal (potential portability problem) case 'May/': rv=4; break; ^ "ComeauTest.c", line 16: warning: multicharacter character literal (potential portability problem) case 'Jun/': rv=5; break; ^ "ComeauTest.c", line 17: warning: multicharacter character literal (potential portability problem) case 'Jul/': rv=6; break; ^ "ComeauTest.c", line 18: warning: multicharacter character literal (potential portability problem) case 'Aug/': rv=7; break; ^ "ComeauTest.c", line 19: warning: multicharacter character literal (potential portability problem) case 'Sep/': rv=8; break; ^ "ComeauTest.c", line 20: warning: multicharacter character literal (potential portability problem) case 'Oct/': rv=9; break; ^ "ComeauTest.c", line 21: warning: multicharacter character literal (potential portability problem) case 'Nov/': rv=10; break; ^ "ComeauTest.c", line 22: warning: multicharacter character literal (potential portability problem) case 'Dec/': rv=11; break; ^ "ComeauTest.c", line 1: warning: function "parseMonth" was declared but never referenced static int parseMonth(const char *input) { ^ </code></pre> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/329172#329172 0 Answer by HUAGHAGUAH for Does anyone know of a C compiler that fails to compile this? HUAGHAGUAH 2008-11-30T18:38:45Z 2008-11-30T18:38:45Z <p>As mentioned by others, that code throws a bunch of warnings and is probably not endian-safe.</p> <p>Was your original date parser hand-written as well? Have you tried strptime(3)?</p> http://stackoverflow.com/questions/328215/does-anyone-know-of-a-c-compiler-that-fails-to-compile-this/332873#332873 2 Answer by AShelly for Does anyone know of a C compiler that fails to compile this? AShelly 2008-12-02T02:37:54Z 2008-12-02T02:37:54Z <p><a href="http://www.ni.com/lwcvi/" rel="nofollow">National Instrument's CVI 8.5 for Windows</a> compiler fails on your original code with multiple warnings:</p> <pre><code> Warning: Excess characters in multibyte character literal ignored. </code></pre> <p>and errors of the form:</p> <pre><code> Duplicate case label '77'. </code></pre> <p>It succeeds on Jonathan's code.</p>