User Michael Burr - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:03:00Z http://stackoverflow.com/feeds/user/12711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1895922/sequence-points-and-partial-order/1895947#1895947 5 Answer by Michael Burr for Sequence points and partial order Michael Burr 2009-12-13T08:52:30Z 2009-12-13T09:26:55Z <p>The C standard says this about assignment operators (C90 6.3.16 or C99 6.5.16 Assignment operators):</p> <blockquote> <p>The side effect of updating the stored value of the left operand shall occur between the previous and the next sequence point.</p> </blockquote> <p>It seems to me that in the statement:</p> <pre><code>i=(i,i++,i)+1; </code></pre> <p>the sequence point 'previous' to the assignment operator would be the second comma operator and the 'next' sequence point would be the end of the expression. So I'd say that the expression doesn't invoke undefined behavior.</p> <p>However, this expression:</p> <pre><code>*(some_ptr + i) = (i,i++,i)+1; </code></pre> <p>would have undefined behavior because the order of evaluation of the 2 operands of the assignment operator is undefined, and in this case instead of the problem being when the assignment operator's side effect takes place, the problem is you don't know whether the value of i used in the left handle operand will be evaluated before or after the right hand side. This order of evaluation problem doesn't occur in the first example because in that expression the value of <code>i</code> isn't actually used in the left-hand side - all that the assignment operator is interested in is the "lvalue-ness" of <code>i</code>.</p> <p>But I also think that all this is sketchy enough (and my understanding of the nuances involved are sketchy enough) that I wouldn't be surprised if someone can convince me otherwise (on either count).</p> http://stackoverflow.com/questions/1894446/taking-advantage-of-sse-and-other-cpu-extensions/1894855#1894855 2 Answer by Michael Burr for Taking advantage of SSE and other CPU extensions. Michael Burr 2009-12-12T22:08:20Z 2009-12-13T03:09:15Z <p>For your second point there are several solutions as long as you can separate out the differences into different functions:</p> <ul> <li>plain old C function pointers</li> <li>dynamic linking (which generally relies on C function pointers)</li> <li>if you're using C++, having different classes that represent the support for different architectures and using virtual functions can help immensely with this.</li> </ul> <p>Note that because you'd be relying on indirect function calls, the functions that abstract the different operations generally need to represent somewhat higher level functionality or you may lose whatever gains you get from the optimized instruction in the call overhead (in other words don't abstract the individual SSE operations - abstract the work you're doing).</p> <p>Here's an example using function pointers:</p> <pre><code>typedef int (*scale_func_ptr)( int scalar, int* pData, int count); int non_sse_scale( int scalar, int* pData, int count) { // do whatever work needs done, without SSE so it'll work on older CPUs return 0; } int sse_scale( int scalar, in pData, int count) { // equivalen code, but uses SSE return 0; } // at initialization scale_func_ptr scale_func = non_sse_scale; if (useSSE) { scale_func = sse_scale; } // now, when you want to do the work: scale_func( 12, theData_ptr, 512); // this will call the routein that tailored to SSE // if the CPU supports it, otherwise calls the non-SSE // version of the function </code></pre> http://stackoverflow.com/questions/1894683/bitwise-or-c-versus-c/1894694#1894694 3 Answer by Michael Burr for Bitwise Or: C# versus C++ Michael Burr 2009-12-12T21:03:43Z 2009-12-12T21:03:43Z <p>Unlike C/C++, C# maintains a pretty strict separation between arithmetic and boolean operations. </p> <p>The designers of C# considered the automatic conversion of integral types to boolean to be a source of errors that they'd rather C# didn't have, so you have to explicitly make your arithmetic results to a boolean result by introducing a comparison:</p> <pre><code>if ((a | b) != 0) { // ... } </code></pre> <p>I think it's probably not a bad idea to do this in C/C++ as well, but I'll admit that I certainly don't strictly follow that advice (and I wouldn't argue for it very hard).</p> http://stackoverflow.com/questions/1892588/linking-error-when-compiling-c-and-c-code-with-g/1892734#1892734 2 Answer by Michael Burr for Linking error when compiling C and C++ code with g++ Michael Burr 2009-12-12T08:07:13Z 2009-12-12T20:48:27Z <p>The more I think about this problem, the more it looks like you have the functions declared in your class declaration, but you have no corresponding definition for the functions.</p> <p>For example, this example compiles just fine but produces the same linker errors you're seeing:</p> <pre><code>typedef unsigned int bwt_t; typedef unsigned int bntseq_t; class BWAGenome { public: BWAGenome( char const* name); void BWTRestoreBWT( char const* name); void GetMatches( unsigned int, int, int, bwt_t*, bwt_t*, bwt_t*, bntseq_t*, bntseq_t*); void getMatches( unsigned int, int); }; BWAGenome::BWAGenome( char const* name) { BWTRestoreBWT( name); } void BWAGenome::getMatches( unsigned int x, int y) { GetMatches( x, y, 0,0,0,0,0,0); } int main() { return 0; } </code></pre> <p>Are the functions <code>BWTRestoreBWT()</code> and <code>GetMatches()</code> supposed to be part of <code>class BWAGenome</code> or are they the C functions that are being wrapped? If the latter, then that's an indication that you're including the header for those functions in the wrong place (and that they do, in fact, probably need to have an <code>extern "C"</code> linkage specification added).</p> <p><hr></p> <p>Edit in response to new information in the question:</p> <p><hr></p> <p>In your edited question you say:</p> <pre><code>//definition in BWAGenome.h static bwt_t * BWTRestoreBWT(const char *fn); //declaration in BWAGenome.cpp static bwt_t * BWTRestoreBWT(const char *fn) { return bwt_restore_bwt(fn); //bwt_restore_bwt is a function in the C code that I am attempting to integrate } </code></pre> <p>Because of the errors that are in your original question, I can only assume that the declaration of <code>BWTRestoreBWT()</code> in <code>BWAGenome.h</code> is inside of <code>class BWAGenome</code>, like so:</p> <pre><code>class BWAGenome { // etc... static bwt_t * BWTRestoreBWT(const char *fn); // etc... }; </code></pre> <p>This means that <code>BWTRestoreBWT()</code> is a member of <code>class BWAGenome()</code> so its definition should look like (note the <code>BWAGenome::</code> scoping operator):</p> <pre><code>//declaration in BWAGenome.cpp static bwt_t * BWAGenome::BWTRestoreBWT(const char *fn) { return bwt_restore_bwt(fn); //bwt_restore_bwt is a function in the C code that I am attempting to integrate } </code></pre> <p>Or you can move the declaration of <code>BWTRestoreBWT()</code> outside of <code>class BWAGenome</code> (more formally known as 'namespace scope').</p> <p>That should fix your current linker error. If you now get an error about something with a name similar to <code>bwt_restore_bwt</code> not being found, then you'll know you need to do <code>extern "C"</code> for the C functions as well.</p> http://stackoverflow.com/questions/1894098/sites-for-function-reference/1894561#1894561 1 Answer by Michael Burr for Sites for function reference Michael Burr 2009-12-12T20:13:43Z 2009-12-12T20:13:43Z <p>95% of my basic C/C++ questions are answered via Google (usually through a link to <a href="http://www.cplusplus.com" rel="nofollow">http://www.cplusplus.com</a>). </p> <p>Google has the advantage that I get to see at a glance an overview of what problems other people might have been running into with whatever I'm looking up. This isn't usually something of value (because I'm just looking for a refresher or basics), but when it is useful it's pure gold.</p> <p>If I need more authority or detail, I hit the PDF of the standard document. Then of course there's MSDN (local or on the web) if I need Windows details (which is often enough for me anyway).</p> <p>Finally when I really want or need background or for curiosity's sake, there's a few shelves full of books from the experts (or their online articles - which Google helps me with, of course).</p> http://stackoverflow.com/questions/1893013/complex-declarations/1893824#1893824 1 Answer by Michael Burr for Complex Declarations Michael Burr 2009-12-12T15:54:58Z 2009-12-12T15:54:58Z <p>The clockwise/spiral:</p> <pre><code>* http://c-faq.com/decl/spiral.anderson.html </code></pre> http://stackoverflow.com/questions/1892662/concat-string-in-isnullorempty-parameter/1892720#1892720 3 Answer by Michael Burr for Concat string in IsNullOrEmpty parameter Michael Burr 2009-12-12T07:56:51Z 2009-12-12T08:01:52Z <p>It's a small thing, but I think a minor reformatting of your original results in improved readability and makes the intent of the code about as crystal clear as can be:</p> <pre><code>if ( string.IsNullOrEmpty(param1) &amp;&amp; string.IsNullOrEmpty(param2) &amp;&amp; string.IsNullOrEmpty(param3) ) { // do stuff } </code></pre> <p>Consider this similar set of examples:</p> <pre><code>if ( c == 's' || c == 'o' || c == 'm' || c == 'e' || c == 't' || c == 'h' || c == 'i' || c == 'n' || c == 'g') { // ... } if ( c == 's' || c == 'o' || c == 'm' || c == 'e' || c == 't' || c == 'h' || c == 'i' || c == 'n' || c == 'g') { // ... } </code></pre> http://stackoverflow.com/questions/1876433/sse2-16-byte-aligned-dynamic-allocation-of-memory/1876512#1876512 4 Answer by Michael Burr for SSE2 - 16-byte aligned dynamic allocation of memory Michael Burr 2009-12-09T20:09:32Z 2009-12-09T20:16:53Z <p>I think the 2nd problem is that you're reading at an offset from the pointer variable (not an offset from what the pointer points to).</p> <p>Change:</p> <pre><code>label: movdqa xmm0, xmmword ptr [t1+eax] </code></pre> <p>To something like:</p> <pre><code>mov ebx, [t1] label: movdqa xmm0, xmmword ptr [ebx+eax] </code></pre> <p>And similarly for your accesses through the t2 pointer.</p> <p>This might be even better (though I haven't had an opportunity to test it, so it might not even work):</p> <pre><code> _asm { mov eax, [t1] mov ebx, [t1] lea ecx, [eax + (100000*4)] label: movdqa xmm0, xmmword ptr [eax] movdqa xmm1, xmmword ptr [ebx] pmuludq xmm0, xmm1 movdqa mul1, xmm0 movdqa xmm0, xmmword ptr [eax] pshufd xmm0, xmm0, 05fh pshufd xmm1, xmm1, 05fh pmuludq xmm0, xmm1 movdqa mul2, xmm0 add eax, 16 add ebx, 16 cmp eax, ecx jnge label } </code></pre> http://stackoverflow.com/questions/1876433/sse2-16-byte-aligned-dynamic-allocation-of-memory/1876448#1876448 4 Answer by Michael Burr for SSE2 - 16-byte aligned dynamic allocation of memory Michael Burr 2009-12-09T20:01:40Z 2009-12-09T20:01:40Z <p>You're not allocating enough memory:</p> <pre><code>t1 = (int*)_mm_malloc(n * sizeof( int),16); t2 = (int*)_mm_malloc(n * sizeof( int),16); </code></pre> http://stackoverflow.com/questions/1876150/simple-efficient-weak-pointer-that-is-set-to-null-when-target-memory-is-dealloca/1876178#1876178 12 Answer by Michael Burr for Simple, efficient weak pointer that is set to NULL when target memory is deallocated Michael Burr 2009-12-09T19:19:47Z 2009-12-09T19:19:47Z <p>You can use the <code>lock()</code> member of <code>boost::weak_ptr</code> to be able to test (then use) the value of the <code>weak_ptr</code> without dealing with exceptions.</p> http://stackoverflow.com/questions/1873352/how-do-i-convert-a-value-from-host-byte-order-to-little-endian/1875190#1875190 1 Answer by Michael Burr for How do I convert a value from host byte order to little endian? Michael Burr 2009-12-09T16:46:50Z 2009-12-09T19:14:45Z <p>Something like the following:</p> <pre><code>unsigned short swaps( unsigned short val) { return ((val &amp; 0xff) &lt;&lt; 8) | ((val &amp; 0xff00) &gt;&gt; 8); } /* host to little endian */ #define PLATFORM_IS_BIG_ENDIAN 1 #if PLATFORM_IS_LITTLE_ENDIAN unsigned short htoles( unsigned short val) { /* no-op on a little endian platform */ return val; } #elif PLATFORM_IS_BIG_ENDIAN unsigned short htoles( unsigned short val) { /* need to swap bytes on a big endian platform */ return swaps( val); } #else unsigned short htoles( unsigned short val) { /* the platform hasn't been properly configured for the */ /* preprocessor to know if it's little or big endian */ /* use potentially less-performant, but always works option */ return swaps( htons(val)); } #endif </code></pre> <p>If you have a system that's properly configured (such that the preprocessor knows whether the target id little or big endian) you get an 'optimized' version of <code>htoles()</code>. Otherwise you get the potentially non-optimized version that depends on <code>htons()</code>. In any case, you get something that works.</p> <p>Nothing too tricky and more or less portable.</p> <p>Of course, you can further improve the optimization possibilities by implementing this with <code>inline</code> or as macros as you see fit.</p> <p>You might want to look at something like the "Portable Open Source Harness (POSH)" for an actual implementation that defines the endianness for various compilers. Note, getting to the library requires going though a pseudo-authentication page (though you don't need to register to give any personal details): <a href="http://hookatooka.com/poshlib/" rel="nofollow">http://hookatooka.com/poshlib/</a></p> http://stackoverflow.com/questions/1874956/searching-for-non-commercial-license-for-source-code/1875044#1875044 3 Answer by Michael Burr for Searching for non-commercial license for source code Michael Burr 2009-12-09T16:25:28Z 2009-12-09T16:25:28Z <p>Couldn't you use your preferred license by saysing something similar to: </p> <blockquote> <p>Licensed under the Qt Non-Commercial license version 1, as follows, with the exception that the Choice of Law clause is instead:</p> <p>This license is governed by the Laws of whatever jurisdiction. Disputes shall be settled by the courts of whatever jurisdiction.</p> </blockquote> <p>I know people often use the GPL with certain exceptions, I imagine you can do the same with this license.</p> http://stackoverflow.com/questions/1872806/is-there-any-heap-compaction-in-c/1873256#1873256 1 Answer by Michael Burr for Is there any heap compaction in C++? Michael Burr 2009-12-09T11:23:55Z 2009-12-09T11:23:55Z <p>I'm unaware of any C++ implementation that will move allocated objects around. I suppose it might be technically permitted by the standard (though I'm not 100% sure about that), but remember that the standard must allow a pointer to be cast to a large enough integral type and back again and still be a valid pointer. So an implementation that could move dynamically allocated objects around would have to be able to deal with the admittedly unlikely series of events where:</p> <ul> <li>a pointer is cast to an intptr_t</li> <li>that value is transformed somehow (xor'ed with some value), so the runtime can't detect that it's a pointer to a particular object</li> <li>the object gets moved due to compaction</li> <li>the intptr_t gets transformed back into its original value, and </li> <li>cast back to a pointer to the object type</li> </ul> <p>The implementation would need to ensure that the pointer from that last step points to the moved object's new location.</p> <p>I suppose using double indirection for pointers might allow an implementation to deal with this, but I'm unaware of any implementation that does anything like this.</p> http://stackoverflow.com/questions/1872571/null-pointer-compatibility-with-staticcast/1872860#1872860 0 Answer by Michael Burr for NULL pointer compatibility with static_cast Michael Burr 2009-12-09T10:04:51Z 2009-12-09T10:57:02Z <p>What compiler are you using? A static cast from a base type to a derived type might result in an adjustment to the pointer - especially likely if multiple inheritance is involved (which doesn't seem to be the case in your situation from your description). However, it's still possible without MI.</p> <p>The standard indicates that if a null pointer value is being cast that the result will be a null pointer value (5.2.9/8 Static cast). However, I think that on many compilers most downcasts (especially when single inheritance is involved) don't result in a pointer adjustment, so I could imagine that a compiler might have a bug such that it wouldn't make the special check for null that would be required to avoid 'converting' a zero value null pointer to some non-zero value senseless pointer. I would assume that for such a bug to exist you must be doing something unusual to get the compiler to have to adjust the pointer in the downcast.</p> <p>It might be interesting to see what kind of assembly code was generated for your example.</p> <p>And for detailed information about how a compiler might layout an object that might need pointer adjustment with static casts, <a href="http://www.informit.com/store/product.aspx?isbn=0201834545" rel="nofollow">Stan Lippman's "Inside the C++ Object Model"</a> is a great resource.</p> <p><a href="http://www.usenix.org/publications/compsystems/1989/fall%5Fstroustrup.pdf" rel="nofollow">Stroustrup's paper on Multiple Inheritance for C++</a> (from 1989) is also a good read. It's too bad if a C++ compiler has a bug like I speculate about here - Stroustrup discusses the null pointer issue explicitly in that paper (4.5 Zero Valued Pointers).</p> <p>For your second question:</p> <blockquote> <p>Q2. Is static_casting from B to C/D/E valid?</p> </blockquote> <p>This is perfectly valid as long as when you perform the cast of the B pointer to a C/D/E pointer the B pointer is actually pointing to the B sub-object of a C/D/E object (respectively) and B isn't a virtual base. This is mentioned in the same paragraph of the standard (5.2.9/8 Static cast). I've highlighted the sentences of the paragraph most relevant to your questions:</p> <blockquote> <p>An rvalue of type “pointer to cv1 B”, where B is a class type, can be converted to an rvalue of type “pointer to cv2 D”, where D is a class derived (clause 10) from B, if a valid standard conversion from “pointer to D” to “pointer to B” exists (4.10), cv2 is the same cv-qualification as, or greater cv-qualification than, cv1, and B is not a virtual base class of D. <strong>The null pointer value (4.10) is converted to the null pointer value of the destination type. If the rvalue of type “pointer to cv1 B” points to a B that is actually a sub-object of an object of type D, the resulting pointer points to the enclosing object of type D.</strong> Otherwise, the result of the cast is undefined.</p> </blockquote> <p>As a final aside, you can workaround the problem using something like:</p> <pre><code>Set1(pEntity ? static_cast&lt;C*&gt;(pEntity) : 0); </code></pre> <p>which is what the compiler should be doing for you.</p> http://stackoverflow.com/questions/1867698/casting-a-void-pointer-data-to-a-function-pointer/1872358#1872358 2 Answer by Michael Burr for Casting a void pointer (data) to a function pointer Michael Burr 2009-12-09T08:10:53Z 2009-12-09T08:10:53Z <blockquote> <p>Now, of course the compiler complains about trying to cast a data void* to a function pointer</p> </blockquote> <p>My compilers don't complain at all with your code (then again, I don't have warnings cranked up - I'm using more-or-less default options). This is with a variety of compilers from MS, GCC,and others. Can you give more details about the compiler and compiler options you're using and the exact warning you're seeing?</p> <p>That said, C doesn't guarantee that a function pointer can be cast to/from a void pointer without problems, but in practice this will work fine on Windows.</p> <p>If you want something that's standards compliant, you'll need to use a 'generic' function pointer instead of a void pointer - C guarantees that a function pointer can be converted to any other function pointer and back without loss, so this will work regardless of your platform. That's probably why the return value of the Win32 <code>GetProcAddress()</code> API returns a <code>FARPROC</code>, which is just a typedef for a function pointer to a function that takes no parameters (or at least unspecified parameters) and returns a pointer-sized int. Something like:</p> <pre><code>typedef INT_PTR (FAR WINAPI *FARPROC)(); </code></pre> <p><code>FARPROC</code> would be Win32's idea of a 'generic' function pointer. So all you should need to do is have a similar typedef (if you don't want to use <code>FARPROC</code> for some reason):</p> <pre><code>typedef intptr_t (*generic_funcptr_t)(); // intptr_t is typedef'ed appropriately elsewhere, // like in &lt;stdint.h&gt; or something int GenericLoad(char* lib, generic_funcptr_t* Address, char* TheFunctionToLoad) generic_funcptr_t Address; GenericLoad("kernel32.dll", &amp;Address, "UnmapViewOfFile"); LoadedUnmapViewOfFile = (MyUnmapViewOfFile) Address; </code></pre> <p>Or you can dispense with the middle-man and pass the pointer you really want to get the value into:</p> <pre><code>GenericLoad2("kernel32.dll", (generic_funcptr_t *) &amp;LoadedUnmapViewOfFile, "UnmapViewOfFile"); </code></pre> <p>Though that's more dangerous than the method using the intermediate variable - for example the compiler will not give a diagnostic if you leave off the ampersand in this last example, however in the previous example, it would generally give at least a warning if you left off the ampersand from the <code>Address</code> argument. Similar to Bug #1 here: <a href="http://blogs.msdn.com/sdl/archive/2009/07/28/atl-ms09-035-and-the-sdl.aspx" rel="nofollow">http://blogs.msdn.com/sdl/archive/2009/07/28/atl-ms09-035-and-the-sdl.aspx</a></p> <p>Now you should be set. However, any way you look at it you'll need to perform some dangerous casting. Even in C++ with templates you'd have to perform a cast at some level (though you might be able to hide it in the template function) because the <code>GetProcAddress()</code> API doesn't know the actual type of the function pointer you're retrieving.</p> <p>Also note that your interface for <code>GenericLoad()</code> has a possibly serious design problem - it provides no way to manage the lifetime of the library. That may not be a problem if your intent is to not allow unloading a library, but it's something that users may want so you should consider the issue.</p> http://stackoverflow.com/questions/1859201/add-seconds-to-a-date/1860996#1860996 1 Answer by Michael Burr for add seconds to a date Michael Burr 2009-12-07T16:13:42Z 2009-12-07T16:21:52Z <p>In POSIX a <code>time_t</code> value is specified to be seconds, however that's not guaranteed by the C standard, so it might not be true on non-POSIX systems. It commonly is (in fact, I'm not sure how often it isn't a value representing seconds).</p> <p>Here's an example of adding time values that doesn't assume a <code>time_t</code> represents seconds using the standard library facilities, which are really not particularly great for manipulating time:</p> <pre><code>#include &lt;time.h&gt; #include &lt;stdio.h&gt; int main() { time_t now = time( NULL); struct tm now_tm = *localtime( &amp;now); struct tm then_tm = now_tm; then_tm.tm_sec += 50; // add 50 seconds to the time mktime( &amp;then_tm); // normalize it printf( "%s\n", asctime( &amp;now_tm)); printf( "%s\n", asctime( &amp;then_tm)); return 0; } </code></pre> <p>Parsing your time string into an appropriate <code>struct tm</code> variable is left as an exercise. The <code>strftime()</code> function can be used to format a new one (and the POSIX <code>strptime()</code> function can help with the parsing).</p> http://stackoverflow.com/questions/1854843/does-gpl-code-linking-with-proprietary-library-depend-which-is-created-first/1854944#1854944 2 Answer by Michael Burr for Does GPL code linking with proprietary library depend which is created first? Michael Burr 2009-12-06T10:04:58Z 2009-12-06T10:04:58Z <p>From the GNU GPL FAQ:</p> <blockquote> <p><a href="http://www.gnu.org/licenses/gpl-faq.html#GPLPluginsInNF" rel="nofollow">Can I apply the GPL when writing a plug-in for a non-free program?</a></p> <p>If the program uses fork and exec to invoke plug-ins, then the plug-ins are separate programs, so the license for the main program makes no requirements for them. So you can use the GPL for a plug-in, and there are no special requirements.</p> <p>If the program dynamically links plug-ins, and they make function calls to each other and share data structures, we believe they form a single program, which must be treated as an extension of both the main program and the plug-ins. This means that combination of the GPL-covered plug-in with the non-free main program would violate the GPL. However, you can resolve that legal problem by adding an exception to your plug-in's license, giving permission to link it with the non-free main program.</p> <p>See also the question <a href="http://www.gnu.org/licenses/gpl-faq.html#FSWithNFLibs" rel="nofollow">I am writing free software that uses a non-free library</a>.</p> </blockquote> <p>And:</p> <blockquote> <p><a href="http://www.gnu.org/licenses/gpl-faq.html#GPLIncompatibleLibs" rel="nofollow">What legal issues come up if I use GPL-incompatible libraries with GPL software?</a></p> <p>Both versions of the GPL have an exception to their copyleft, commonly called the system library exception. If the GPL-incompatible libraries you want to use meet the criteria for a system library, then you don't have to do anything special to use them; the requirement to distribute source code for the whole program does not include those libraries, even if you distribute a linked executable containing them.</p> <p>The criteria for what counts as a "system library" vary between different versions of the GPL. GPLv3 explicitly defines "System Libraries" in section 1, to exclude it from the definition of "Corresponding Source." GPLv2 says the following, near the end of section 3:</p> <p>However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. </p> <p>...</p> </blockquote> http://stackoverflow.com/questions/1853723/in-c-macros-should-one-prefer-do-while0-0-over-do-while0/1854830#1854830 6 Answer by Michael Burr for In C macros, should one prefer do { ... } while(0,0) over do { ... } while(0)? Michael Burr 2009-12-06T09:06:04Z 2009-12-06T09:27:23Z <p>Just a guess as to why they might suggest using </p> <pre><code>do { ... } while(0,0) </code></pre> <p>over</p> <pre><code>do { ... } while(0) </code></pre> <p>Even though there's no behavior difference and should be no runtime cost difference between the two.</p> <p>My guess is that the static analysis tool complains about the <code>while</code> loop being controlled by a constant in the simpler case and doesn't when <code>0,0</code> is used. The customer's suggestion is probably just so they don't get a bunch of false positives from the tool.</p> <p>For example I occasionally come across situations where I want to have a conditional statement controlled by a constant, but the compiler will complain with a warning about a conditional expression evaluating to a constant. Then I have to jump through some hoops to get the compiler to stop complaining (since I don't like to have spurious warnings).</p> <p>Your customer's suggestion is one of the hoops I've used to quiet that warning, though in my case it wasn't controlling a <code>while</code> loop, it was to deal with an "always fails" assertion. Occasionally, I'll have an area of code that should never execute (maybe the default case of a switch). In that situation I might have an assertion that always fails with some message:</p> <pre><code>assert( !"We should have never gotten here, dammit..."); </code></pre> <p>But, at least one compiler I use issues a warning about the expression always evaluating to false. However, if I change it to:</p> <pre><code>assert( ("We should have never gotten here, dammit...", 0)); </code></pre> <p>The warning goes away, and everybody's happy. I'm guessing that even your customer's static analysis tool would be, too. Note that I generally hide that bit of hoop jumping behind a macro like:</p> <pre><code>#define ASSERT_FAIL( x) assert( ((x), 0)) </code></pre> <p>It might be nice to be able to tell the tool vendor to fix the problem, but there might be legitimate cases where they actually do want to diagnose a loop being controlled by a constant boolean expression. Not to mention the fact that even if you convince a tool vendor to make such a change, that doesn't help you for the next year or so that it might take to actually get a fix.</p> http://stackoverflow.com/questions/1850678/why-are-file-handles-such-an-expensive-resource/1850734#1850734 1 Answer by Michael Burr for Why are file handles such an expensive resource? Michael Burr 2009-12-05T01:22:18Z 2009-12-05T01:22:18Z <p>I don't think they're necessarily expensive - if your application only holds a few unnessary ones open it won't kill the system. Just like if you leak only a few strings in C++ no one will notice, unless they're looking pretty carefully. Where it becomes a problem is:</p> <ul> <li>if you leak hundreds or thousands</li> <li>if having the file open prevents other operations from occurring on that file (other applications might not be able to open or delete the file)</li> <li>it's a sign of sloppiness - if your program can't keep track of what it owns and is using or has stopped using, what other problems will the program have? Sometimes a small leak turns into a big leak when something small changes or a user does something a little differently than before.</li> </ul> http://stackoverflow.com/questions/1845474/concatenate-null-terminated-strings-recursively/1845826#1845826 1 Answer by Michael Burr for Concatenate null-terminated strings recursively Michael Burr 2009-12-04T09:21:23Z 2009-12-04T19:08:36Z <p>You want recursion and brevity? Here's something that I think has both qualities without going too far into the code golf weeds (that's not to say it's not ugly - it is):</p> <pre><code>char* myStrcat( char* to, char const* from) { if (!*from) return to; if (!*to) *to++ = *from++, *to-- = '\0'; return myStrcat( to+1, from) - 1; } </code></pre> <p>Note that this version has the added complexity of returning the destination pointer (as in the standard <code>strcat()</code>).</p> <p>Here's a slightly more readable version that uses a little less 'pseudo-cleverness' like comma operators and decrementing after incrementing to restore the <code>to</code> pointer (steveha's comment prompted me to do this for some reason). On second look at the various answers here is pretty much equivalent to <a href="http://stackoverflow.com/questions/1845474/concatenate-null-terminated-strings-recursively/1845609#1845609">catwalk's answer</a>:</p> <pre><code>char* myStrcat( char* to, char const* from) { if (!*from) return to; // terminal condition, no more chars to concatenate if (!*to) { // since we're at the end of the 'to' string, // append char from 'from' // and 'consume' it from `from` *to = *from++; *(to+1) = '\0'; } return myStrcat( to+1, from) - 1; } </code></pre> <p>However, please don't associate my name with any of this code (I claim to have stolen it from someone else).</p> http://stackoverflow.com/questions/1848614/where-can-i-find-a-cheat-sheet-for-hungarian-notation/1848637#1848637 1 Answer by Michael Burr for Where can I find a cheat sheet for hungarian notation? Michael Burr 2009-12-04T18:01:17Z 2009-12-04T18:01:17Z <p>Here's one for 'Systems Hungarian', which in my experience was the more commonly used (and less useful):</p> <ul> <li><a href="http://web.mst.edu/~cpp/common/hungarian.html" rel="nofollow">http://web.mst.edu/~cpp/common/hungarian.html</a></li> </ul> <p>But how universally followed this is, I have no idea.</p> <p>The other form of Hungarian Notation is "Apps Hungarian", which apparently is Simonyi's original intent (the use of the variable was encoded rather than the type). See <a href="http://en.wikipedia.org/wiki/Hungarian%5Fnotation" rel="nofollow">http://en.wikipedia.org/wiki/Hungarian%5Fnotation</a> for some details.</p> http://stackoverflow.com/questions/1847860/why-is-there-a-performance-warning-on-cast-pointer-to-bool/1847949#1847949 8 Answer by Michael Burr for Why is there a performance warning on cast pointer to bool? Michael Burr 2009-12-04T16:06:55Z 2009-12-04T16:12:36Z <p>There's a discussion on Microsoft Connect about this (<a href="http://stackoverflow.com/questions/206564/what-is-the-performance-implication-of-converting-to-bool-in-c">http://stackoverflow.com/questions/206564/what-is-the-performance-implication-of-converting-to-bool-in-c</a>). The example given to Microsoft is:</p> <pre><code>$ cat -n t.cpp &amp;&amp; cl -c -W3 -O2 -nologo -Fa t.cpp 1 bool f1 (int i) 2 { 3 return i &amp; 2; 4 } 5 6 bool f2 (int i) 7 { 8 const bool b = i &amp; 2; 9 return b; 10 } 11 12 bool f3 (int i) 13 { 14 const bool b = 0 != (i &amp; 2); 15 return b; 16 } t.cpp t.cpp(3) : warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning) t.cpp(8) : warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning) </code></pre> <p>And Microsoft's response (from the developer responsible for the warning) is:</p> <blockquote> <p>This warning is surprisingly helpful, and found a bug in my code just yesterday. I think Martin is taking "performance warning" out of context.</p> <p>It's not about the generated code, it's about whether or not the programmer has signalled an intent to change a value from int to bool. There is a penalty for that, and the user has the choice to use "int" instead of "bool" consistently (or more likely vice versa) to avoid the "boolifying" codegen. The warning is suppressed in the third case below because he's clearly signalled his intent to accept the int->bool transition.</p> <p>It is an old warning, and may have outlived its purpose, but it's behaving as designed here</p> </blockquote> <p>So basically the MS developer seems to be saying that if you want to 'cast' an <code>int</code> to <code>bool</code> you should more properly do it by using "<code>return this-&gt;parentNode != 0</code>" instead of an implicit or explicit cast.</p> <p>Personally, I'd be interested to know more about what kind of bugs the warning uncovers. I'd think that this warning wouldn't have a whole lot of value.</p> http://stackoverflow.com/questions/1844005/c-checking-for-this-null/1844130#1844130 1 Answer by Michael Burr for c++ checking for this == null Michael Burr 2009-12-04T00:39:59Z 2009-12-04T08:04:35Z <p>FWIW, I have used debugging checks for <code>(this != NULL)</code> in assertions before which have helped catch defective code. Not that the code would have necessarily gotten too far with out a crash, but on small embedded systems that don't have memory protection, the assertions actually helped.</p> <p>On systems with memory protection, the OS will generally hit an access violation if called with a NULL <code>this</code> pointer, so there's less value in asserting <code>this != NULL</code>. However, see Pavel's comment for why it's not necessarily worthless on even protected systems.</p> http://stackoverflow.com/questions/1844162/assisting-in-avoiding-assert-always/1845481#1845481 1 Answer by Michael Burr for Assisting in avoiding assert... always! Michael Burr 2009-12-04T07:51:59Z 2009-12-04T08:01:12Z <p>It can be handy to improve upon the built-in assertion facility (to provide stack traces, core dumps, who knows). In that case, if you're having problems getting your developers to follow whatever standards you have (like "instead of <code>assert()</code> use <code>SUPER_ASSERT()</code>" or whatever), you can just put your own <code>assert.h</code> header in the include path ahead of the compiler's runtime directory of headers. </p> <p>That'll pretty much guarantee that anyone using the standard <code>assert()</code> macro will get a compiler error or get your assertion functionality (depending on what you have your <code>assert.h</code> header do).</p> http://stackoverflow.com/questions/1844336/compilers-for-dos32/1845397#1845397 4 Answer by Michael Burr for Compilers for DOS32? Michael Burr 2009-12-04T07:28:26Z 2009-12-04T07:28:26Z <p>Free (though not necessarily open source) Compilers that target MS-DOS (generally 32-bit but some may also still target 16-bit):</p> <ul> <li><a href="http://www.digitalmars.com/download/dmcpp.html" rel="nofollow">Digital Mars</a> 16 and 32 bit</li> <li><a href="http://www.delorie.com/djgpp/" rel="nofollow">DJ Delorie's DJGPP version of GCC for DOS32</a> 32 bit only</li> <li><a href="http://www.openwatcom.org/index.php/Download" rel="nofollow">Open Watcom</a> 16 and 32 bit</li> </ul> <p>If C alone (without C++ support) is interesting to you, there's also these (I honestly have no idea how well these things might work on modern systems compiling modern source code - actually it's been so long since I've done anything in or for DOS that I don't know how well the 3 compilers above work for MS-DOS either)</p> <ul> <li><a href="http://www.desmet-c.com/" rel="nofollow">DeSmet C</a> 16 bit only</li> <li><a href="http://cc.embarcadero.com/item/25636" rel="nofollow">Turbo C 2.01</a> 16 bit only</li> </ul> http://stackoverflow.com/questions/1841863/size-of-a-structure-in-c/1841871#1841871 22 Answer by Michael Burr for Size of a structure in C Michael Burr 2009-12-03T18:23:43Z 2009-12-04T06:53:28Z <p>The compiler may add padding for alignment requirements. Note that this applies not only to padding between the fields of a struct, but also may apply to the end of the struct (so that arrays of the structure type will have each element properly aligned).</p> <p>For example:</p> <pre><code>struct foo_t { int x; char c; }; </code></pre> <p>Even though the <code>c</code> field doesn't need padding, the struct will generally have a <code>sizeof(struct foo_t) == 8</code> (on a 32-bit system - rather a system with a 32-bit <code>int</code> type) because there will need to be 3 bytes of padding after the <code>c</code> field.</p> <p>Note that the padding might not be required by the system (like x86 or Cortex M3) but compilers might still add it for performance reasons.</p> http://stackoverflow.com/questions/1840029/passing-functor-as-function-pointer/1841008#1841008 2 Answer by Michael Burr for passing functor as function pointer Michael Burr 2009-12-03T16:16:58Z 2009-12-03T16:16:58Z <p>A C callback function written in C++ must be declared as an <code>extern "C"</code> function - so using a functor directly is out. You'll need to write some sort of wrapper function to use as that callback and have that wrapper call the functor. Of course, the callback protocol will need to have some way of passing context to the function so it can get to the functor, or the task becomes quite tricky. Most callback schemes have a way to pass context, but I've worked with some brain-dead ones that don't.</p> <p>See this answer for some more details (and look in the comments for anecdotal evidence that the callback must be <code>extern "C"</code> and not just a static member function):</p> <ul> <li><a href="http://stackoverflow.com/questions/1738313/c-using-class-method-as-a-function-pointer-type/1738425#1738425">http://stackoverflow.com/questions/1738313/c-using-class-method-as-a-function-pointer-type/1738425#1738425</a></li> </ul> http://stackoverflow.com/questions/1838544/how-to-stay-dry-do-not-repeat-yourself/1838567#1838567 0 Answer by Michael Burr for How to stay DRY? Do Not Repeat Yourself! Michael Burr 2009-12-03T08:47:01Z 2009-12-03T08:47:01Z <p>A database of notes (I use an application called Surfulater) and a directory tree of source code (also kept in a Subversion repository).</p> <p>If I were to start today, I'd probably use some Wiki framework to store my notes.</p> http://stackoverflow.com/questions/1838432/eclipse-can-you-put-your-cursor-on-all-lines/1838527#1838527 0 Answer by Michael Burr for Eclipse: Can you put your cursor on all lines? Michael Burr 2009-12-03T08:39:33Z 2009-12-03T08:44:56Z <p>Eclipse 3.5 should have a column mode (which is what I think you're asking about) - use <code>Alt+Shift+A</code>:</p> <ul> <li><a href="http://update.eclipse.org/downloads/drops/R-3.5-200906111540/eclipse-news-part1.html#Text" rel="nofollow">http://update.eclipse.org/downloads/drops/R-3.5-200906111540/eclipse-news-part1.html#Text</a></li> </ul> <p>I haven't tried this since I'm stuck at version 3.4.1 for the time being. There's a patch that claims to work for 3.4.0 (<a href="http://tkilla.ch/column%5Fmode/" rel="nofollow">http://tkilla.ch/column%5Fmode/</a>), but it's not working for my 3.4.1 install.</p> http://stackoverflow.com/questions/1838388/how-to-format-printf-statement-better-so-things-always-line-up/1838430#1838430 5 Answer by Michael Burr for How to format printf statement better so things always line up Michael Burr 2009-12-03T08:19:07Z 2009-12-03T08:19:07Z <p>Each conversion specifier can be given a field width which give the minimum number of characters that conversion will use. There are other flags and precision that can be used to control the output (for example with the <code>%s</code> conversion the precision item says how many characters maximum will be used).</p> <pre><code>printf("name: %20.20s\t" "args: %10.10s\t" "value %6d\t" "arraysize %6d\t" "scope %6d\n", sp-&gt;name, sp-&gt;args, sp-&gt;value, sp-&gt;arraysize, sp-&gt;scope); </code></pre> http://stackoverflow.com/questions/1895922/sequence-points-and-partial-order/1896112#1896112 Comment by Michael Burr on Sequence points and partial order Michael Burr 2009-12-14T08:39:04Z 2009-12-14T08:39:04Z @Charles - regarding &quot;<code>i</code> must be evaluated as a modifiable lvalue&quot;: the standard says, &quot;Except when it is ... the left operand of the . operator or an assignment operator, an lvalue that does not have array type is converted to the value stored in the designated object (and is no longer an lvalue).&quot; This implies that the left operand of the assignment operator isn't converted to the value stored, so the value isn't 'read'. The operand remains an lvalue, which is an object type (it designates the object). http://stackoverflow.com/questions/1895922/sequence-points-and-partial-order/1895947#1895947 Comment by Michael Burr on Sequence points and partial order Michael Burr 2009-12-14T08:30:05Z 2009-12-14T08:30:05Z @mlvljr - thanks for the pointer to N926; I'll have to give it a few days to be able to read more carefully. http://stackoverflow.com/questions/1898657/sizeof-array-of-structs-in-c Comment by Michael Burr on sizeof array of structs in C? Michael Burr 2009-12-14T08:23:02Z 2009-12-14T08:23:02Z See <a href="http://stackoverflow.com/questions/1598773/is-there-a-standard-function-in-c-that-would-return-the-length-of-an-array/1598827#1598827" rel="nofollow" title="is there a standard function in c that would return the length of an array">stackoverflow.com/questions/1598773/&hellip;</a> for an answer that includes some hacks to make the techniques posted below safer. http://stackoverflow.com/questions/620892/how-to-put-assert-into-release-builds-in-c-c/620902#620902 Comment by Michael Burr on How to put assert into release builds in C/C++ Michael Burr 2009-12-13T23:15:33Z 2009-12-13T23:15:33Z Then it seems that something must be redefining NDEBUG and including <code>assert.h</code> again (possibly some other header that's being included). http://stackoverflow.com/questions/1895922/sequence-points-and-partial-order Comment by Michael Burr on Sequence points and partial order Michael Burr 2009-12-13T10:22:31Z 2009-12-13T10:22:31Z I'd agree - this question hopefully has little real utility. But sometimes one is just curious about these details, and there's not necessarily any harm in that (unless someone goes off and starts writing code like the examples). http://stackoverflow.com/questions/1895378/how-to-make-the-bytes-of-the-block-be-initialized-so-that-they-contain-all-0s/1895387#1895387 Comment by Michael Burr on How to make the bytes of the block be initialized so that they contain all 0s Michael Burr 2009-12-13T09:41:10Z 2009-12-13T09:41:10Z I think in your pseudocode you should consider using <code>0</code> and <code>(n-1)</code> as the limits of the for loop range - I know you're trying to make the answer a bit 'indirect' due to it being a homework problem, but seasoned programmers get indexes off by one enough times that I think using a 1-based index in the pseudocode is plain misleading (and maybe even unfair) to a beginner. http://stackoverflow.com/questions/1895409/game-programming-in-c-pdf-books/1895416#1895416 Comment by Michael Burr on Game programming in C++ pdf books Michael Burr 2009-12-13T07:46:43Z 2009-12-13T07:46:43Z @Ash: I have no problem with dupes being closed. I also have no problem if someone doesn't notice that a question is a dupe. http://stackoverflow.com/questions/1895409/game-programming-in-c-pdf-books/1895416#1895416 Comment by Michael Burr on Game programming in C++ pdf books Michael Burr 2009-12-13T04:00:43Z 2009-12-13T04:00:43Z @Ash - rightly or wrongly not everyone is as concerned about duplicates as others might be. As with so many things, there are different opinions regarding the level of importance of identifying dupes so there are different levels of diligence in dealing with them. http://stackoverflow.com/questions/1894446/taking-advantage-of-sse-and-other-cpu-extensions/1894855#1894855 Comment by Michael Burr on Taking advantage of SSE and other CPU extensions. Michael Burr 2009-12-13T03:01:00Z 2009-12-13T03:01:00Z You might be able to get away with a simple <code>if</code> branch, but I'd think you'll probably have to do something like compile to separate modules to make the compiler happy. But my thinking with function pointers is that you'd set them up to an appropriate routine at initialization and just call through them like regular functions - there would be no <code>if</code> conditionals at that point. http://stackoverflow.com/questions/1892588/linking-error-when-compiling-c-and-c-code-with-g/1892734#1892734 Comment by Michael Burr on Linking error when compiling C and C++ code with g++ Michael Burr 2009-12-12T20:42:23Z 2009-12-12T20:42:23Z it looks like you're running into a problem that's not directly related to whether or not the C functions are properly declared with <code>extern &quot;C&quot;</code>, since the linker isn't finding the C++ wrapper functions. Fix that problem first, then you can address the <code>extern &quot;C&quot;</code> issue (if necessary). http://stackoverflow.com/questions/1892588/linking-error-when-compiling-c-and-c-code-with-g Comment by Michael Burr on Linking error when compiling C and C++ code with g++ Michael Burr 2009-12-12T15:42:20Z 2009-12-12T15:42:20Z Jalf is right - I'm suspecting that you've declared the C function prototypes inside the class that you want to have wrap them, which would be wrong. But I can only guess because we can't see the code. http://stackoverflow.com/questions/1892588/linking-error-when-compiling-c-and-c-code-with-g Comment by Michael Burr on Linking error when compiling C and C++ code with g++ Michael Burr 2009-12-12T07:43:22Z 2009-12-12T07:43:22Z Can you show the declaration of <code>class BWAGenome</code> and at least some snippets from around the calls to the 2 problem functions? http://stackoverflow.com/questions/1892662/concat-string-in-isnullorempty-parameter/1892678#1892678 Comment by Michael Burr on Concat string in IsNullOrEmpty parameter Michael Burr 2009-12-12T07:37:18Z 2009-12-12T07:37:18Z I was also surprised that concatenating null string references didn't throw. http://stackoverflow.com/questions/1890555/how-can-i-obfuscate-a-test-in-code-to-prevent-tampering-with-response-processing/1890702#1890702 Comment by Michael Burr on How can I obfuscate a test in code to prevent tampering with response processing? Michael Burr 2009-12-12T07:27:37Z 2009-12-12T07:27:37Z I like the idea of using state machine techniques. http://stackoverflow.com/questions/1890133/effective-way-to-use-non-boolean-values-to-test-boolean-logic Comment by Michael Burr on Effective way to use non-boolean values to test boolean logic Michael Burr 2009-12-11T19:46:48Z 2009-12-11T19:46:48Z I think the OP is looking for a way to obfuscate (in the object code) a test - something like what might be done to check that a license key is valid. If so, this is an interesting question that should be reopened (after the question is is edited to be more clear and direct).