User Dark Shikari - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T12:52:09Zhttp://stackoverflow.com/feeds/user/11206http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70421#7042118Answer by Dark Shikari for Why is quicksort better than mergesort?Dark Shikari2008-09-16T08:41:02Z2009-11-13T04:33:20Z<p>Actually, QuickSort is O(n^2). Its <em>average case</em> running time is O(nlog(n)), but its <em>worst-case</em> is O(n^2), which occurs when you run it on a list that contains few unique items. Randomization takes O(n). Of course, this doesn't change its worst case, it just prevents a malicious user from making your sort take a long time.</p>
<p>QuickSort is more popular because it:</p>
<ol>
<li>Is in-place (MergeSort requires tons of extra memory).</li>
<li>Has a small hidden constant.</li>
</ol>
http://stackoverflow.com/questions/567278/deadlocks-with-pthreads-and-createthread3Deadlocks with pthreads and CreateThreadDark Shikari2009-02-19T21:34:16Z2009-07-12T01:18:21Z
<p>I'm using pthreads in a Windows application. I noticed my program was deadlocking--a quick inspection showed that the following had occurred:</p>
<p>Thread 1 spawned Thread 2. Thread 2 spawned Thread 3. Thread 2 waited on a mutex from Thread 3, which wasn't unlocking.</p>
<p>So, I went to debug in gdb and got the following when backtracing the third thread:</p>
<pre><code>Thread 3 (thread 3456.0x880):
#0 0x7c8106e9 in KERNEL32!CreateThread ()
from /cygdrive/c/WINDOWS/system32/kernel32.dll
Cannot access memory at address 0x131
</code></pre>
<p>It was stuck, deadlocked, somehow, in the Windows CreateThread function! Obviously it couldn't unlock the mutex when it wasn't even able to start executing code. Yet, despite the fact that it was apparently stuck here, pthread_create returned zero (success).</p>
<p>What makes this particularly odd is that the same application on Linux has no such issues. What in the world would cause a thread to hang during the creation process (!?) but return successfully as if it had been created properly?</p>
<p>Edit: in response to the request for code, here's some code (simplified):</p>
<p>The creation of the thread:</p>
<pre><code>if ( pthread_create( &h->lookahead->thread_handle, NULL, (void *)lookahead_thread, (void *)h->thread[h->param.i_threads] ) )
{
log( LOG_ERROR, "failed to create lookahead thread\n");
return ERROR;
}
while ( !h_lookahead->b_thread_active )
usleep(100);
return SUCCESS;
</code></pre>
<p>Note that it *waits until b_thread_active is set*, so somehow b_thread_active is being set, so the thread being called has to have done something...</p>
<p>... here's the lookahead_thread function:</p>
<pre><code>void lookahead_thread( mainstruct *h )
{
h->lookahead->b_thread_active = 1;
while( !h->lookahead->b_exit_thread && h->lookahead->b_thread_active )
{
if ( synch_frame_list_get_size( &h->lookahead->next ) > delay )
_lookahead_slicetype_decide (h);
else
usleep(100); // Arbitrary number to keep thread from spinning
}
while ( synch_frame_list_get_size( &h->lookahead->next ) )
_lookahead_slicetype_decide (h);
h->lookahead->b_thread_active = 0;
}
</code></pre>
<p>lookahead_slicetype_decide (h); is the thing that the thread does.</p>
<p>The mutex, synch_frame_list_get_size:</p>
<pre><code>int synch_frame_list_get_size( synch_frame_list_t *slist )
{
int fno = 0;
pthread_mutex_lock( &slist->mutex );
while (slist->list[fno]) fno++;
pthread_mutex_unlock( &slist->mutex );
return fno;
}
</code></pre>
<p>The backtrace of thread 2:</p>
<pre><code>Thread 2 (thread 332.0xf18):
#0 0x00478853 in pthread_mutex_lock ()
#1 0x004362e8 in synch_frame_list_get_size (slist=0x3ef3a8)
at common/frame.c:1078
#2 0x004399e0 in lookahead_thread (h=0xd33150)
at encoder/lookahead.c:288
#3 0x0047c5ed in ptw32_threadStart@4 ()
#4 0x77c3a3b0 in msvcrt!_endthreadex ()
from /cygdrive/c/WINDOWS/system32/msvcrt.dll
#5 0x7c80b713 in KERNEL32!GetModuleFileNameA ()
from /cygdrive/c/WINDOWS/system32/kernel32.dll
#6 0x00000000 in ??
</code></pre>
http://stackoverflow.com/questions/75564/what-is-your-favorite-low-level-profiling-tool2What is your favorite low-level profiling tool?Dark Shikari2008-09-16T18:39:34Z2009-03-19T11:38:33Z
<p>Its not uncommon that I have a program whose performance relies heavily on just a few functions and I want to be able to measure a single loop or code segment's speed down to single-clock precision so that I know whether my changes are actually improving performance or whether I'm just falling for the placebo of "optimized" code.</p>
<p>I personally find myself using ffmpeg's <a href="http://pastebin.com/f38ba0fa9" rel="nofollow">"bench.h"</a>, a set of C macros that use rdtsc to measure clock time and automatically compensates for context switches and similar. Of course, this approach has its own weaknesses; what other low-level profiling methods do StackOverflow users like?</p>
http://stackoverflow.com/questions/98359/fastest-gaussian-blur-implementation/98853#988532Answer by Dark Shikari for Fastest Gaussian blur implementationDark Shikari2008-09-19T02:03:20Z2009-02-11T22:25:03Z<p>Step 1: SIMD 1-dimensional gaussian blur<br />
Step 2: transpose<br />
Step 3: Repeat step 1</p>
<p>(Best done on small blocks, as a full-image transpose is slow, while a small-block transpose can be done extremely fast using a chain of punpck)</p>
http://stackoverflow.com/questions/364757/force-compile-error-if-function-argument-out-of-range/366529#3665290Answer by Dark Shikari for Force compile error if function argument out of rangeDark Shikari2008-12-14T13:05:19Z2008-12-14T13:05:19Z<p>You could do it using #defines for your functions and __builtin_constant(x), which returns 1 if x resolves to a constant and 0 if it does not. Note this is a gcc-only intrinsic; I have no idea if there are equivalents on other compilers.</p>
http://stackoverflow.com/questions/361441/learning-x64-on-a-linux-system/361504#3615041Answer by Dark Shikari for Learning x64 on a linux systemDark Shikari2008-12-12T00:12:53Z2008-12-12T00:45:25Z<p>The best way to learn assembly is to look at existing, working assembly (actual assembly, not intrinsics or whatever) and learn how it works. And of course ask questions to those who wrote it. Once you understand how it works, write something similar yourself and keep working on it until its output matches the C code.</p>
<p>My project, x264, for example, has a few tens of thousands of lines of x64 assembly which you can <a href="http://git.videolan.org/?p=x264.git;a=summary" rel="nofollow">view online through the gitweb interface</a>.</p>
http://stackoverflow.com/questions/361363/how-to-measure-time-in-milliseconds-using-ansi-c/361515#3615150Answer by Dark Shikari for How to measure time in milliseconds using ANSI C?Dark Shikari2008-12-12T00:15:16Z2008-12-12T00:15:16Z<p>The best precision you can possibly get is through the use of the x86-only "rdtsc" instruction, which can provide clock-level resolution (ne must of course take into account the cost of the rdtsc call itself, which can be measured easily on application startup).</p>
<p>The main catch here is measuring the number of clocks per second, which shouldn't be too hard.</p>
http://stackoverflow.com/questions/355967/how-to-use-msvc-intrinsics-to-get-the-equivalent-of-this-gcc-code1How to use MSVC intrinsics to get the equivalent of this GCC code?Dark Shikari2008-12-10T13:00:57Z2008-12-10T17:33:21Z
<p>The following code calls the builtin functions for clz/ctz in GCC and, on other systems, has C versions. Obviously, the C versions are a bit suboptimal if the system has a builtin clz/ctz instruction, like x86 and ARM.</p>
<pre><code>#ifdef __GNUC__
#define clz(x) __builtin_clz(x)
#define ctz(x) __builtin_ctz(x)
#else
static uint32_t ALWAYS_INLINE popcnt( uint32_t x )
{
x -= ((x >> 1) & 0x55555555);
x = (((x >> 2) & 0x33333333) + (x & 0x33333333));
x = (((x >> 4) + x) & 0x0f0f0f0f);
x += (x >> 8);
x += (x >> 16);
return x & 0x0000003f;
}
static uint32_t ALWAYS_INLINE clz( uint32_t x )
{
x |= (x >> 1);
x |= (x >> 2);
x |= (x >> 4);
x |= (x >> 8);
x |= (x >> 16);
return 32 - popcnt(x);
}
static uint32_t ALWAYS_INLINE ctz( uint32_t x )
{
return popcnt((x & -x) - 1);
}
#endif
</code></pre>
<p>What functions do I need to call, which headers do I need to include, etc to add a proper ifdef for MSVC here? I've already looked at <a href="http://msdn.microsoft.com/en-us/library/wfd9z0bb(VS.80).aspx" rel="nofollow">this page</a>, but I'm not entirely sure what the #pragma is for (is it required?) and what restrictions it puts on MSVC version requirements for compilation. As someone who doesn't really use MSVC, I also don't know whether these intrinsics have C equivalents on other architectures, or whether I have to #ifdef x86/x86_64 as well when #defining them.</p>
http://stackoverflow.com/questions/207987/windows-ideally-net-callable-api-to-join-mp4-and-or-3gp-files/211093#2110930Answer by Dark Shikari for Windows (ideally .NET callable) API to join MP4 and/or 3GP files?Dark Shikari2008-10-17T04:37:04Z2008-10-17T04:37:04Z<p>For x264: you can simply call the executable itself, or you can include the library itself and call it through its API (encoder_open, etc). With .NET its likely more difficult; being a C program, its API is built around C, though I know both C and C++ programs on Windows and Linux have been built that call the API.</p>
<p>There's no real advantage to one over the other for a simple program: either way, x264 only takes a single type of input (raw YV12 video) and spits out a single type of output (H.264 elementary streams, or in the case of the CLI app, it can also mux MP4 and Matroska).</p>
<p>If you need an all-in-one solution, ffmpeg can do the job, as it can automatically handle decoding and pass on the encoding to libx264. If you need more specific assistance, drop by #x264 on Freenode IRC.</p>
http://stackoverflow.com/questions/207987/windows-ideally-net-callable-api-to-join-mp4-and-or-3gp-files/207996#2079962Answer by Dark Shikari for Windows (ideally .NET callable) API to join MP4 and/or 3GP files?Dark Shikari2008-10-16T10:00:41Z2008-10-16T10:13:45Z<p>FFMPEG's libavcodec and libavformat are your friend. They're extremely versatile and support more than basically anything else, and are effectively the cross-platform standard for multimedia support and manipulation.</p>
<p>You could also try MP4box's library, GPAC, which is an MP4-specific library that is much more powerful than FFMPEG's APIs, but is (given the name) only useful for handling MP4 and 3GP files.</p>
<p>Also, if you're using Flix for transcoding, have you considered upgrading to something more modern? FLV1 and VP6 are rather crappy formats for Flash video; now that Flash supports H.264, there's really no reason to continue using such outdated (and, in the case of VP6, expensive) formats.</p>
http://stackoverflow.com/questions/196329/osx-lacks-memalign/196436#1964360Answer by Dark Shikari for OSX lacks memalignDark Shikari2008-10-13T00:55:31Z2008-10-13T00:55:31Z<p>If you need an arbitrarily aligned malloc, check out x264's malloc (common/common.c in the git repository), which has a custom memalign for systems without malloc.h. Its extremely trivial code, to the point where I would not even consider it copyrightable, but you should easily be able to implement your own after seeing it.</p>
<p>Of course, if you only need 16-byte alignment, as stated above, its in the OS X ABI.</p>
http://stackoverflow.com/questions/165931/thread-safe-atomic-operations-in-gcc4Thread-safe atomic operations in gccDark Shikari2008-10-03T06:44:33Z2008-10-12T13:17:30Z
<p>In a program I work on, I have a lot of code as follows:</p>
<pre><code>pthread_mutex_lock( &frame->mutex );
frame->variable = variable;
pthread_mutex_unlock( &frame->mutex );
</code></pre>
<p>This is clearly a waste of CPU cycles if the middle instruction can just be replaced with an atomic store. I know that gcc is quite capable of this, but I haven't been able to find much documentation on such simple thread-safe atomic operations. How would I replace this set of code with an atomic operation?</p>
<p>(I know that simple stores should theoretically be atomic, but I don't want to have to hope that the optimizer isn't screwing up their atomic-ness at some point in the process.)</p>
<p>Clarification: I do not need them to be strictly atomic; these variables are solely used for thread synchronization. That is, Thread B reads the value, checks if its correct, and if its not correct, it sleeps. So even if Thread A updates the value and Thread B doesn't realize its updated, that isn't a problem, since that just means Thread B sleeps when it didn't really need to, and when it wakes up, the value will be correct.</p>
http://stackoverflow.com/questions/187990/why-does-gcc-windows-depend-on-cygwin/188014#1880141Answer by Dark Shikari for Why does GCC-Windows depend on cygwin?Dark Shikari2008-10-09T16:18:15Z2008-10-09T16:18:15Z<p>Much of that software that is compiled for different platforms is compiled... in MinGW. The only difference with gcc is that it is a compiler <em>itself</em>, which means it needs all the headers that normally get compiled in with the program, and normally which one does not need to run the resulting program.</p>
http://stackoverflow.com/questions/176303/how-should-cs-se-students-supplement-their-learning/176385#1763851Answer by Dark Shikari for How should CS/SE Students supplement their learning?Dark Shikari2008-10-06T22:01:12Z2008-10-06T22:01:12Z<p>Open source and internships--or even better, both. Practical experience is the best supplement to an education.</p>
http://stackoverflow.com/questions/173409/how-can-i-find-the-execution-time-of-a-section-of-my-program-in-c/173419#1734191Answer by Dark Shikari for How can I find the execution time of a section of my program in C?Dark Shikari2008-10-06T07:08:46Z2008-10-06T09:31:39Z<p>Try <a href="http://pastebin.com/f38ba0fa9" rel="nofollow">"bench.h"</a>; it lets you put a START_TIMER; and STOP_TIMER("name"); into your code, allowing you to arbitrarily benchmark any section of code (note: only recommended for short sections, not things taking dozens of milliseconds or more). Its accurate to the clock cycle, though in some rare cases it can change how the code in between is compiled, in which case you're better off with a profiler (though profilers are generally more effort to use for specific sections of code).</p>
<p>It only works on x86.</p>
http://stackoverflow.com/questions/27942/is-it-worth-it-to-learn-a-dialect-of-assembly/172970#1729701Answer by Dark Shikari for Is it worth it to learn a dialect of assembly?Dark Shikari2008-10-06T01:24:21Z2008-10-06T01:24:21Z<p>Assembly is not very difficult. Once you're familiar with C, spend a day or two learning basic assembly. Its helpfulness in terms of debugging is tremendous, plus its fun being able to write code that beats the C equivalent speed-wise by a factor of 10, 15, or more.</p>
http://stackoverflow.com/questions/172831/how-often-do-you-worry-about-how-many-if-cases-will-need-to-be-processed/172836#1728366Answer by Dark Shikari for How often do you worry about how many if cases will need to be processed?Dark Shikari2008-10-05T23:26:01Z2008-10-06T00:02:41Z<p>A classic case of this occurring (with literally 5 options as in your post) was in ffmpeg, in the decode_cabac_residual function. This was rather important, as profiling (very important--don't optimize before profiling!) showed it counted for upwards of 10-15% of the time spent in H.264 video decoding. The if statement controlled a set of statements which was calculated differently for the various types of residuals to be decoded--and, unfortunately, too much speed was lost due to code size if the function was duplicated 5 times for each of the 5 types of residual. So instead, an if chain had to be used.</p>
<p>Profiling was done on many common test streams to order them in terms of likelihood; the top was the most common, the bottom the least. This gave a small speed gain.</p>
<p>Now, in PHP, I suspect that there's a lot less of the low-level style speed gain that you'd get in C, as in the above example.</p>
http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/172767#1727672Answer by Dark Shikari for What programming religious argument bothers you the most?Dark Shikari2008-10-05T22:27:27Z2008-10-05T22:27:27Z<p>I dislike the religious arguments over use of the C preprocessor. There's some strange idea that the preprocessor is inherently evil, when in reality its proper use can lead to far more maintainable and readable code. This can often be better than functions, because in some cases you have a "function" which, if made into an actual function, would need a dozen or more arguments, peppering the code with long, ugly function calls. If the "function" is simple, a macro might be more applicable.</p>
<p>Much like GOTO, few things are "inherently evil"; what is evil is overuse of anything, regardless of what it is.</p>
http://stackoverflow.com/questions/172504/so-which-exciting-algorithms-have-you-discovered-recently/172535#1725351Answer by Dark Shikari for So - which exciting algorithms have you "discovered" recently?Dark Shikari2008-10-05T19:53:15Z2008-10-05T19:53:15Z<p>Here's an implementation of the <a href="http://www.telecom.tuc.gr/~ntsourak/demo_viterbi.htm" rel="nofollow">Viterbi algorithm</a> that I "discovered" recently. The purpose here is to decide the optimal distribution of frame types in video encoding. Viterbi itself is a bit hard to understand sometimes, so I think the best method is via actual example.</p>
<p>In this example, Max Consecutive B-frames is 2. All paths must end with a P-frame.</p>
<p>Path length of 1 gives us <code>P</code> as our best path, since all paths must end on a P-frame, there's no other choice.</p>
<p>Path length of 2 gives us <code>BP</code> and <code>_P</code>. <code>"_"</code> is the best path of length 1.
This gives us <code>BP</code> and <code>PP</code>. Now, we calculate the actual costs.
Let's say, for the sake of this example, that BP is best.</p>
<p>Path length of 3 gives us <code>BBP</code> and <code>_B</code>P and <code>__P</code>. <code>"__"</code> is the best path of length 2.
This gives us <code>BBP</code> and <code>PBP</code> and <code>BPP</code>. Now, we calculate the actual costs.
Let's say, for the sake of this example, that BBP is best.</p>
<p>Path length of 4 gives us <code>_BBP</code> and <code>__BP</code> and <code>___P</code>. <code>"___"</code> is the best path of length 3.
This gives us PBBP and BPBP and BBPP. Now, we calculate the actual costs.
Let's say, for the sake of this example, that BPBP is best.</p>
<p>Path length of 4 gives us <code>__BBP</code> and <code>___BP</code> and <code>____P</code>. <code>"____"</code> is the best path of length 4.
This gives us <code>BPBBP</code> and <code>BBPBP</code> and <code>BPBPP</code>.</p>
<p>Now--wait a minute--all of the paths agree that the first frame is a <code>B</code>! So the first frame is a <code>B</code>.</p>
<p>Process is repeated until they agree on which frame is the first P-frame, and then encoding starts.</p>
<p>This algorithm can be adapted to a huge variety of problems in many fields; its also the same algorithm I referred to in <a href="http://stackoverflow.com/questions/145676/how-to-approach-something-complex#145691">this post</a>.</p>
http://stackoverflow.com/questions/171917/state-of-memset-functionality-in-c-with-modern-compilers/171966#1719663Answer by Dark Shikari for State of "memset" functionality in C++ with modern compilersDark Shikari2008-10-05T13:26:22Z2008-10-05T13:32:03Z<p>It depends what you're doing. If you have a very specific case, you can often vastly outperform the system libc (and/or compiler inlining) of memset and memcpy.</p>
<p>For example, for the program I work on, I wrote a 16-byte-aligned memcpy and memset designed for small data sizes. The memcpy was made for multiple-of-16 sizes greater than or equal to 64 only (with data aligned to 16), and memset was made for multiple-of-128 sizes only. These restrictions allowed me to get enormous speed, and since I controlled the application, I could tailor the functions specifically to what was needed, and also tailor the application to align all necessary data.</p>
<p>The memcpy performed at about 8-9x the speed of the Windows native memcpy, knocing a 460-byte copy down to a mere 50 clock cycles. The memset was about 2.5x faster, filling a stack array of zeros extremely quickly.</p>
<p>If you're interested in these functions, they can be found <a href="http://git.videolan.org/?p=x264.git;a=blob;f=common/x86/mc-a2.asm;h=c6c8221a4f87665d29937bed9f91239b9d83f72e;hb=cc510478de710f86ab400f610b6e075304d902cb" rel="nofollow">here</a>; drop down to around line 600 for the memcpy and memset. They're rather trivial. Note they're designed for small buffers that are supposed to be in cache; if you want to initialize enormous amounts of data in memory while bypassing cache, your issue may be more complex.</p>
http://stackoverflow.com/questions/169713/whats-the-toughest-bug-you-ever-found-and-fixed/171720#1717204Answer by Dark Shikari for What's the toughest bug you ever found and fixed?Dark Shikari2008-10-05T08:53:23Z2008-10-05T08:53:23Z<p>I have spent hours to days debugging a number of things that ended up being fixable with literally just a couple characters.</p>
<p>Some various examples:</p>
<ol>
<li><p>ffmpeg has this nasty habit of producing a warning about "brainfart cropping" (referring to a case where in-stream cropping values are >= 16) when the crop values in the stream were actually perfectly valid. I fixed it by adding three characters: "h->".</p></li>
<li><p>x264 had a bug where in extremely rare cases (one in a million frames) with certain options it would produce a random block of completely the wrong color. I fixed the bug by adding the letter "O" in two places in the code. Turned out I had mispelled the name of a #define in an earlier commit.</p></li>
</ol>
http://stackoverflow.com/questions/171126/learning-c-and-or-c-from-beginner-to-advanced/171131#17113114Answer by Dark Shikari for Learning C and/or C++ from beginner to advancedDark Shikari2008-10-04T22:44:09Z2008-10-04T22:44:09Z<p>First step: stop saying "C/C++". They're extremely different languages; despite the fact that they share a lot of syntax, "proper" C++ is written very very differently from "proper" C, and in my experience being good at one actually ends up hurting you when you try to do the other (due to the differing paradigms), unless you're very experienced in both.</p>
<p>There's nothing "wrong" per se with either language, its just that (in my opinion, at least), C practically has more in common with, say, FORTRAN than it does with C++.</p>
http://stackoverflow.com/questions/163600/when-not-to-comment-code/163811#1638112Answer by Dark Shikari for When NOT to comment codeDark Shikari2008-10-02T18:22:52Z2008-10-02T18:22:52Z<p>Code should always be as absolutely self-documenting as possible. If you look at a piece of code and realize you can restructure it so a comment is no longer necessary, that is the best course of action, since it makes the code easier to understand.</p>
<p>Obviously, this doesn't mean you should never used comments--it means that code should be designed so as to be as understandable as possible before people look at the comments. Comments should be reserved for FIXMEs, explanations for non-obvious tricks/hacks/similar, and explanation of complex algorithms and functions. The majority of code should not need significant commenting.</p>
http://stackoverflow.com/questions/161541/svn-vs-git/161647#1616479Answer by Dark Shikari for Svn vs GitDark Shikari2008-10-02T10:17:26Z2008-10-02T10:17:26Z<p>I have never understand this concept of "git not being good on Windows"; I develop exclusively under Windows and I have never had any problems with git.</p>
<p>I would definitely recommend git over subversion; its simply so much more versatile and allows "offline development" in a way subversion never really could. Its available on almost every platform imaginable and has more features than you'll probably ever use.</p>
http://stackoverflow.com/questions/158889/are-doubles-faster-than-floats-in-c/160927#1609271Answer by Dark Shikari for Are doubles faster than floats in c#?Dark Shikari2008-10-02T04:58:55Z2008-10-02T04:58:55Z<p>With 387 FPU arithmetic, float is only faster than double for certain long iterative operations like pow, log, etc (and only if the compiler sets the FPU control word appropriately).</p>
<p>With packed SSE arithmetic, it makes a big difference though.</p>
http://stackoverflow.com/questions/156650/does-the-last-element-in-a-loop-deserve-a-separate-treatment/156660#1566600Answer by Dark Shikari for Does the last element in a loop deserve a separate treatment?Dark Shikari2008-10-01T08:08:38Z2008-10-01T08:08:38Z<p>Of course, special-casing things in a loop which can be pulled out is silly. I wouldn't duplicate the do_stuff either though; I'd either put it in a function or a macro so I don't copy-paste code.</p>
http://stackoverflow.com/questions/156257/ai-applications-in-c-how-costly-are-virtual-functions-what-are-the-possible-o/156263#1562631Answer by Dark Shikari for AI Applications in C++: How costly are virtual functions? What are the possible optimizations?Dark Shikari2008-10-01T04:45:10Z2008-10-01T04:53:29Z<p>You rarely have to worry about cache in regards to such commonly used items, since they're fetched once and kept there.</p>
<p>Cache is only generally an issue when dealing with large data structures that either:</p>
<ol>
<li>Are large enough and used for a very long time by a single function so that function can push everything else you need out of the cache, or</li>
<li>Are randomly accessed enough that the data structures themselves aren't necessarily in cache when you load from them.</li>
</ol>
<p>Things like Vtables are generally not going to be a performance/cache/memory issue; usually there's only one Vtable per object type, and the object contains a pointer to the Vtable instead of the Vtable itself. So unless you have a few thousand types of objects, I don't think Vtables are going to thrash your cache.</p>
<p>1), by the way, is why functions like memcpy use cache-bypassing streaming instructions like movnt(dq|q) for extremely large (multi-megabyte) data inputs.</p>
http://stackoverflow.com/questions/146893/key-concepts-to-learn-in-assembly/147171#1471710Answer by Dark Shikari for Key concepts to learn in AssemblyDark Shikari2008-09-29T01:21:02Z2008-10-01T04:16:24Z<p>The most important concept is SIMD, and creative use of it. Proper use of SIMD can give enormous performance benefits in a massive variety of applications ranging from everything from string processing to video manipulation to matrix math. This is where you can get over <em>10x performance boosts over pure C code</em>--this is why assembly is still useful beyond mere debugging.</p>
<p>Some examples from the project I work on (all numbers are clock cycle counts on a Core 2):</p>
<p>Inverse 8x8 H.264 DCT (frequency transform):</p>
<pre><code>c: 1332
mmx: 187
sse2: 127
</code></pre>
<p>8x8 Chroma motion compensation (bilinear interpolation filter):</p>
<pre><code>c: 639
mmx: 144
sse2: 110
ssse3: 79
</code></pre>
<p>4 16x16 Sum of Absolute Difference operations (motion search):</p>
<pre><code>c: 3948
mmx: 278
sse2: 231
ssse3: 215
</code></pre>
<p>(yes, that's right--over 18x faster than C!)</p>
<p>Mean squared error of a 16x16 block:</p>
<pre><code>c: 1013
mmx: 193
sse2: 131
</code></pre>
<p>Variance of a 16x16 block:</p>
<pre><code>c: 783
mmx: 171
sse2: 106
</code></pre>
http://stackoverflow.com/questions/150876/what-ides-and-tools-are-available-for-c-language-development/150910#1509101Answer by Dark Shikari for What IDEs and tools are available for C language development?Dark Shikari2008-09-29T21:58:07Z2008-09-29T21:58:07Z<p>I use Cygwin as my development environment and Notepad++ as an editor; I prefer sets of simple applications that each do one thing rather than massive complicated IDEs. Visual Studio is particularly problematic in this sense; not only is it very C++-oriented, but its completely overwhelming to newer programmers due to its sheer mass of features.</p>
<p>MSVC also lacks support for most of the C99 standard, which can be very annoying when programming in C. For example, you have to declare all variables at the top of code blocks.</p>
http://stackoverflow.com/questions/147408/performance-challenge-nal-unit-wrapping2Performance challenge: NAL Unit WrappingDark Shikari2008-09-29T03:30:14Z2008-09-29T04:55:38Z
<p>From what I've seen in the past, StackOverflow seems to like programming challenges, such as the <a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise">fast char to string exercise problem</a> which got dozens of responses. This is an optimization challenge: take a very simple function and see if you can come up with a smarter way of doing it.</p>
<p>I've had a function that I've wanted to further optimize for quite some time but I always find that my optimizations have some hole that result in incorrect output--some rare special case in which they fail. But, given the function, I've always figured one should be able to do better than this.</p>
<p>The function takes an input datastream (effectively random bits, from an entropy perspective) and wraps it into a NAL unit. This involves placing escape codes: any byte sequence of 00 00 00, 00 00 01, 00 00 02, or 00 00 03 gets replaced with 00 00 03 XX, where XX is that last byte of the original sequence. As one can guess, these only get placed about 1 in every 4 million bytes of input, given the odds against such a sequence--so this is a challenge where one is <strong>searching an enormous amount of data and doing almost nothing to it</strong> except in very rare cases. However, because "doing something" involves <em>inserting bytes</em>, it makes things a bit trickier. The current unoptimized code is the following C:</p>
<p>src and dst are pointers to arrays of bytes, and end is the pointer to the end of the input data.</p>
<pre><code>int i_count = 0;
while( src < end )
{
if( i_count == 2 && *src <= 0x03 )
{
*dst++ = 0x03;
i_count = 0;
}
if( *src == 0 )
i_count++;
else
i_count = 0;
*dst++ = *src++;
}
</code></pre>
<p>Common input sizes to this function range from roughly between 1000 and 1000000 bytes of data.</p>
<p>Initial ideas of mine include a function which (somehow) quickly searches the input for situations where an escape code is needed, to avoid more complex logic in the vast majority of inputs where escape codes don't need to be placed.</p>
<p><hr /></p>
http://stackoverflow.com/questions/567278/deadlocks-with-pthreads-and-createthread/567315#567315Comment by Dark Shikari on Deadlocks with pthreads and CreateThreadDark Shikari2009-02-20T04:20:04Z2009-02-20T04:20:04ZAnd you were right; while there were other bugs in the code, the missing volatile was what caused this particular bug.http://stackoverflow.com/questions/567278/deadlocks-with-pthreads-and-createthread/567315#567315Comment by Dark Shikari on Deadlocks with pthreads and CreateThreadDark Shikari2009-02-19T22:13:43Z2009-02-19T22:13:43ZGood catch on the volatile--I'll go test that and see if it is the problem. According to another dev gcc has a habit of inconsistent behavior with regard to non-volatile variables in threaded mode across platforms, which could result in Linux working fine but Windows breaking.http://stackoverflow.com/questions/567278/deadlocks-with-pthreads-and-createthread/567315#567315Comment by Dark Shikari on Deadlocks with pthreads and CreateThreadDark Shikari2009-02-19T22:01:04Z2009-02-19T22:01:04ZAdded a bunch of specific code.http://stackoverflow.com/questions/567278/deadlocks-with-pthreads-and-createthreadComment by Dark Shikari on Deadlocks with pthreads and CreateThreadDark Shikari2009-02-19T21:41:41Z2009-02-19T21:41:41ZNo, no attributes at all (NULL pointer passed for attributes).http://stackoverflow.com/questions/355967/how-to-use-msvc-intrinsics-to-get-the-equivalent-of-this-gcc-codeComment by Dark Shikari on How to use MSVC intrinsics to get the equivalent of this GCC code?Dark Shikari2008-12-10T18:04:59Z2008-12-10T18:04:59ZIt's a native Windows executable--part of the reason I'm asking is that I've found it rather difficult to find Microsoft documentation pages that actually talk about C these days.http://stackoverflow.com/questions/207987/windows-ideally-net-callable-api-to-join-mp4-and-or-3gp-files/207996#207996Comment by Dark Shikari on Windows (ideally .NET callable) API to join MP4 and/or 3GP files?Dark Shikari2008-10-17T04:35:06Z2008-10-17T04:35:06ZI'll answer this in a separate post, as the comments are rather limited in terms of length.http://stackoverflow.com/questions/207987/windows-ideally-net-callable-api-to-join-mp4-and-or-3gp-files/207996#207996Comment by Dark Shikari on Windows (ideally .NET callable) API to join MP4 and/or 3GP files?Dark Shikari2008-10-16T10:20:54Z2008-10-16T10:20:54ZI would suggest you use a better H.264 encoder; Flix is not known for its speed or quality. I would highly recommend x264, as it is both fast, versatile, and has a relatively simple API that you can call directly from your application. Also, its quality is basically unrivaled.http://stackoverflow.com/questions/206169/are-microsofts-own-implementations-of-their-opensource-counterparts-better-and/206265#206265Comment by Dark Shikari on Are Microsoft's Own Implementations of Their OpenSource Counterparts Better, and Why?Dark Shikari2008-10-15T20:31:57Z2008-10-15T20:31:57ZIn fact, most successful large open source projects have <i>paid</i> full-time developers at their core. The idea that open source is some how "hobbyist" or done by "neckbeards in their basement" is a myth.http://stackoverflow.com/questions/177506/why-do-i-see-a-double-variable-initialized-to-some-value-like-21-4-as-21-39999961/177512#177512Comment by Dark Shikari on Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?Dark Shikari2008-10-07T09:58:49Z2008-10-07T09:58:49ZNot necessarily very large or very small--floating point precision is the same regardless of overall number size. The problem is when you <i>mix</i> very large and very small values, such as adding them together.http://stackoverflow.com/questions/173409/how-can-i-find-the-execution-time-of-a-section-of-my-program-in-c/173419#173419Comment by Dark Shikari on How can I find the execution time of a section of my program in C?Dark Shikari2008-10-06T09:32:18Z2008-10-06T09:32:18ZTo whoever added the note about this failing on multi-core systems: I deleted it, because it is simply incorrect. The macro automatically handles context switches and other sudden changes in RDTSC values, so no such problem exists. I use it exclusively on multi-core machines and it works fine.http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/172191#172191Comment by Dark Shikari on What programming religious argument bothers you the most?Dark Shikari2008-10-05T22:25:15Z2008-10-05T22:25:15ZThe best solution to this problem is fields in which only one of the two is available--there are literally many applications where there <i>is no practical proprietary app</i> for the job, or vice versa, where there is no practical open source app for the job. This forces people to deal with it ;)http://stackoverflow.com/questions/171917/state-of-memset-functionality-in-c-with-modern-compilers/171966#171966Comment by Dark Shikari on State of "memset" functionality in C++ with modern compilersDark Shikari2008-10-05T20:31:58Z2008-10-05T20:31:58ZNote that while you can beat system memset/cpy, the Windows 32-bit one is a <i>lot</i> slower than it should be, especially the memcpy, which only manages to copy about one byte per clock cycle. I suspect newer Windows libcs are better, as is Linux's (though mine still beat those, albeit not as much).http://stackoverflow.com/questions/37473/how-can-i-assert-without-using-abort/37491#37491Comment by Dark Shikari on How can I assert() without using abort()?Dark Shikari2008-10-03T20:05:22Z2008-10-03T20:05:22ZAsserts running or not running in production builds is a compiler option. They most definitely run in gcc by default regardless of optimization options.http://stackoverflow.com/questions/160874/software-for-creating-png-8bit-transparent-images/160888#160888Comment by Dark Shikari on Software for creating PNG 8bit transparent images?Dark Shikari2008-10-02T04:39:47Z2008-10-02T04:39:47ZI'll also recommend pngout; it tends to beat almost every other optimizer in my experience due to its custom DEFLATE library.http://stackoverflow.com/questions/158716/how-do-you-efficiently-generate-a-list-of-k-non-repeating-integers-between-0-and/158742#158742Comment by Dark Shikari on How do you efficiently generate a list of K non-repeating integers between 0 and an upper bound NDark Shikari2008-10-01T17:37:10Z2008-10-01T17:37:10ZThen generate 0 .. K, and then remove numbers randomly until you have N numbers.