User Blaisorblade - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T13:43:27Z http://stackoverflow.com/feeds/user/53974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456237#456237 0 Answer by Blaisorblade for How do you stop yourself from refactoring working but awful code? Blaisorblade 2009-01-19T00:39:26Z 2009-01-19T00:39:26Z <p>When you're working on a piece of code, or you have to use a broken interface, refactoring might be the better answer, so try to constrain refactoritis to that.</p> <p>While I'm young enough (studying for my master) that I'm not normally paid to program (I've been programming for Open Source programs, and sometimes getting money out of that), the few times I've worked on an actual company (for summer jobs, quite time constrained) I found my productivity to be much lower, and I've a definite feeling that it happened because the code, while being readable and so on, was not of the highest quality. I saw a number of bugs I wanted to fix, but gave low priority to all of them, and still the quality of the code I added myself was much lower. Dunno if that applies to anybody else, still it may be interesting to know and to see if somebody had the same experience.</p> http://stackoverflow.com/questions/387092/hand-coded-gui-versus-qt-designer-gui/449550#449550 2 Answer by Blaisorblade for Hand Coded GUI Versus Qt Designer GUI Blaisorblade 2009-01-16T05:01:27Z 2009-01-16T05:01:27Z <p>I'd add that one of the reasons for using graphical designer was the lack of layout managers in Win32, for instance. Only absolute positioning was possible, and doing that by hand would have just sucked.</p> <p>Since I switched from Delphi to Java for GUI apps (back in 2002), I've never used designers any more. I like layout managers much more. And yeah, you get boilerplate code, but moving objects on a UI designer may take as much time as changing the boilerplate. Plus, I would be stuck with a slow IDE; that's for the Java/C# case, OK, while for Qt (especially Qt4) it doesn't apply. For Qt3, I wonder why one should edit the generated code - wasn't it possible to add code in other files? For which reason?</p> <p>About the discussed cases: 1) Hand Coded GUI is likely faster to write, at least if you know your libraries. If you're a newbie and you don't know them, you may save time and learn less with a designer, since you don't need to learn the APIs you use. But "learn less" is the key factor, so in both cases I'd say Hand Coded GUI.</p> <p>2) Menu bars are quite annoying to write code for. Also, think to details like accelerators and so on. Still, it depends on what you're used to. After some time, it may be faster to type that boilerplate than to point-and-click into designer to fix all those properties, but just if you can really type like into a typewriter (like those admins for which typing Unix commands is faster than using any GUI).</p> <p>3) I'd extend the answer for case #2 to this one. Note that, for Win32 platforms, it may be possible that using designers which generate Win32 resources <em>might be</em> faster to load (no idea about that).</p> <p>However, I'd like to mention a potential problem with using Qt Designer there. Real world case: it took some seconds (say 10) to load a complex Java dialog (the Preferences dialog box for a programmer's text editor) with a lot of options. The correct fix would have been to load each of the tabs only when the programmer wanted to see them (I realized that after), by adding a separate method to each preference set to build its GUI.</p> <p>If you design all the tabs and the tab switcher together with a designer, can you do that as easily? I guess there might be a similar example where a hand coded GUI gives you more flexibility, and in such a big app, you're likely to need that, even if just for optimization purposes.</p> http://stackoverflow.com/questions/449202/how-would-you-represent-a-hashtable-collection-in-a-database-schema/449525#449525 1 Answer by Blaisorblade for How would you represent a hashtable collection in a database schema? Blaisorblade 2009-01-16T04:39:06Z 2009-01-16T04:39:06Z <p>First, dedicated support for geo-located data exists in many databases - different algorithms can be used (a spatial version of a B-Tree exists for instance), and support for proximity searches probably will exist.</p> <p>Since you have a different hash table for each SpaceQuadrant, you'd need something like (edited from S.Lott's post):</p> <pre><code>table Space { SpaceCoordinate, Quadrant Foreign Key SpaceQuadrant(ID), SpaceObject -- whatever the object is (by ID) Primary Key(SpaceCoordinate, Quadrant) } </code></pre> <p>This is a <code>(SpaceCoordinate, Quadrant) -&gt; SpaceObjectId</code> dictionary.</p> <p>=====</p> <p>Now, about your O(1) performance concern, there is a lot of reasons why it's wrongly addressed.</p> <p>You can use in many DB's a hash index for memory-based tables, as somebody told you. But if you need persistent storage, you'd need to update two tables (the memory one and the persistent one) instead of one (if there is no built-in support for this). To discover whether that's worth, you'd need to benchmark on the actual data (with actual data sizes).</p> <p>Also, forcing a table into memory can have worse implications.</p> <p>If something ever gets swapped, you're dead - if you had used a B-Tree (i.e. normal disk-based index), its algorithms would have minimized the needed I/O. Otherwise, all DBMS's would use hash tables and rely on swapping, instead of B-Trees. You can try to anticipate whether you'll fit in memory, but...</p> <p>Moreover, B-Trees are not O(1) but they are O(log_512(N)), or stuff like that (I know that collapses to O(log N), but bear me on this). You'd need (2^9)^4 = 2^36 = 64GiB for that to be 4, and if you have so much data you'd need a big iron server anyway for that to fit in memory. So, it's almost O(1), and the constant factors are what actually matters.<br> Ever heard about low-asymptotic-complexity, big-constant-factor algorithms, that would be faster than simple ones just on unpractical data sizes?</p> <p>Finally, I think DB authors are smarter than me and you. Especially given the declarative nature of SQL, hand-optimizing it this way isn't gonna pay. If an index fits in memory, I guess they could choose to build and use a hashtable version of the disk index, as needed, if it was worth it. Investigate your docs for that.</p> <p>But the bottom line is that, premature optimization is evil, especially when it's of this kind (weird optimizations we're thinking on our own, as opposed as standard SQL optimizations), and with a declarative language.</p> http://stackoverflow.com/questions/449324/stylecop-tells-me-to-add-this-keyword-but-its-redundant-any-performance-impli/449460#449460 0 Answer by Blaisorblade for Stylecop tells me to add this keyword, but it's redundant - any performance implications? Blaisorblade 2009-01-16T03:55:39Z 2009-01-16T03:55:39Z <p>It is just for clarity, and one can argue about what is better. Python doesn't support omitting the "self" identifier at all.</p> <blockquote> <p>Also, with the CLR, do things like this fall consistently across languages? So if the answer is that the compiler doesn't even touch the this keyword and it is just for presentation and clarity, then the same is true for VB.NET?</p> </blockquote> <p>In JVM for sure (and also for CLR, I'm almost sure) the code for the "this" keyword is always generated, even if that is omitted from the source - so it's like if the this keyword is always added. So, I don't think that any .NET compiler could generate different output, so there can't be a performance penalty.</p> <p>Then, it depends on the language. For instance JScript (and even JScript.NET) does not allow to omit "this", like Python, because there are functions (so "this.a()" is a method invocation, "a()" is a function invocation), and because the compiler does not know the members of any types - they're only known at runtime (well, this is not an impossible problem to solve indeed, the other issue is more relevant).</p> http://stackoverflow.com/questions/24901/is-there-a-performance-difference-between-i-and-i-in-c/445270#445270 0 Answer by Blaisorblade for Is there a performance difference between i++ and ++i in C++? Blaisorblade 2009-01-15T00:54:24Z 2009-01-15T00:54:24Z <p>The intended question was about when the result is unused (that's clear from the question for C). Can somebody fix this since the question is "community wiki"?</p> <p>About premature optimizations, Knuth is often quoted. That's right. but Donald Knuth would never defend with that the horrible code which you can see in these days. Ever seen a = b + c among Java Integers (not int)? That amounts to 3 boxing/unboxing conversions. Avoiding stuff like that is important. And uselessly writing i++ instead of ++i is the same mistake.</p> <p>Even the fact that people are more used to i++ is an unfortunate C legacy, caused by a conceptual mistake by K&amp;R (if you follow the intent argument, that's a logical conclusion; and defending K&amp;R because they're K&amp;R is meaningless, they're great, but they aren't great as language designers; countless mistakes in the C design exist, ranging from gets() to strcpy(), to the strncpy() API (it should have had the strlcpy() API since day 1)).</p> <p>Btw, I'm one of those not used enough to C++ to find ++i annoying to read. Still, I use that since I acknowledge that it's right.</p> http://stackoverflow.com/questions/45408/jit-code-generation-techniques/445214#445214 1 Answer by Blaisorblade for JIT code generation techniques Blaisorblade 2009-01-15T00:32:48Z 2009-01-15T00:32:48Z <p>About generating a DLL: the additional required I/O for that, plus linking, plus the complexity of generating the DLL format, would make that much more complicate, and above all they'd kill performance; additionally, in the end you still call a function pointer to the loaded code, so... Also, JIT compilation can happen one method at a time, and if you want to do that you'd generate lots of small DLLs.</p> <p>About the "executable section" requirement, calling mprotect() on POSIX systems can fix the permissions (there's a similar API on Win32). You need to do that for a big memory segment instead that once per method since it'd be too slow otherwise.</p> <p>On plain x86 you wouldn't notice the problem, on x86 with PAE or 64bit AMD64/Intel 64 bit machines you'd get a segfault.</p> http://stackoverflow.com/questions/434711/how-does-one-submit-a-potential-patch-to-the-linux-kernel/440207#440207 1 Answer by Blaisorblade for How does one submit a potential patch to the Linux kernel? Blaisorblade 2009-01-13T18:33:47Z 2009-01-13T18:33:47Z <p>On the EDIT, the answer might be interesting as an example case. I guess your requirement is totally reasonable, but you're right that even a test on context switch might be too expensive. But since the kernel has a timer implementation, I don't see why it can't be used to avoid that. So, indeed, suggesting a request for enhancement is the safest bet. I'm surprised that suggesting to send a bug report instead of a patch was such a good fit. You can also modify the patch yourself to use timers yourself if you would like to submit it, but still be ready for discussion :-) You can even add "we have a local fix but it adds some tests on the context-switch fast path, that's why the patch is attached for reference but should not be applied". Turning down your own code, if it's known to be bad, will avoid harsh reviews of the patch.</p> <p>The alternative is to run some benchmarks and prove there is no impact, but if timers are viable that code will be rejected anyway, or to try the timer solution yourself (something better may exist). Find the benchmarks they use for the kernel scheduler; look at the "recent" threads about the CFS Ingo's (or Kolivas'?) patch and take their benchmarks.</p> <p>About support, kernel developers won't care about "Websphere App Server" by itself, if it does unreasonable things, not even IBM-funded ones. But with my limited knowledge of the situations, shutting down a JVM periodically does not make sense, it seems just a way to paper over some memory leak/instability, so the current behaviour must be supported.</p> http://stackoverflow.com/questions/432173/what-are-the-disadvantages-of-the-spirit-parser-generator-framework-from-boost-or/438532#438532 16 Answer by Blaisorblade for What are the disadvantages of the Spirit parser-generator framework from boost.org? Blaisorblade 2009-01-13T10:21:49Z 2009-01-13T10:21:49Z <p>It is a quite cool idea, and I liked it; it was especially useful to really learn how to use C++ templates.</p> <p>But their documentation recommends the usage of spirit for small to medium-size parsers. A parser for a full language would take ages to compile. I will list three reasons.</p> <ul> <li><p>Scannerless parsing. While it's quite simpler, when backtracking is required it may slow down the parser. It's optional though - a lexer might be integrated, see the C preprocessor built with Spirit. A grammar of ~300 lines (including both .h and .cpp files) compiles (unoptimized) to a file of 6M with GCC. Inlining and maximum optimizations gets that down to ~1,7M.</p></li> <li><p>Slow parsing - there is no static checking of the grammar, neither to hint about excessive lookahead required, nor to verify basic errors, such as for instance usage of left recursion (which leads to infinite recursion in recursive-descent parsers LL grammars). Left recursion is not a really hard bug to track down, though, but excessive lookahead might cause exponential parsing times.</p></li> <li><p>Heavy template usage - while this has certain advantages, this impacts compilation times and code size. Additionally, the grammar definition must normally be visible to all other users, impacting even more compilation times. I've been able to move grammars to .cpp files by adding explicit template instantiations with the right parameters, but it was not easy.</p></li> </ul> http://stackoverflow.com/questions/438444/passing-object-ownership-in-c/438480#438480 7 Answer by Blaisorblade for Passing object ownership in C++ Blaisorblade 2009-01-13T09:51:54Z 2009-01-13T09:51:54Z <p><code>boost::interprocess</code> is a library for interprocess communication, so I wouldn't use it for different purposes.</p> <p>As discussed on this forum:</p> <p><a href="http://objectmix.com/c/113487-std-auto_ptr-deprecated.html" rel="nofollow">http://objectmix.com/c/113487-std-auto_ptr-deprecated.html</a></p> <p><code>std::auto_ptr</code> will be declared deprecated in the next version of the standard, where it will be recommended the usage of <code>std::unique_ptr</code>, which requires rvalue references and move semantics to be implemented (that's a fairly complicated feature).</p> <p>Until the new standard is released, I would simply try to disable the warning if possible, or ignore it, for maximum portability.</p> <p>If you want to already switch to the next language standard, it is possible since rvalue references have been implemented (see <a href="http://russ.yanofsky.org/rref/" rel="nofollow">http://russ.yanofsky.org/rref/</a>), so also <code>std::unique_ptr</code> should be supported.</p> <p>On of the advantages of the new semantics is that you can pass to the move constructor also a temporary or any rvalue; in other cases, this allows avoiding to copy (for instance) objects contained inside a <code>std::vector</code> (during reallocation) before destroying the original ones.</p> http://stackoverflow.com/questions/435110/what-would-you-consider-good-eclipse-support/435131#435131 0 Answer by Blaisorblade for What would you consider good Eclipse support? Blaisorblade 2009-01-12T11:15:15Z 2009-01-12T11:15:15Z <p>At my workplace, Eclipse was the standard development tool, with projects released to compile with Eclipse (I was there when we discovered that the Makefiles didn't do anything if Eclipse hadn't already done the build). The simple solution is consider the developers need and provide them with the basic environment they need. Custom plugins can be installed in the home folder by developers themselves with a "no support" disclaimer. Just install the basic environment most people in your workplace need, and most common plugins. Say: - The base environment JDT - Graphical development/network development/C++ development plugins, or whatever you need for - Some UML plugin, if one is clearly better - Some profiler if you can get it to work (I've done profiling with Netbeans, gprof, even Oprofile, but I was never able to make it work with Eclipse - it's anyway more complicated to do profiling than in Netbeans). And if people use it. If people don't, something maybe needs to be reconsidered, unless no optimization is done at all because it's not needed :-). That's the only thing that people would need support for, IMHO, the rest has been transparent to use for me. - Maybe, on Linux, I'd like RPMs for gcj-compiled versions of Eclipse, like Ubuntu and RedHat provide. Except that I have no evidence that it is faster, while I have evidence that ecj (the standalone Eclipse Java compiler) itself is much slower with GCJ (and there are a lot of reasons why this is normal)!</p> http://stackoverflow.com/questions/413955/how-to-write-linux-driver-module-call-use-another-driver-module/435040#435040 0 Answer by Blaisorblade for How to write Linux driver module call/use another driver module? Blaisorblade 2009-01-12T10:34:57Z 2009-01-12T10:34:57Z <p>You forgot to mention that you should also study try_module_get/module_put/symbol_get/symbol_put/symbol_request, for ensuring loading of the other module, and the fact that it is not unloaded during usage. I don't recall the exact details though; I think that modprobe will ensure the other module is loaded, but I'm not sure if the runtime dependency for unloading will be added. I guess that those APIs might be needed for some other cases, but needs to know about them to check this.</p> <p>Btw, the free book Linux Device Drivers is available here, and it will answer this question and much more: <a href="http://lwn.net/Kernel/LDD3/" rel="nofollow">http://lwn.net/Kernel/LDD3/</a></p> http://stackoverflow.com/questions/203912/does-python-support-multiprocessor-multicore-programming/435021#435021 -2 Answer by Blaisorblade for Does python support multiprocessor/multicore programming? Blaisorblade 2009-01-12T10:24:28Z 2009-01-12T10:24:28Z <p>Always remember, however, that if you also care about performance, using Python is a problem. It's really slow compared for instance to either Java or C#, because it's still interpreted and not JIT-compiled, and the interpreter is not very efficient. To make it fast, most popular recommendations (ranging from manual inlining to writing C extensions) make your program less readable. So using Java or C# might be a much better choice, especially if you need to start from scratch anyway.</p> <p>Things like Psyco do not, but Psyco has some bugs and does not speed up all code. And still they don't support multithreading.</p> <p>Jython, instead, is even slower than CPython, while IronPython is not faster than CPython, even if it runs on top of an efficient VM, with JIT-compilation for instance.</p> http://stackoverflow.com/questions/419486/multithreading-and-interrupts/435011#435011 1 Answer by Blaisorblade for Multithreading and Interrupts Blaisorblade 2009-01-12T10:19:16Z 2009-01-12T10:19:16Z <p>The OS gets to set up where interrupts are handled. Linux does load balancing of interrupts, so that they can be handled by both CPUs. Each interrupt handler needs to acquire a lock, to avoid concurrent executions of the same handler on a different CPU, but also to protect from other kernel code running in non-interrupt context and accessing the same data structures.</p> <p>About question (2): the guarantees are basically the same as given by a SMP machine, i.e. no exception is thrown, and the result depends on who gets to execute/commit the value to memory/commit the value to the shared cache first. You can't anyway rely on the read value - in fact, the guarantees given are much less strong than you expect.</p> <p>Look on Internet (on Google or Wikipedia) about what a data race is, and start by studying how to write multithreaded code correctly in Java. Studying that made me a lot easier to understand concurrency mechanisms of the Linux kernel.</p> <p>Or just go for the <a href="http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/" rel="nofollow">C/C++ almost "official" memory model FAQ</a>, or for Documentation/memory-barriers.txt from the Linux kernel source tree.</p> <p>When you say "your kernel", it is not clear what you mean, but I think it is unlikely you actually mean "a kernel I'm writing". Anyway, I won't let anyone asking question (2) to run multithreaded programs on my machine :-).</p> <blockquote> <p>I understand that programs should ideally be written to avoid these kinds of complications, but the OS certainly can't expect that, and will need to be able to handle such events without choking on itself.</p> </blockquote> <p>The answer to that question is something you need to know to write also userspace multithreaded programs. Well, you don't need to know the exact answer to "which value you read", but just because you can't rely on that, it's implementation-defined even if you write assembly code for a specific processor. Simply because you cannot rely on the relative speed of two parallel threads. Ever.</p> http://stackoverflow.com/questions/418815/how-good-is-the-linux-kernel-in-the-new-quad-core-processors-running-multithreadi/434993#434993 5 Answer by Blaisorblade for How good is the linux kernel in the new Quad Core processors running multithreading application Blaisorblade 2009-01-12T10:06:56Z 2009-01-12T10:06:56Z <p>Given that kernel developers like Christoph Lameter (and Ingo Molnar on the scheduler) have tuned the kernel to work well on 4096 processors, and given the amount of optimizations invested by Intel itself in the issue, with multicore specific tuning both for performance and energy saving, I bet the kernel is by far more optimized than anything any of us can write in userspace.</p> <p>Same about the threading library; there is currently only one thread library, NPTL for Linux 2.6. LinuxThreads was removed from glibc in the 2.4 release, and NPTL was produced before the 2.6 release. And it's really fast.</p> <p>Just make sure to avoid using an old kernel, the last release of your distro, or kernel.org, is the best. Before deploying in production, make sure to measure the performance difference, and consider whether that is worth the additional support costs (if any).</p> http://stackoverflow.com/questions/389582/queues-in-the-linux-kernel/434885#434885 2 Answer by Blaisorblade for Queues in the Linux Kernel Blaisorblade 2009-01-12T09:21:53Z 2009-01-12T09:21:53Z <p>Are you looking for include/linux/kfifo.h? From the heading:</p> <blockquote> <p>A simple kernel FIFO implementation.</p> </blockquote> <p>It's rather new anyway, so it's not hard to find direct usages of linked lists. Also, they have a quite different implementation (FIFOs are implemented as circular buffers), so they have different applications.</p> <p>Note also they are designed with multithreaded usage in mind (think to producer/consumer queues), but you can use them without locking with __kfifo_put/__kfifo_get.</p> <p>Btw: I remember I learned about them on lwn.net - bookmark this: lwn.net/Kernel/Index, and read the entry about kfifo :-).</p> <p>From your ex-kernel developer, Blaisorblade</p> http://stackoverflow.com/questions/70773/pthreadcondwait-versus-semaphore/434872#434872 0 Answer by Blaisorblade for pthread_cond_wait versus semaphore Blaisorblade 2009-01-12T09:11:45Z 2009-01-12T09:11:45Z <p>The 2nd snippet is racy, don't do that.</p> <p>The other answers have a nice discussion of the relative merits; I'll just add that <code>pthread_cond_broadcast</code> is a clear advantage of condition variables.</p> <p>Beyond that, I'm just more used to condition variables for that, as they are what you use in Java, even because they help you to avoid races when checking the shared flags.</p> <p>Indeed, in the 2nd snippet you don't have any lock protecting the read of cam->status, so it is accessed through a data race. Most platforms will let you get away with that in this particular example, but that has undefined semantics, by POSIX and by the memory model of the next C/C++ standards.</p> <p>In fact, a real race condition is possible if another thread allocates a new cam structure and overwrites cam; the waiting thread might see the update to the 'cam' pointer without seeing the initialization of cam->status. Indeed, the 2nd snippet is asking for trouble, in this case and in general.</p> <p><a href="http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/" rel="nofollow">http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/</a></p> http://stackoverflow.com/questions/126036/checking-stack-usage-at-compile-time/434848#434848 2 Answer by Blaisorblade for Checking stack usage at compile time Blaisorblade 2009-01-12T08:59:27Z 2009-01-12T08:59:27Z <p>Linux kernel code runs on a 4K stack on x86. Hence they care. What they use to check that, is a perl script they wrote, which you may find as scripts/checkstack.pl in a recent kernel tarball (2.6.25 has got it). It runs on the output of objdump, usage documentation is in the initial comment.</p> <p>I think I already used it for user-space binaries ages ago, and if you know a bit of perl programming, it's easy to fix that if it is broken.</p> <p>Anyway, what it basically does is to look automatically at GCC's output. And the fact that kernel hackers wrote such a tool means that there is no static way to do it with GCC (or maybe that it was added very recently, but I doubt so).</p> <p>Btw, with objdump from the mingw project and ActivePerl, or with Cygwin, you should be able to do that also on Windows and also on binaries obtained with other compilers.</p> http://stackoverflow.com/questions/434711/how-does-one-submit-a-potential-patch-to-the-linux-kernel/434820#434820 9 Answer by Blaisorblade for How does one submit a potential patch to the Linux kernel? Blaisorblade 2009-01-12T08:43:33Z 2009-01-12T08:43:33Z <p>Before anything else: concentrating about the performance bug report, and getting it right (with repeatable benchmarks) will at least help you to get people to bother with the problem. Also submit the patch after testing it, but beware that your great patch might use the wrong approach, and that they might write a better one. Or that simply it may be great, but might need fixes to get accepted, that even happens with uber-guys. And don't think to email somebody privately, but refer to LKML or to the appropriate subsystem ML.</p> <p>I'd suggest you to read through all other answers, and all applicable material, before contacting kernel developers; and read the bibliography of SubmittingPatches as well. They might be harsh if you do it wrong. The kernelnewbies IRC chat is a good place for you to start, because they are for sure welcoming, even if sometimes the environment can be too newbie-like (not sure, I've not been there so much).</p> <blockquote> <p>It may be that I'm being overly optimistic in thinking someone the kernel world's never heard of can contribute, but I'd be interested to find out.</p> </blockquote> <p>It's not overly optimistic; not in itself at least. Abstracting from you (since I don't know your skills), what is more unlikely is that your patch will be accepted without modifications, or that it's written according to the right skills. But actually, if your patch is addressed to a smaller community, it may be much easier.</p> <p>From somebody with some experience (i.e. me), before considering the patch submission, describe the problem and why it affects other applications. Considerations like "this improves our performance", especially if you qualify (vaguely) as a vendor, won't have appeal on kernel developers.</p> <p>Especially, omit such statements:</p> <blockquote> <p>rendering our current implementation workable, but less than optimal. this will buy you a "fix your code" recommendation immediately by most readers.</p> </blockquote> <p>If performance of an existing application (not written by you) is impacted, that's different. For instance, once Linus promptly paid attention to fixing in the kernel performance for screwed up code, because that code was part of make, even if he was proud of the code he had written and of the fact that he didn't need to do that exact fix. I.e., you need an application which everybody cares about, or a solution without disadvantages. So, stuff like:</p> <blockquote> <p>behavior from an another (very commonly used) application is good, as long as your usage of that application is not deemed unreasonable.</p> </blockquote> <p>Finally, if you refer to source code, they'll likely ask to see the interested section - think to license issues with your code, if they exist, and solve any of them beforehand if you want to answer them quickly.</p> <p>Btw, this is a partial account of my experience there: https://www.ohloh.net/accounts/Blaisorblade</p> <p>If you want, you can contact me to help you directly with a proposed mail, and CC me on the discussion. I'm quite busy, but I might find some more time :-).</p> http://stackoverflow.com/questions/403914/profile-linking-times-with-gcc-g-and-ld/434753#434753 1 Answer by Blaisorblade for profile linking times with gcc/g++ and ld Blaisorblade 2009-01-12T07:59:27Z 2009-01-12T07:59:27Z <p>If you have just hit your RAM limit, you'll be probably able to hear the disk working, and a system activity monitor will tell you that. But if linking is still CPU-bound (i.e. if CPU usage is still high), that's not the issue. And if linking is IO-bound, the most common culprit can be runtime info. Have a look at the executable size anyway.</p> <p>To answer your problem in a different way: are you doing heavy template usage? For each usage of a template with a different type parameter, a new instance of the whole template is generated, so you get more work for the linker. To make that actually noticeable, though, you'd need to use some library really heavy on templates. A lot of ones from the Boost project qualifies - I got template-based code bloat when using Boost::Spirit with a complex grammar. And ~4000 lines of code compiled to 7,7M of executable - changing one line doubled the number of specializations required and the size of the final executable. Inlining helped a lot, though, leading to 1,9M of output.</p> <p>Shared libraries might be causing other problems, you might want to look at documentation for -fvisibility=hidden, and it will improve your code anyway. From GCC manual for -fvisibility:</p> <blockquote> <pre><code> Using this feature can very substantially improve linking and load times of shared object libraries, produce more optimized code, provide near-perfect API export and prevent symbol clashes. It is *strongly* recommended that you use this in any shared objects you distribute. </code></pre> </blockquote> <p>In fact, the linker normally must support the possibility for the application or for other libraries to override symbols defined into the library, while typically this is not the intended usage. Note that using that is not for free however, it does require (trivial) code changes.</p> <p>The link suggested by the docs is: <a href="http://gcc.gnu.org/wiki/Visibility" rel="nofollow">http://gcc.gnu.org/wiki/Visibility</a></p> http://stackoverflow.com/questions/409309/what-compilers-besides-gcc-can-vectorize-code/434426#434426 0 Answer by Blaisorblade for What compilers besides gcc can vectorize code? Blaisorblade 2009-01-12T04:19:29Z 2009-01-12T04:19:29Z <p>Actually, in many cases GCC used to be quite worse than ICC for automatic code vectorization, I don't know if it recently improved enough, but I doubt it.</p> http://stackoverflow.com/questions/233258/is-there-an-acceptable-limit-for-memory-leaks/434387#434387 0 Answer by Blaisorblade for Is there an acceptable limit for memory leaks? Blaisorblade 2009-01-12T03:50:12Z 2009-01-12T03:50:12Z <p>It does look like SDL developers don't use Valgrind, but I basically only care about those 120 bytes lost.</p> <blockquote> <p>With this in mind, I've been running my 'Hello world' programs through Valgrind to catch any leaks, and although I've removed everything except the most basic SDL_Init() and SDL_Quit() statements, Valgrind still reports 120 bytes lost and 77k still reachable.</p> </blockquote> <p>Well, with Valgrind, "still reachable memory" is often not really leaked memory, especially in such a simple program. I can bet safely that there is basically no allocation in SDL_Quit(), so the "leaks" are just structures allocated once by SDL_Init().</p> <p>Try adding useful work and seeing if those amounts increase; try making a loop of useful work (like creating and destroying some SDL structure) and see if the amount of leaks grows with the amount of iterations. In the latter case, you should check the stack traces of the leaks and fix them.</p> <p>Otherwise, those 77k leaks count as "memory which should be freed at program end, but for which they rely on the OS to free it.</p> <p>So, actually, I'm more worried right now by those 120 bytes, if they are not false positives, and they are usually few. False positives with Valgrind are mostly cases where usage of uninitialized memory is intended (for instance because it is actually padding).</p> http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/434352#434352 2 Answer by Blaisorblade for Are memory leaks ever ok? Blaisorblade 2009-01-12T03:23:01Z 2009-01-12T03:23:01Z <p>While most answers concentrate on real memory leaks (which are not OK ever, because they are a sign of sloppy coding), this part of the question appears more interesting to me:</p> <blockquote> <p>What if you allocate some memory and use it until the very last line of code in your application (for example, a global object's deconstructor)? As long as the memory consumption doesn't grow over time, is it OK to trust the OS to free your memory for you when your application terminates (on Windows, Mac, and Linux)? Would you even consider this a real memory leak if the memory was being used continuously until it was freed by the OS.</p> </blockquote> <p>If the associated memory is used, you cannot free it before the program ends. Whether the free is done by the program exit or by the OS does not matter. As long as this is documented, so that change don't introduce real memory leaks, and as long as there is no C++ destructor or C cleanup function involved in the picture. A not-closed file might be revealed through a leaked <code>FILE</code> object, but a missing fclose() might also cause the buffer not to be flushed. </p> <p>So, back to the original case, it is IMHO perfectly OK in itself, so much that Valgrind, one of the most powerful leak detectors, will treat such leaks only if requested. On Valgrind, when you overwrite a pointer without freeing it beforehand, it gets considered as a memory leak, because it is more likely to happen again and to cause the heap to grow endlessly.</p> <p>Then, there are not nfreed memory blocks which are still reachable. One could make sure to free all of them at the exit, but that is just a waste of time in itself. The point is if they could be freed <em>before</em>. Lowering memory consumption is useful in any case.</p> http://stackoverflow.com/questions/433595/function-application-why-is-used-here/433893#433893 3 Answer by Blaisorblade for Function application: Why is $ used here? Blaisorblade 2009-01-11T22:43:27Z 2009-01-12T02:44:13Z <p>I'd like to explain why IMHO this is not the used style there:</p> <pre><code>instance Monad [] where xs &gt;&gt;= f = concat (map f xs) </code></pre> <p><code>concat . map f</code> is an example of so-called pointfree-style writing; where pointfree means "without the point of application". Remember that in maths, in the expression <code>y=f(x)</code>, we say that <code>f</code> is applied on the point <code>x</code>. In most cases, you can actually do a final step, replacing:</p> <pre><code>f x = something $ x </code></pre> <p>with </p> <pre><code>f = something </code></pre> <p>like <code>f = concat . map f</code>, and this is actually pointfree style. Which is clearer is arguable, but the pointfree style gives a different point of view which is also useful, so sometimes is used even when not exactly needed.</p> <p>EDIT: I have replaced pointless with pointfree and fixed some examples, after the comment by Alasdair, whom I should thank.</p> http://stackoverflow.com/questions/410982/is-there-a-difference-in-term-of-performance-between-unsigned-int-and-int-on/434246#434246 0 Answer by Blaisorblade for Is there a difference in term of performance between "unsigned int" and "int" on the IPhone? Blaisorblade 2009-01-12T02:12:28Z 2009-01-12T02:12:28Z <p>Since unsigned and signed int have the same size and basically the same performance, worrying about any possible optimization of this kind (if it were possibly, and it is not) at this stage is evil premature optimization (search for it on Google to learn more), even on an iPhone. Arguments about correctness and economy of thought come first, unless this is your topmost execution hotspot and you have measured an actual significant performance difference. Otherwise, this one is just a waste of time you could have spent for a 2x speedup by other means.</p> <p><hr> About the code posted by Hrvoje Prgeša:</p> <blockquote> <p>compiler could assume the signed overflows to INT_MIN</p> </blockquote> <p>That would be strange, since many program rely on 2's complement being used (I didn't know overflow was undefined behaviour, but that doesn't surprise me since 2's complement is not universal). Also, with unsigned vars the same would happen, wouldn't it? At least where two's complement is a safe assumption, the behaviour would be the same. Or is the behaviour of signed and unsigned overflow allowed to be different??</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434211#434211 0 Answer by Blaisorblade for Array of structs and new / delete Blaisorblade 2009-01-12T01:50:00Z 2009-01-12T01:50:00Z <blockquote> <p>Say I wanted to 'delete' an item, like so:</p> <blockquote> <p>items[5] = NULL;</p> </blockquote> </blockquote> <p>I know little Visual Basic, but that smells like a Visual Basic programming idiom, since "Set a = None" (or Null, I'm not sure) would delete the object pointed by a (or rather decrement its reference count, for COM objects).</p> <p><hr></p> <p>As somebody else noted, you should use either:</p> <pre><code>delete items[5]; items[5] = newContent; </code></pre> <p>or:</p> <pre><code>delete items[5]; items[5] = NULL; </code></pre> <p>After <code>delete[5]</code>, the only possible use of the pointer stored in <code>items[5]</code> is causing you trouble. What's worse is that it might happen to work at the beginning, and start failing only when you allocate something else over the space previously used by <code>*items[5]</code>. Those are the causes which make C/C++ programming "interesting", i.e. really annoying (even for who likes C like me).</p> <p>Writing just <code>delete items[5];</code> saves what can be an useless write, but that's a premature optimization.</p> http://stackoverflow.com/questions/434085/c-library-vs-winapi/434201#434201 1 Answer by Blaisorblade for C library vs WinApi Blaisorblade 2009-01-12T01:36:12Z 2009-01-12T01:36:12Z <p>A few additional points on some examples:</p> <blockquote> <p>FillMemory, ZeroMemory</p> </blockquote> <p>Neither these nor the C functions are system calls, so either one might be implemented on top of the other, or they could even have different implementations, coming from a common source or not.</p> <blockquote> <p>GlobalAlloc</p> </blockquote> <p>Since malloc() is built on top of operating system primitives exposed by its API, it would be interesting to know if malloc() and direct usage of such allocators coexist happily without problems. I might imagine of some reasons why malloc might silently assume that the heap it accesses is contiguous, even if I would call that a design bug, even if it were documented, unless the additional cost for the safety were non insignificant.</p> http://stackoverflow.com/questions/204256/why-use-boolean-instead-of-char/434182#434182 3 Answer by Blaisorblade for Why use boolean instead of char? Blaisorblade 2009-01-12T01:20:44Z 2009-01-12T01:20:44Z <p><strong>About <code>boolean</code></strong></p> <p>Most other answers get it wrong - alignment and speed is why a programmer should stick to int for loop counters, not why the compiler can make a byte be 4-bytes wide. All of your reasonings, in fact, apply to byte and short as well as boolean.</p> <p>In C# at least, bool (or System.Boolean) is a 1-byte wide builtin structure, which can be automatically boxed, so you have an object (which needs two memory words to be represented, at the very least, i.e. 8/16 bytes on 32/64 bits environments respectively) with a field (at least one byte) plus one memory word to point to it, i.e. in total at least 13/25 bytes.</p> <p>That's indeed the 1st Google entry on "C# primitive types". <a href="http://msdn.microsoft.com/en-us/library/ms228360" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms228360</a>(VS.80).aspx</p> <p>Also the quoted link (<a href="http://geekswithblogs.net/cwilliams/archive/2005/09/18/54271.aspx" rel="nofollow">http://geekswithblogs.net/cwilliams/archive/2005/09/18/54271.aspx</a>) also states that a boolean, by the CLI standard, takes 1 byte.</p> <p>Actually, however, the only place where this is visible is on arrays of booleans - n booleans would take n bytes. In the other cases, one boolean may take 4 bytes.</p> <ul> <li>Inside a structure, most runtimes (also in Java) would align all fields to a 4 byte boundary for performance. The Monty JVM for embedded devices is wiser - I guess it reorders fields optimally. <ul> <li>On the local frame/operand stack for the interpreter, in most implementation, for performance, one stack entry is one memory-word wide (and maybe on .NET it must be 64-bit wide to support double and long, which on .NET uses just 1 stack entry instead of 2 in Java). A JIT compiler can instead use 1 byte for boolean locals while keeping other vars aligned by reordering fields without performance impact, if the additional overhead is worth it.</li> </ul></li> </ul> <p><strong>About <code>char</code></strong></p> <p><code>char</code> are two bytes because when support for internationalization is required, using two-byte characters internally is the safest bet. This is not related directly to choosing to support Unicode, but to the choice to stick to UTF-16 and to the Basic Multilingual Plane. In Java and C#, you can assume all the time that one logical char fits into a variable of type char.</p> http://stackoverflow.com/questions/433895/why-are-c-character-literals-ints-instead-of-chars/433954#433954 1 Answer by Blaisorblade for Why are C character literals ints instead of chars? Blaisorblade 2009-01-11T23:07:13Z 2009-01-11T23:07:13Z <p>I didn't know this indeed. Before prototypes existed, anything narrower than an int was converted to an int when using it as a function argument. That may be part of the explanation.</p> http://stackoverflow.com/questions/433618/encoded-string-handling-in-c-questions-best-practices/433870#433870 3 Answer by Blaisorblade for (Encoded) String handling in C++ - questions / best practices? Blaisorblade 2009-01-11T22:31:29Z 2009-01-11T22:31:29Z <p>For a shorter answer, I would just recommend using UTF-16 for simplicity; Java/C#/Python 3.0 switched to that model exactly for simplicity. I've always expected wchar_t to be 16 or 32bit wide, and many platforms support that; indeed, APIs like wcrtomb() do not allow an implementation to support a shift state for wchar_t*, but since UTF-8 needs none, it may be used, while other encodings are ruled out.</p> <p>Then, I answer the question about XML.</p> <blockquote> <p>File input/output of text and XML files, which may be written in different encodings. What is the recommended way of handling this, and how to retrieve the values? I guess, a XML node may contain UTF-16 text, and then I have to work with it somehow.</p> </blockquote> <p>I'm not sure, but I don't think so. Mixing two encodings in the same file is asking for trouble and data corruption. Encoding a file in UTF-16 is usually a bad choice since most programs rely on using ASCII everwhere. The issue is: an XML file might use any single encoding, maybe even UTF-16, but then also the initial encoding declaration has to use UTF-16, and even the tags then. The problem I see with UTF-16 is: how should one reliable parse the initial declaration? The answer comes in the specification:, § 4.3.3:</p> <blockquote> <p>In the absence of information provided by an external transport protocol (e.g. HTTP or MIME), it is a fatal error for an entity including an encoding declaration to be presented to the XML processor in an encoding other than that named in the declaration, or for an entity which begins with neither a Byte Order Mark nor an encoding declaration to use an encoding other than UTF-8. Note that since ASCII is a subset of UTF-8, ordinary ASCII entities do not strictly need an encoding declaration.</p> </blockquote> <p>When reading that, note that also an XML file is an entity, called the document entity; in general, an entity is a storage unit for the document. From the whole specification, I'd say that only one encoding declaration is allowed for each entity, and I'd convert all entities to UTF-16 when reading them for easier handling.</p> <p>Webography:</p> <ul> <li><a href="http://www.w3.org/TR/REC-xml/" rel="nofollow">http://www.w3.org/TR/REC-xml/</a>, XML spec.</li> <li><a href="http://www.xml.com/axml/testaxml.htm" rel="nofollow">http://www.xml.com/axml/testaxml.htm</a>, Annotated XML spec.</li> </ul> http://stackoverflow.com/questions/433618/encoded-string-handling-in-c-questions-best-practices/433830#433830 1 Answer by Blaisorblade for (Encoded) String handling in C++ - questions / best practices? Blaisorblade 2009-01-11T22:09:23Z 2009-01-11T22:09:23Z <blockquote> <p>String algorithms for UTF-8 etc. strings -- computing the length, parsing, etc. How is this done best?</p> </blockquote> <p>mbrlen gives you the length of a C string. I don't think std::string can be used for multibyte strings, you should use wstring for wide ones.</p> <p>In general, you should probaby stick with UTF-16 inside your program and use UTF-8 only on I/O (I don't know well other options, but they are surely more complex and error-prone).</p> <blockquote> <p>How to handle char* strings. After all, this can be unsigned or not, and I wonder how I determine what encoding they use (ANSI?), and how to convert to UTF-8? Is there any recommended reading on this, where the basic guarantees of C/C++ about strings are documented?</p> </blockquote> <p>Basically, you can use any encoding, and you will happen to use the native encoding of the system on which you are running on, as long as it's an 8-bit encoding. C was born for ASCII, and locale handling was an afterthought. For years, each system understood mostly one native encoding, say ISO-8859-x, and files from another encoding could even be non-representable.</p> <p>Since for UTF-8 strings one byte is not always one character, I <em>guess</em> that the safest bet is to use multibyte string for them. The C manuals I used described multibyte string in abstract, without details on those issues (in particular, on the used encoding). For C, see functions like mbrlen and mbrtowc. On my Linux system, it is noted that their behaviour depends on LC_CTYPE, and this probably means that the native type of multibyte strings. From the documentation it can be inferred that their API supports also encodings where you can shift from one-byte to two-bytes and back.</p> <blockquote> <p>How to handle char* strings. After all, this can be unsigned or not,</p> </blockquote> <p>If you rely on signedness of char, you're doing it wrong. Signedness of chars only matters if you use char as a numeric type, and then you should always use either unsigned or signed chars; in fact, you should pretend that plain char is neither unsigned nor signed, and that an expression like <code>a &gt; 0</code> (if a is a char) has undefined semantics. But what would it be useful for, anyway?</p> http://stackoverflow.com/questions/455781/are-there-o1-random-access-data-structures-that-dont-rely-on-contiguous-storag/455796#455796 Comment by Blaisorblade on Are there O(1) random access data structures that don't rely on contiguous storage? Blaisorblade 2009-01-19T00:52:23Z 2009-01-19T00:52:23Z And you can call that a radix tree (well, page tables <i>are</i> a radix tree indeed)., even if not so flexible :-D http://stackoverflow.com/questions/423335/what-can-c-do-that-is-too-hard-or-messy-in-any-other-language/423397#423397 Comment by Blaisorblade on What can C++ do that is too hard or messy in any other language? Blaisorblade 2009-01-19T00:32:38Z 2009-01-19T00:32:38Z A preprocessor runs before the compiler, and template handling is done by the compiler proper - templates have to be processed in various phases of compilation, for instance typechecking. So please stop this nonsense about two preprocessor runs. I downvoted the answer just for this. http://stackoverflow.com/questions/423335/what-can-c-do-that-is-too-hard-or-messy-in-any-other-language/423580#423580 Comment by Blaisorblade on What can C++ do that is too hard or messy in any other language? Blaisorblade 2009-01-19T00:27:36Z 2009-01-19T00:27:36Z Has any of you benchmarked those? A recent paper showed that most such allocators are not any faster and often slower than system ones. http://stackoverflow.com/questions/132241/hidden-features-of-c/132844#132844 Comment by Blaisorblade on Hidden features of C Blaisorblade 2009-01-19T00:26:09Z 2009-01-19T00:26:09Z Both forms are correct for the 1st, but the one shown is not really tricky, just unusual to see maybe but obvious to understand. http://stackoverflow.com/questions/132241/hidden-features-of-c/226888#226888 Comment by Blaisorblade on Hidden features of C Blaisorblade 2009-01-19T00:24:54Z 2009-01-19T00:24:54Z You have an extra 'R' in <b>VA_ARGS</b>. http://stackoverflow.com/questions/132241/hidden-features-of-c/135336#135336 Comment by Blaisorblade on Hidden features of C Blaisorblade 2009-01-19T00:23:43Z 2009-01-19T00:23:43Z To be exact, &quot;don't get along&quot; means &quot;this code might be actually miscompiled&quot;, because it's undefined behaviour in C. http://stackoverflow.com/questions/132241/hidden-features-of-c/207983#207983 Comment by Blaisorblade on Hidden features of C Blaisorblade 2009-01-19T00:20:44Z 2009-01-19T00:20:44Z The compiler can't optimize this converting by-value passing with by-referenece, unless it can do global optimizations. http://stackoverflow.com/questions/132241/hidden-features-of-c/132306#132306 Comment by Blaisorblade on Hidden features of C Blaisorblade 2009-01-19T00:17:48Z 2009-01-19T00:17:48Z To solve most of those, make those assumptions dependant on the characteristics of your platform, and describe each platform in his own header. Order execution is an exception - never rely on that; on the other ideas, each platform needs having a reliable decision. http://stackoverflow.com/questions/455409/do-you-use-source-control-for-your-home-projects/456049#456049 Comment by Blaisorblade on Do you use source control for your home projects? Blaisorblade 2009-01-19T00:05:25Z 2009-01-19T00:05:25Z Also SVK can do the same with an SVN repository. But it's not so well maintained - I've found a few bugs in non-default situations. http://stackoverflow.com/questions/432173/what-are-the-disadvantages-of-the-spirit-parser-generator-framework-from-boost-or/438532#438532 Comment by Blaisorblade on What are the disadvantages of the Spirit parser-generator framework from boost.org? Blaisorblade 2009-01-16T05:42:36Z 2009-01-16T05:42:36Z You're always welcome! http://stackoverflow.com/questions/9846/performance-critical-gui-application-windows-linux/10206#10206 Comment by Blaisorblade on Performance critical GUI application (windows,linux) Blaisorblade 2009-01-16T04:44:18Z 2009-01-16T04:44:18Z Profiling and optimizing the algorithms and the hotspot in your C++ stuff will probably have a bigger impact than language choice, in general (given a reasonably efficient language - say, Python/JavaScript don't qualify). http://stackoverflow.com/questions/9846/performance-critical-gui-application-windows-linux/9894#9894 Comment by Blaisorblade on Performance critical GUI application (windows,linux) Blaisorblade 2009-01-16T04:42:08Z 2009-01-16T04:42:08Z Given that the article mentions the HyperThreaded instruction set, I think that there might be more reliable sources. http://stackoverflow.com/questions/449202/how-would-you-represent-a-hashtable-collection-in-a-database-schema/449275#449275 Comment by Blaisorblade on How would you represent a hashtable collection in a database schema? Blaisorblade 2009-01-16T04:23:24Z 2009-01-16T04:23:24Z Doing proximity searches that way would be dead slow - you can't use an index, it's a full table scan AND calculation. Support for geolocation could make it faster. http://stackoverflow.com/questions/9846/performance-critical-gui-application-windows-linux/159825#159825 Comment by Blaisorblade on Performance critical GUI application (windows,linux) Blaisorblade 2009-01-16T04:05:51Z 2009-01-16T04:05:51Z Using nonportable libraries when portability might be a concern? Keep it simple doesn't apply. Given <i>any</i> reasonable choice, the implementation cost for the UI is the same, and it's the same as the porting cost. The support of WinForms should be investigated before the choice, indeed. http://stackoverflow.com/questions/9846/performance-critical-gui-application-windows-linux/9887#9887 Comment by Blaisorblade on Performance critical GUI application (windows,linux) Blaisorblade 2009-01-16T04:01:25Z 2009-01-16T04:01:25Z Well, such a claim about GTK# is quite strange. I don't know the C# bindings, but GTK+ is a very mature platform on Linux - if you've ever seen an Ubuntu desktop that's pure GTK+, and some new apps (Beagle) are in GTK#. I don't know WPF though.