Faster CompareText implementation for D2009 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:14:00Z http://stackoverflow.com/feeds/question/610739 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/610739/faster-comparetext-implementation-for-d2009 2 Faster CompareText implementation for D2009 Smasher 2009-03-04T14:13:24Z 2009-03-04T18:22:29Z <p>Hello,</p> <p>I'm extensively using hash map data structures in my program. I'm using a hash map implementation by Barry Kelly posted on the Codegear forums. That implementation internally uses RTL's CompareText function. Profiling made me realize that A LOT of time is spent in SysUtils CompareText function.</p> <p>I had a look at the</p> <p><a href="http://fastcode.sourceforge.net/" rel="nofollow">Fastcode site</a></p> <p>and found some faster implementations of CompareText. Unfortunately they seem not to work for D2009 and its unicode strings.</p> <p>Now for the question: Is there a similar faster version that supports D2009 strings? The CompareText functions seems to be called a lot when using hash maps (at least in the implemenation I'm currently using), so little performance improvements could really make a difference. Or should the implementations presented there also work for unicode strings?</p> http://stackoverflow.com/questions/610739/faster-comparetext-implementation-for-d2009/611580#611580 4 Answer by Rob Kennedy for Faster CompareText implementation for D2009 Rob Kennedy 2009-03-04T17:16:59Z 2009-03-04T18:22:29Z <p>Many of the FastCode functions will probably compile and appear to work just fine in Delphi 2009, but they won't be right for all input. The ones that are implemented in assembler will fail because they assume characters are just one byte each. The ones implemented in Delphi will fare a little better, but they'll still return incorrect results sometimes because the old <code>CompareText</code>'s notion of "case-insensitive" is based on ASCII whereas the new one should be based on Unicode. The rules for which characters are considered the same save for case are <em>much</em> different for Unicode from how they are for ASCII.</p> <p>Andreas says in a comment below that Unicode <code>CompareText</code> still uses the ASCII case-comparison rules, so a number of the FastCode functions should work fine. Just look them over before using them to make sure they're not making any character-size assumptions. I seem to recall that <em>some</em> FastCode functions were incorporated into the Delphi RTL already. I have no idea whether <code>CompareText</code> was one of them.</p> <p>If you're calling <code>CompareText</code> a lot in a hash table, then that suggests your hash table isn't doing a very good job. <code>CompareText</code> should only get called when the hash of the thing you're searching for designated a non-empty bucket in the hash table. From there, a hash table will often use a linear search to find the right item in the bucket, and it will call <code>CompareText</code> for every item during that search. I don't know whether that's how the one you're using works.</p> <p>You might solve this by using a different hash function that distributes its results more evenly over the available buckets. If your buckets are already evenly filled, then you may need more buckets (and then make sure the hash function still distributes evenly over <em>that</em> number as well).</p> <p>If the hash-map class you're using is based on <code>TBucketList</code>, then there is room for improvement in the bucket storage. That class doesn't calculate a hash on the entire input. It uses the input <em>only</em> to determine the bucket to use. If the class would also keep track of the full hash computed for a string, then comparisons during the linear search could go much faster. Just compare the hashes, and only compare the strings when the hashes match completely. (For a 256-bucket bucket-list, the largest supported size, only one byte of the input determines the bucket, and the rest of the bytes are ignored.) <a href="http://stackoverflow.com/questions/547879/how-to-judge-number-of-buckets-for-tbucketlist/548298#548298">I've written about <code>TBucketList</code> here before.</a></p>