User MarkW - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:02:56Z http://stackoverflow.com/feeds/user/23478 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1161199/is-relational-comparison-between-int-and-float-directly-possible-in-c/1161349#1161349 2 Answer by MarkW for Is relational comparison between int and float directly possible in C? MarkW 2009-07-21T19:44:52Z 2009-07-21T19:44:52Z <p>I am going to buck the trend here a bit. As to the first question about whether the comparison is valid, the answer is yes. It is perfectly valid. If you want to know if a floating point value is exactly equal to 3, then the comparison to an integer is fine. The integer is implicitly converted to a floating point value for the comparison. In fact, the following code (at least with the compiler I used) produced identical assembly instructions.</p> <pre><code>if ( 3 == f ) printf( "equal\n" ); </code></pre> <p>and</p> <pre><code>if ( 3.0 == f ) printf( "equal\n" ); </code></pre> <p>So it depends on the logic and what the intended goal is. There is nothing inherently wrong with the syntax.</p> http://stackoverflow.com/questions/1156544/whats-the-best-method-for-getting-the-local-computer-name-in-delphi/1156577#1156577 9 Answer by MarkW for What's the best method for getting the local computer name in Delphi MarkW 2009-07-20T23:47:59Z 2009-07-20T23:47:59Z <p>The Windows API <a href="http://msdn.microsoft.com/en-us/library/ms724295" rel="nofollow">GetComputerName</a> should work. It is defined in windows.pas.</p> http://stackoverflow.com/questions/1126529/what-is-the-cost-of-an-l1-cache-miss 6 What is the Cost of an L1 Cache Miss? MarkW 2009-07-14T16:25:05Z 2009-07-15T14:06:08Z <p>I did some testing <code>&lt;long story goes here&gt;</code> and am wondering if a performance difference is due to memory cache misses. The following code demonstrates the issue and boils it down to the critical timing portion. The following code has a couple of loops that visit memory in random order and then in ascending address order. </p> <p>I ran it on an XP machine (compiled with VS2005: cl /O2) and on a Linux box (gcc –Os). Both produced similar times. These times are in milliseconds. I believe all loops are running and are not optimized out (otherwise it would run “instantly”). </p> <pre> *** Testing 20000 nodes Total Ordered Time: 888.822899 Total Random Time: 2155.846268 </pre> <p>Do these numbers make sense? Is the difference primarily due to L1 cache misses or is something else going on as well? There are 20,000^2 memory accesses and if every one were a cache miss, that is about 3.2 nanoseconds per miss. The XP (P4) machine I tested on is 3.2GHz and I suspect (but don’t know) has a 32KB L1 cache and 512KB L2. With 20,000 entries (80KB), I assume there is not a significant number of L2 misses. So this would be <code>(3.2*10^9 cycles/second) * 3.2*10^-9 seconds/miss) = 10.1 cycles/miss</code>. That seems high to me. Maybe it’s not, or maybe my math is bad. I tried measuring cache misses with VTune, but I got a BSOD. And now I can’t get it to connect to the license server (grrrr). </p> <pre><code>typedef struct stItem { long lData; //char acPad[20]; } LIST_NODE; #if defined( WIN32 ) void StartTimer( LONGLONG *pt1 ) { QueryPerformanceCounter( (LARGE_INTEGER*)pt1 ); } void StopTimer( LONGLONG t1, double *pdMS ) { LONGLONG t2, llFreq; QueryPerformanceCounter( (LARGE_INTEGER*)&amp;t2 ); QueryPerformanceFrequency( (LARGE_INTEGER*)&amp;llFreq ); *pdMS = ((double)( t2 - t1 ) / (double)llFreq) * 1000.0; } #else // doesn't need 64-bit integer in this case void StartTimer( LONGLONG *pt1 ) { // Just use clock(), this test doesn't need higher resolution *pt1 = clock(); } void StopTimer( LONGLONG t1, double *pdMS ) { LONGLONG t2 = clock(); *pdMS = (double)( t2 - t1 ) / ( CLOCKS_PER_SEC / 1000 ); } #endif long longrand() { #if defined( WIN32 ) // Stupid cheesy way to make sure it is not just a 16-bit rand value return ( rand() &lt;&lt; 16 ) | rand(); #else return rand(); #endif } // get random value in the given range int randint( int m, int n ) { int ret = longrand() % ( n - m + 1 ); return ret + m; } // I think I got this out of Programming Pearls (Bentley). void ShuffleArray ( long *plShuffle, // (O) return array of "randomly" ordered integers long lNumItems // (I) length of array ) { long i; long j; long t; for ( i = 0; i &lt; lNumItems; i++ ) plShuffle[i] = i; for ( i = 0; i &lt; lNumItems; i++ ) { j = randint( i, lNumItems - 1 ); t = plShuffle[i]; plShuffle[i] = plShuffle[j]; plShuffle[j] = t; } } int main( int argc, char* argv[] ) { long *plDataValues; LIST_NODE *pstNodes; long lNumItems = 20000; long i, j; LONGLONG t1; // for timing double dms; if ( argc &gt; 1 &amp;&amp; atoi(argv[1]) &gt; 0 ) lNumItems = atoi( argv[1] ); printf( "\n\n*** Testing %u nodes\n", lNumItems ); srand( (unsigned int)time( 0 )); // allocate the nodes as one single chunk of memory pstNodes = (LIST_NODE*)malloc( lNumItems * sizeof( LIST_NODE )); assert( pstNodes != NULL ); // Create an array that gives the access order for the nodes plDataValues = (long*)malloc( lNumItems * sizeof( long )); assert( plDataValues != NULL ); // Access the data in order for ( i = 0; i &lt; lNumItems; i++ ) plDataValues[i] = i; StartTimer( &amp;t1 ); // Loop through and access the memory a bunch of times for ( j = 0; j &lt; lNumItems; j++ ) { for ( i = 0; i &lt; lNumItems; i++ ) { pstNodes[plDataValues[i]].lData = i * j; } } StopTimer( t1, &amp;dms ); printf( "Total Ordered Time: %f\n", dms ); // now access the array positions in a "random" order ShuffleArray( plDataValues, lNumItems ); StartTimer( &amp;t1 ); for ( j = 0; j &lt; lNumItems; j++ ) { for ( i = 0; i &lt; lNumItems; i++ ) { pstNodes[plDataValues[i]].lData = i * j; } } StopTimer( t1, &amp;dms ); printf( "Total Random Time: %f\n", dms ); } </code></pre> http://stackoverflow.com/questions/1099672/when-is-it-appropriate-to-use-udp-instead-of-tcp/1100800#1100800 1 Answer by MarkW for When is it appropriate to use UDP instead of TCP? MarkW 2009-07-08T22:06:24Z 2009-07-08T22:06:24Z <p>I work on a product that supports both UDP (IP) and TCP/IP communication between client and server. It started out with IPX over 15 years ago with IP support added 13 years ago. We added TCP/IP support 3 or 4 years ago. Wild guess coming up: The UDP to TCP code ratio is probably about 80/20. The product is a database server, so reliability is critical. We have to handle all of the issues imposed by UDP (packet loss, packet doubling, packet order, etc.) already mentioned in other answers. There are rarely any problems, but they do sometimes occur and so must be handled. The benefit to supporting UDP is that we are able to customize it a bit to our own usage and tweak a bit more performance out of it.</p> <p>Every network is going to be different, but the UDP communication protocol is generally a little bit faster for us. The skeptical reader will rightly question whether we implemented everything correctly. Plus, what can you expect from a guy with a 2 digit rep? Nonetheless, I just now ran a test out of curiosity. The test read 1 million records (select * from sometable). I set the number of records to return with each individual client request to be 1, 10, and then 100 (three test runs with each protocol). The server was only two hops away over a 100Mbit LAN. The numbers seemed to agree with what others have found in the past (UDP is about 5% faster in most situations). The total times in milliseconds were as follows for this particular test:</p> <ol> <li>1 record <ul> <li>IP: 390,760 ms</li> <li>TCP: 416,903 ms</li> </ul></li> <li>10 records <ul> <li>IP: 91,707 ms</li> <li>TCP: 95,662 ms</li> </ul></li> <li>100 records <ul> <li>IP: 29,664 ms</li> <li>TCP: 30,968 ms</li> </ul></li> </ol> <p>The total data amount transmitted was about the same for both IP and TCP. We have extra overhead with the UDP communications because we have some of the same stuff that you get for "free" with TCP/IP (checksums, sequence numbers, etc.). For example, Wireshark showed that a request for the next set of records was 80 bytes with UDP and 84 bytes with TCP.</p> http://stackoverflow.com/questions/1071599/possible-to-force-delphi-threadvar-memory-to-be-freed 6 Possible to force Delphi threadvar Memory to be Freed? MarkW 2009-07-01T22:06:20Z 2009-07-03T12:54:35Z <p>I have been chasing down what appears to be a memory leak in a DLL built in Delphi 2007 for Win32. The memory for the threadvar variables is not freed if the threads still exist when the DLL is unloaded (there are no active calls into the DLL when it is unloaded). </p> <p><strong>The question</strong>: Is there some way to cause Delphi to free memory associated with threadvar variables? It is not as simple as just not using them. A number of the existing Delphi components use them, so even if the DLL does not explicitly declare them, it ends up using them.</p> <p><strong>A Few Details</strong> I have tracked it down to a LocalAlloc call that occurs in response to the usage of a threadvar variable, which is Delphi's "wrapper" around thread-local storage in Win32. For the curious, the allocation call is in the Delphi source file sysinit.pas. The corresponding LocalFree call occurs only for threads that get <code>DLL_THREAD_DETACH</code> calls. If you have multiple threads in an application and unload a DLL, there is no <code>DLL_THREAD_DETACH</code> call for each thread. The DLL gets a <code>DLL_PROCESS_DETACH</code> and nothing else; I believe that is expected and valid. Thus, any thread-local storage allocations made on other threads are leaked.</p> <p>I re-created it with a short C program that starts several "worker" threads. It loads the DLL (via LoadLibrary) on the main thread and then makes calls into an exported function on the worker threads. The function exported from the Delphi DLL assigns a value to a threadvar integer variable and returns. The C program then unloads the DLL (via FreeLibrary on the main thread) and repeats. After about 32,000 iterations, the process memory usage shown in Process Explorer grows to over 130MB. I also verified it more accurately with umdh. UMDH showed 24 bytes lost per instance. But the 130MB in Process Explorer seems to indicate about 4K per iteration; I'm guessing a 4K segment was leaked each time based on that, but I don't know for sure.</p> <p>For clarification, here is the threadvar declaration and the entire exported function:</p> <pre><code>threadvar threadint : integer; function Startup( ulID: LongWord; hValue: Longint ): LongWord; stdcall; begin threadint := 123; Result := 0; end; </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1071599/possible-to-force-delphi-threadvar-memory-to-be-freed/1079236#1079236 0 Answer by MarkW for Possible to force Delphi threadvar Memory to be Freed? MarkW 2009-07-03T12:54:35Z 2009-07-03T12:54:35Z <p>At the risk of way too much code, here is a possible (poor) solution to my own question. Using the fact that the thread-local storage memory is stored in a single block for the threadvar variables (as pointed out by Mr. Kennedy - thanks), this code stores the allocated pointers in a TList and then frees them at process detach. I wrote it mostly just to see if it would work. I probably would not use this in production code because it makes assumptions about the Delphi runtime that could change with different versions and quite possibly misses problems even with the version I am using (Delphi 7 and 2007).</p> <p>This implementation does make umdh happy, it doesn't think there are any more memory leaks. However, if I run the test in a loop (load, call entrypoint on another thread, unload), the memory usage as seen in Process Explorer still grows alarmingly fast. In fact, I created a completely empty DLL with only an empty DllMain (that was not called since I did not assign Delphi's global DllMain pointer to it ... Delhi itself provides the real DllMain entrypoint). A simple loop of loading/unloading the DLL still leaked 4K per iteration. So there may still be something else a Delphi DLL is supposed to include (the main point of the original question). But I don't know what it is. A DLL written in C does not behave this way.</p> <p>Our code (a server) can call DLLs written by customers to extend functionality. We typically unload the DLL after there are no more references to it. I think my solution to the problem is going to be to add an option to leave the DLL loaded "permanently" in memory. If customers use Delphi to write their DLL, they will need to turn that option on (or maybe we can detect that it is a Delphi DLL on load ... need to check that out). Nonetheless, it has been an interesting exercise.</p> <pre><code>library Sample; uses SysUtils, Windows, Classes, HTTPApp, SyncObjs; {$E dll} var gListSync : TCriticalSection; gTLSList : TList; threadvar threadint : integer; // remove all entries from the TLS storage list procedure RemoveAndFreeTLS(); var i : integer; begin // Only call this at process detach. Those calls are serialized // so don't get the critical section. if assigned( gTLSList ) then for i := 0 to gTLSList.Count - 1 do // Is this actually safe in DllMain process detach? From reading the MSDN // docs, it appears that the only safe statement in DllMain is "return;" LocalFree( Cardinal( gTLSList.Items[i] )); end; // Remove this thread's entry procedure RemoveThreadTLSEntry(); var p : pointer; begin // Find the entry for this thread and remove it. gListSync.enter; try if ( SysInit.TlsIndex &lt;&gt; -1 ) and ( assigned( gTLSList )) then begin p := TlsGetValue( SysInit.TlsIndex ); // if this thread didn't actually make a call into the DLL and use a threadvar // then there would be no memory for it if p &lt;&gt; nil then gTLSList.Remove( p ); end; finally gListSync.leave; end; end; // Add current thread's TLS pointer to the global storage list if it is not already // stored in it. procedure AddThreadTLSEntry(); var p : pointer; begin gListSync.enter; try // Need to create the list if first call if not assigned( gTLSList ) then gTLSList := TList.Create; if SysInit.TlsIndex &lt;&gt; -1 then begin p := TlsGetValue( SysInit.TlsIndex ); if p &lt;&gt; nil then begin // if it is not stored, add it if gTLSList.IndexOf( p ) = -1 then gTLSList.Add( p ); end; end; finally gListSync.leave; end; end; // Some entrypoint that uses threadvar (directly or indirectly) function MyExportedFunc(): LongWord; stdcall; begin threadint := 123; // Make sure this thread's TLS pointer is stored in our global list so // we can free it at process detach. Do this AFTER using the threadvar. // Delphi seems to allocate the memory on demand. AddThreadTLSEntry; Result := 0; end; procedure DllMain(reason: integer) ; begin case reason of DLL_PROCESS_DETACH: begin // NOTE - if this is being called due to process termination, then it should // just return and do nothing. Very dangerous (and against MSDN recommendations) // otherwise. However, Delphi does not provide that information (the 3rd param of // the real DlLMain entrypoint). In my test, though, I know this is only called // as a result of the DLL being unloaded via FreeLibrary RemoveAndFreeTLS(); gListSync.Free; if assigned( gTLSList ) then gTLSList.Free; end; DLL_THREAD_DETACH: begin // on a thread detach, Delphi will clean up its own TLS, so we just // need to remove it from the list (otherwise we would get a double free // on process detach) RemoveThreadTLSEntry(); end; end; end; exports DllMain, MyExportedFunc; // Initialization begin IsMultiThread := TRUE; // Make sure Delphi calls my DllMain DllProc := @DllMain; // sync object for managing TLS pointers. Is it safe to create a critical section? // This init code is effectively DllMain's DLL_PROCESS_ATTACH gListSync := TCriticalSection.Create; end. </code></pre> http://stackoverflow.com/questions/1071456/sequence-combinations/1071693#1071693 0 Answer by MarkW for Sequence combinations MarkW 2009-07-01T22:36:29Z 2009-07-01T22:36:29Z <p>Is the question really for the number of permutations? This sounds suspiciously like the number of combinations possible when throwing dice. So maybe the question is for the number of combinations with repetition. Which ... I think is (6+4-1)! / ((4!)(6-1)!) = 126. Or I might be wrong, that class was many years in the past.</p> <p><a href="http://www.mathsisfun.com/combinatorics/combinations-permutations.html" rel="nofollow">http://www.mathsisfun.com/combinatorics/combinations-permutations.html</a></p> http://stackoverflow.com/questions/619467/macro-to-replace-c-operator-new/1365402#1365402 Comment by MarkW on Macro to replace C++ operator new MarkW 2009-10-22T14:55:51Z 2009-10-22T14:55:51Z I like this solution for debug builds. It isn't thread safe, but a bit of thread local storage fixes that. I think that would make it a bit costly for a release build ... but there are never any leaks in release builds anyway &lt;grin&gt; http://stackoverflow.com/questions/1126529/what-is-the-cost-of-an-l1-cache-miss/1130036#1130036 Comment by MarkW on What is the Cost of an L1 Cache Miss? MarkW 2009-07-15T17:41:07Z 2009-07-15T17:41:07Z Thanks for that link. It looks like a useful document. If I understand it correctly, it points out that read miss (in the level 1 cache) would maybe incur 10 extra cycles and a write miss about 18 cycles with current architectures. So the ballpark numbers that are coming up in this whole thread seem to fit pretty well. http://stackoverflow.com/questions/1126529/what-is-the-cost-of-an-l1-cache-miss/1130117#1130117 Comment by MarkW on What is the Cost of an L1 Cache Miss? MarkW 2009-07-15T15:34:24Z 2009-07-15T15:34:24Z Very nice. Thanks for the pointer to it. I've been aware of Valgrind but haven't used it before (most of my development is on Win32). I just now ran it on a Linux box and it reported a 41% miss rate for the &quot;random&quot; portion of the test. And the &quot;in order&quot; portion of the test had a negligible miss rate. Neither portion had any L2 miss rate to speak of. http://stackoverflow.com/questions/1126529/what-is-the-cost-of-an-l1-cache-miss/1126556#1126556 Comment by MarkW on What is the Cost of an L1 Cache Miss? MarkW 2009-07-14T17:33:17Z 2009-07-14T17:33:17Z I agree - good point. If the cache is 32K and it is largely dedicated to holding the array, then maybe 40% of the references would be hits. So a 60% miss rate would take the cost up to about 17 cycles per miss (again assuming my math is correct). http://stackoverflow.com/questions/1126529/what-is-the-cost-of-an-l1-cache-miss Comment by MarkW on What is the Cost of an L1 Cache Miss? MarkW 2009-07-14T17:06:16Z 2009-07-14T17:06:16Z Sorry - I kind of buried the question in too much text. But yes, the question is if the numbers make sense. Are 10 cycles for an L1 cache miss about right? http://stackoverflow.com/questions/1071599/possible-to-force-delphi-threadvar-memory-to-be-freed/1072201#1072201 Comment by MarkW on Possible to force Delphi threadvar Memory to be Freed? MarkW 2009-07-02T12:48:42Z 2009-07-02T12:48:42Z The test case is using a 4 byte integer (which does not need to be freed); it is not using any kind of dynamic variable. The memory that is being leaked is the memory that Delphi allocates under the covers for storing threadvar variables. http://stackoverflow.com/questions/1071599/possible-to-force-delphi-threadvar-memory-to-be-freed/1071723#1071723 Comment by MarkW on Possible to force Delphi threadvar Memory to be Freed? MarkW 2009-07-01T23:37:56Z 2009-07-01T23:37:56Z Ah yes - I had not realized it was just one TLS slot per thread. Thanks for pointing that out. I believe, though, this solution would require making that call on each thread. And as you correctly stated, it is not possible/desirable to interrupt the other threads from whatever they are doing to make a call to TlsGetValue to get the pointer and free it. Incidentally, I believe the TlsFree call does occur on the <code>DLL&#95;PROCESS&#95;DETACH</code> call. But knowing that it is a single TLS slot per thread is useful. I will ponder that. Mark