Why is CharInSet faster than Case statement? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T10:30:34Zhttp://stackoverflow.com/feeds/question/332948http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement11Why is CharInSet faster than Case statement?lkessler2008-12-02T03:26:32Z2009-01-05T11:50:45Z
<p>I'm perplexed. At CodeRage today, Marco Cantu said that CharInSet was slow and I should try a Case statement instead. I did so in my parser and then checked with AQTime what the speedup was. I found the Case statement to be much slower.</p>
<p>4,894,539 executions of:</p>
<blockquote>
<p>while not CharInSet (P^, [' ', #10,#13, #0]) do inc(P);</p>
</blockquote>
<p>was timed at 0.25 seconds.</p>
<p>But the same number of executions of:</p>
<blockquote>
<p>while True do<br>
case P^ of<br>
' ', #10, #13, #0: break;<br>
else inc(P);<br>
end;</p>
</blockquote>
<p>takes .16 seconds for the "while True", .80 seconds for the first case, and .13 seconds for the else case, totaling 1.09 seconds, or over 4 times as long.</p>
<p>The assembler code for the CharInSet statement is:</p>
<blockquote>
<p>add edi,$02<br>
mov edx,$0064b290<br>
movzx eax,[edi]<br>
call CharInSet<br>
test a1,a1<br>
jz $00649f18 (back to the add statement)</p>
</blockquote>
<p>whereas the case logic is simply this:</p>
<blockquote>
<p>movzx eax,[edi]<br>
sub ax,$01<br>
jb $00649ef0<br>
sub ax,$09<br>
jz $00649ef0<br>
sub ax,$03<br>
jz $00649ef0<br>
add edi,$02<br>
jmp $00649ed6 (back to the movzx statement)</p>
</blockquote>
<p>The case logic looks to me to be using very efficient assembler, whereas the CharInSet statement actually has to make a call to the CharInSet function, which is in SysUtils and is also simple, being:</p>
<blockquote>
<p>function CharInSet(C: AnsiChar; const CharSet: TSysCharSet): Boolean;<br>
begin<br>
Result := C in CharSet;<br>
end;</p>
</blockquote>
<p>I think the only reason why this is done is because P^ in [' ', #10, #13, #0] is no longer allowed in Delphi 2009 so the call does the conversion of types to allow it.</p>
<p>None-the-less I am very surprised by this and still don't trust my result.</p>
<p>Is AQTime measuring something wrong, am I missing something in this comparison, or is CharInSet truly an efficient function worth using?</p>
<p><hr /></p>
<p>Conclusion: </p>
<p>I think you got it, Barry. Thank you for taking the time and doing the detailed example. I tested your code on my machine and got .171, .066 and .052 seconds (I guess my desktop is a bit faster than your laptop).</p>
<p>Testing that code in AQTime, it gives: 0.79, 1.57 and 1.46 seconds for the three tests. There you can see the large overhead from the instrumentation. But what really surprises me is that this overhead changes the apparent "best" result to be the CharInSet function which is actually the worst.</p>
<p>So Marcu is correct and CharInSet is slower. But you've inadvertently (or maybe on purpose) given me a better way by pulling out what CharInSet is doing with the AnsiChar(P^) in Set method. Other than the minor speed advantage over the case method, it is also less code and more understandable than using the cases.</p>
<p>You've also made me aware of the possibility of incorrect optimization using AQTime (and other instrumenting profilers). Knowing this will help my decision re <a href="http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi">Profiler and Memory Analysis Tools for Delphi</a> and it also is another answer to my question <a href="http://stackoverflow.com/questions/322315/how-does-aqtime-do-it">How Does AQTime Do It?</a>. Of course, AQTime doesn't change the code when it instruments, so it must use some other magic to do it.</p>
<p>So the answer is that AQTime is showing results that lead to the incorrect conclusion.</p>
http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement/332975#33297515Answer by Barry Kelly for Why is CharInSet faster than Case statement?Barry Kelly2008-12-02T03:42:35Z2008-12-02T03:50:36Z<p>AQTime is an instrumenting profiler. Instrumenting profilers often aren't suitable for measuring code time, particularly in microbenchmarks like yours, because the cost of the instrumentation often outweighs the cost of the thing being measured. Instrumenting profilers, on the other hand, excel at profiling memory and other resource usage.</p>
<p>Sampling profilers, which periodically check the location of the CPU, are usually better for measuring code time.</p>
<p>In any case, here's another microbenchmark which indeed shows that a <code>case</code> statement is faster than <code>CharInSet</code>. However, note that the set check can still be used with a typecast to eliminate the truncation warning (actually this is the only reason that CharInSet exists):</p>
<pre><code>{$apptype console}
uses Windows, SysUtils;
const
SampleString = 'foo bar baz blah de;blah de blah.';
procedure P1;
var
cp: PChar;
begin
cp := PChar(SampleString);
while not CharInSet(cp^, [#0, ';', '.']) do
Inc(cp);
end;
procedure P2;
var
cp: PChar;
begin
cp := PChar(SampleString);
while True do
case cp^ of
'.', #0, ';':
Break;
else
Inc(cp);
end;
end;
procedure P3;
var
cp: PChar;
begin
cp := PChar(SampleString);
while not (AnsiChar(cp^) in [#0, ';', '.']) do
Inc(cp);
end;
procedure Time(const Title: string; Proc: TProc);
var
i: Integer;
start, finish, freq: Int64;
begin
QueryPerformanceCounter(start);
for i := 1 to 1000000 do
Proc;
QueryPerformanceCounter(finish);
QueryPerformanceFrequency(freq);
Writeln(Format('%20s: %.3f seconds', [Title, (finish - start) / freq]));
end;
begin
Time('CharInSet', P1);
Time('case stmt', P2);
Time('set test', P3);
end.
</code></pre>
<p>Its output on my laptop here is:</p>
<pre><code>CharInSet: 0.261 seconds
case stmt: 0.077 seconds
set test: 0.060 seconds
</code></pre>
http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement/332982#3329821Answer by Din for Why is CharInSet faster than Case statement?Din2008-12-02T03:46:43Z2008-12-02T03:46:43Z<p>As I know call takes same amount of processor operations as jump does if they are both using short pointers. With long pointers may be different. Call in assembler does not use stack by default. If there is enough free registers used register. So stack operations take zero time too. It is just registers which is very fast.</p>
<p>In contrast case variant as I see uses add and sub operations which are quite slow and probably add most of extratime.</p>
http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement/333502#3335027Answer by PatrickvL for Why is CharInSet faster than Case statement?PatrickvL2008-12-02T09:55:53Z2008-12-02T09:55:53Z<p>Barry, I'd like to point out that your benchmark does not reflect the actual performance of the various methods, because the structure of the implementations differ.
Instead, all methods should use a "while True do" construct, to better reflect the impact of the differing ways to do a char-in-set check.</p>
<p>Here a replacement for the test-methods (P2 is unchanged, P1 and P3 now use the "while True do" construct) :</p>
<pre><code>procedure P1;
var
cp: PChar;
begin
cp := PChar(SampleString);
while True do
if CharInSet(cp^, [#0, ';', '.']) then
Break
else
Inc(cp);
end;
procedure P2;
var
cp: PChar;
begin
cp := PChar(SampleString);
while True do
case cp^ of
'.', #0, ';':
Break;
else
Inc(cp);
end;
end;
procedure P3;
var
cp: PChar;
begin
cp := PChar(SampleString);
while True do
if AnsiChar(cp^) in [#0, ';', '.'] then
Break
else
Inc(cp);
end;
</code></pre>
<p>My workstation gives :</p>
<pre><code>CharInSet: 0.099 seconds
case stmt: 0.043 seconds
set test: 0.043 seconds
</code></pre>
<p>Which better matches the expected results. To me, it seems using the 'case in' construct doesn't really help. I'm sorry Marco!</p>
http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement/359416#3594162Answer by ericc for Why is CharInSet faster than Case statement?ericc2008-12-11T13:54:05Z2008-12-11T13:54:05Z<p>A free sampling profiler for Delphi can be found there:</p>
<p><a href="https://forums.codegear.com/thread.jspa?messageID=18506" rel="nofollow">https://forums.codegear.com/thread.jspa?messageID=18506</a></p>
<p>Apart from the issue of incorrect time measurement of instrumenting profilers, it should be noted that which is faster will also depend on how predictable the "case" branches are.
If the tests in the "case" have all a similar probability of being encountered, performance of "case" can end up lower than that of CharInSet.</p>
http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement/412899#4128992Answer by jackey for Why is CharInSet faster than Case statement?jackey2009-01-05T11:50:45Z2009-01-05T11:50:45Z<p>The code in the function"CharInSet" is faster than 'case', the time is spent on 'call',
use
while not (cp^ in [..]) then </p>
<p>you will see this is the fasted.</p>