User Carl Seleborg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T04:32:22Zhttp://stackoverflow.com/feeds/user/2095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825611/pros-and-cons-of-go-rejecting-unused-dependencies7Pros and cons of Go rejecting unused dependenciesCarl Seleborg2009-12-01T11:36:37Z2009-12-01T19:33:50Z
<p>Google's new language <a href="http://golang.org/" rel="nofollow">Go</a> tries to make dependencies management easier by <a href="http://golang.org/doc/go%5Fspec.html#Import%5Fdeclarations" rel="nofollow">explicitly requiring that all dependencies listed in a module actually be used</a>. The compiler will reject a module that declares a dependency to a module without using anything from that module.</p>
<blockquote>
<p>It is illegal for a package to import itself or to import a package without referring to any of its exported identifiers.</p>
</blockquote>
<p>I can think of some obvious advantages (e.g. cleaner modules) but maybe there are some non-obvious ones. The only disadvantage I can think of is having an overly pedantic compiler, complaining too much during refactoring, but maybe there are more?</p>
<p>Do you have any experience with other languages enforcing this? What are the pros and cons of this approach?</p>
http://stackoverflow.com/questions/1798729/c-message-passing-doubts/1798794#17987940Answer by Carl Seleborg for C++ message passing doubtsCarl Seleborg2009-11-25T17:57:52Z2009-11-25T17:57:52Z<p>The simplest policy to deal with is <strong>copying</strong> the entire message (deep copy) and send that copy to the recipient. It will require more allocation, but it frees you from many problems related to concurrent access to data. If performance gets critical, there is still room for some optimizations (like avoiding copies if the object only has one owner who is willing to give up ownership of it when sending it, etc).</p>
<p>Each owner is then responsible for cleaning up the message object.</p>
http://stackoverflow.com/questions/1562023/how-to-see-what-g-command-lines-boost-build-invokes-1-33-10How to see what g++ command-lines Boost.Build invokes (1.33.1)Carl Seleborg2009-10-13T18:16:57Z2009-11-13T09:56:40Z
<p>Hi,</p>
<p>I'm scratching my head, trying to figure out why the import libraries are not generated when I build the Boost libraries on my machine. More specifically, building the DLLs works fine, but where I would previously (i.e. before I reinstalled my machine) generate the import libraries correctly.</p>
<p>Some specs:</p>
<ul>
<li>Boost 1.33.1</li>
<li>g++ 4.3.3 TDM-1 release for Windows</li>
<li>Building with <code>gcc</code> toolset from MS Dos command-line prompt</li>
<li>UnxUtils (after 14-04-03)</li>
</ul>
<p>The command-line that invokes bjam.exe looks like this:</p>
<pre><code>"C:\.../boost_1_33_1/tools/build/jam_src/bin.ntx86/bjam.exe" --debug-configuration -d2 -q --builddir=C:/.../trunk/XTemp/gcc.debug/boost_1_33_1 toolset=gcc threading=multi define=BOOST_WINDOWS define=_GLIBCXX__PTHREADS linkflags=-shared-libgcc runtime-link=shared variant=debug --v2 linkflags=-out-implib=boost_thread.lib
</code></pre>
<p>This used to work wonderfully before and produced the desired file <code>boost_thread.lib</code>, but not anymore. I really don't know what's going on and <strong>I would like to know exactly what the linker receives on the command-line and what it thinks it should do with it</strong>.</p>
<p>Thanks,</p>
<p>Carl</p>
http://stackoverflow.com/questions/1688831/os-x-do-sections-in-the-text-segment-get-modified-by-other-programs0OS X: Do sections in the __TEXT segment get modified by other programs?Carl Seleborg2009-11-06T16:45:44Z2009-11-08T19:47:14Z
<p>Hi,</p>
<p>Does it happen that some program (or even the OS itself) changes the contents of an executable's __TEXT segment, for whatever reason? </p>
<ul>
<li>Note: Here, I'm referring to the "__TEXT" segment, not the "__text" section.</li>
</ul>
<p>In other words: can I rely on bytes in the __TEXT segment of my executable to detect whether my executable has been damaged (say by computing a checksum on that segment), or is there a chance I get false positives because this segment may be modified after the program has been installed on the user's computer?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/541099/how-to-get-eclipse-to-give-cygwins-gdb-a-posix-path-to-the-executable0How to get Eclipse to give Cygwin's GDB a posix path to the executable?Carl Seleborg2009-02-12T12:49:58Z2009-10-31T12:00:18Z
<p>I'm using Eclipse on Windows to program C++ using Cygwin's toolchain. I would like to use it for debugging as well, but my problem is the following:</p>
<ul>
<li>The executable to debug is in a sub-folder of the workspace (pretty standard, I guess) but not of the actual Project from which the executable is built.</li>
<li>Eclipse and GDB have different path formats: Eclipse works with Windows paths, whereas GDB works with posix paths. Eclipse knows <code>D:\Path\To\Exe</code> whereas GDB needs <code>/cygdrive/d/Path/To/Exe</code>.</li>
<li>Eclipse <strong>insists</strong> that it can find the executable to debug when I enter the path in the "Debug configurations..." dialog. The "Debug" button is disabled until the path is correct.</li>
<li>Eclipse does not seem to take <code>${workspace_loc}</code> in that particular input box.</li>
</ul>
<p>Is there some hidden option I don't know about? Have you had the problem before?</p>
<h1>What I've tried so far</h1>
<ul>
<li>Forcing Eclipse to pass the path I input to GDB --- <strong>did not work.</strong></li>
<li>Fiddling with source lookup paths and path mappings --- <strong>did not work</strong>, it's really just for source files.</li>
<li>Creating a C++ Project for the output folder where the executable is, so I could have a relative path to the exe inside the project --- <strong>did not work.</strong></li>
</ul>
<h1>Things I could still try</h1>
<ul>
<li>Use the <code>.gdbinit</code> file to discard the path given by Eclipse and load the real executable with posix paths --- tried that, but not very hard.</li>
<li>Specify a wrapper as argument to GDB --- pollutes the root of my workspace.</li>
<li>Provide my own plug-in to deal with the case --- adds another piece of code to maintain in another language.</li>
</ul>
http://stackoverflow.com/questions/541099/how-to-get-eclipse-to-give-cygwins-gdb-a-posix-path-to-the-executable/1654184#16541840Answer by Carl Seleborg for How to get Eclipse to give Cygwin's GDB a posix path to the executable?Carl Seleborg2009-10-31T12:00:18Z2009-10-31T12:00:18Z<p>The problem went away when upgrading to Eclipse Ganymede.</p>
http://stackoverflow.com/questions/1569035/what-makes-erlang-suitable-for-soft-real-time-applications4What makes Erlang suitable for soft real-time applications?Carl Seleborg2009-10-14T21:12:43Z2009-10-27T11:51:08Z
<h1>Some background</h1>
<p>I'm working on building a programming language for digital media programming, which should support concurrency using no-sharing message passing and soft real-time (i.e. do your best to compute audio/video without losing samples or frames and with a constant throughput).</p>
<p>It turns out that both these features are surprisingly difficult to combine, mainly because of one particular constraint: real-time code should not dynamically allocate memory.</p>
<p>My language should make it easy to implement something like this:</p>
<ul>
<li>One thread computes audio samples based on parameters. These can be, for example, the values of different controls of a synthesizers. This thread runs "in real time".</li>
<li>One thread receives input from the user or from another computer to change those values. This could be the GUI thread, for instance, reacting to the user turning in a knob with the mouse.</li>
</ul>
<p>I want the new values set by the user to be sent through a queue to the synthesizer engine. Now the problem would not be interesting if I only wanted to send floats and other atomic values. Actually, I want <em>any</em> kind of data to be able to flow from one thread to another, even a complex object or a data structure, and this should be possible for any configuration of threads and priorities. Without dynamic memory allocation on the real-time side, this becomes very difficult without imposing what seems like arbitrary restrictions on the programmer.</p>
<p>Erlang is often advertized as a good fit for real-time systems. My understanding is that Erlang does never, however, disallow memory allocation. If I did the same, it would make lots of problems go away, at the cost of introducing non-deterministic timing in the code that performs those allocation.</p>
<h1>The question</h1>
<p>So what makes Erlang such a good fit? Does it implement special tricks to circumvent the problems induced by memory allocation, or does it ignore the problem entirely? Does it take another approach to real-time?</p>
<h1>An example to illustrate the question</h1>
<p>Let's assume that we're writing a synthesizer in Erlang, which has to produce 64 samples every 50 milliseconds, otherwise there's cracks and pops in the sound. Let's assume also that when I move some slider around on the string, a small object (let's say it's a list or a tuple containing the parameter's name and new value) has to be sent out from the GUI process to the audio process, where a copy is created. This would requrie dynamic memory allocation. How would Erlang help me make sure that this allocation does not delay my audio computation?</p>
http://stackoverflow.com/questions/1626248/does-gcc-inline-c-functions-without-the-inline-keyword3Does GCC inline C++ functions without the 'inline' keyword?Carl Seleborg2009-10-26T17:49:07Z2009-10-26T18:04:03Z
<p>Does GCC, when compiling C++ code, ever try to optimize for speed by choosing to inline functions that are not marked with the <code>inline</code> keyword?</p>
http://stackoverflow.com/questions/472015/new-on-stack-instead-of-heap-like-alloca-vs-malloc/1617616#16176161Answer by Carl Seleborg for new on stack instead of heap (like alloca vs malloc)Carl Seleborg2009-10-24T10:35:47Z2009-10-24T10:35:47Z<p><strong>Be careful when using <code>_alloca()</code> with GCC</strong></p>
<p>GCC has a <a href="http://gcc.gnu.org/bugzilla/show%5Fbug.cgi?id=19774" rel="nofollow">bug which makes <code>_alloca()</code> incompatible with SJLJ exception handling</a> in C++ (Dwarf2 is reported to work correctly). When an exception is thrown out of the function allocating the memory, the bug causes stack corruption before the destructors get to run. This means that any RAII class working on the allocated object(s) has to <strong>run in another function</strong> to work properly. The proper way of doing it looks like this:</p>
<pre><code>void AllocateAndDoSomething()
{
Foo* pFoo = reinterpret_cast<Foo*>(_alloca(sizeof(Foo)));
new (pFoo) Foo;
// WARNING: This will not work correctly!
// ScopedDestructor autoDestroy(pFoo);
// pFoo->DoSomething();
// Instead, do like this:
DoSomething(pFoo);
}
void DoSomething(Foo* pFoo)
{
// Here, destruction will take place in a different call frame, where problems
// with _alloca() automatic management do not occur.
ScopedDestructor autoDestroy(pFoo);
pFoo->DoSomething();
}
</code></pre>
http://stackoverflow.com/questions/55922/how-to-keep-concentrated-and-focused-while-waiting-for-your-compiler19How to keep concentrated and focused while waiting for your compiler?Carl Seleborg2008-09-11T07:03:17Z2009-10-16T20:13:20Z
<p>When I'm working on software, I find that as soon as I have to wait more than around 6 seconds for the compiler or for the program to start (or simply for Visual Studio to process some really complicated command like, say, Space Bar), I tend to fire up the email client, or go read stuff on the Internet, or post questions on StackOverflow.</p>
<p>Do you know the problem? How do you keep focused? Is there some maintenance task that can be done in the meantime that does not get in the way of your concentration?</p>
<p>(My build is finished, I can go back to working now)</p>
<p>Carl</p>
http://stackoverflow.com/questions/1519996/how-do-i-initialize-number-with-nan-in-borland-c/1520009#15200094Answer by Carl Seleborg for How do I initialize number with NaN in Borland C++?Carl Seleborg2009-10-05T13:13:43Z2009-10-05T13:13:43Z<p>You can look at <code>std::numeric_limits<double>::quiet_NaN()</code>. Include <code><limits></code>.</p>
http://stackoverflow.com/questions/1492591/c-templates-header-files-still-broken/1492621#14926212Answer by Carl Seleborg for c++ templates: header files still broken?Carl Seleborg2009-09-29T13:38:36Z2009-09-29T13:38:36Z<p>You are referring to exported templates (using the <code>export</code> keyword), which seem to be supported only by Comeau C++ (according to <a href="http://www.parashift.com/c++-faq-lite/templates.html" rel="nofollow">this section</a> of the <a href="http://www.parashift.com/c++-faq-lite" rel="nofollow">C++ FAQ Lite</a>).</p>
<p>A common technique to keep the interface devoid of implementation code is to put the inline function definitions into a separate "implementation" header that can be included at the end of the declaration header.</p>
http://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important/62577#625775Answer by Carl Seleborg for What is the Dependency Inversion Principle and why is it important?Carl Seleborg2008-09-15T12:57:45Z2009-09-14T10:17:12Z<p>Check this document out: <a href="http://www.objectmentor.com/resources/articles/dip.pdf" rel="nofollow">The Dependency Inversion Principle</a>.</p>
<p>It basically says:</p>
<ul>
<li>High level modules should not depend upon low-level modules. Both should depend upon abstractions.</li>
<li>Abstractions should never depend upon details. Details should depend upon abstractions.</li>
</ul>
<p>As to why it is important, in short: changes are risky, and by depending on a concept instead of on an implementation, you reduce the need for change at call sites.</p>
<p>Effectively, the DIP reduces coupling between different pieces of code. The idea is that although there are many ways of implementing, say, a logging facility, the way you would use it should be relatively stable in time. If you can extract an interface that represents the concept of logging, this interface should be much more stable in time than its implementation, and call sites should be much less affected by changes you could make while maintaining or extending that logging mechanism.</p>
<p>By also making the implementation depend on an interface, you get the possibility to choose at run-time which implementation is better suited for your particular environment. Depending on the cases, this may be interesting too.</p>
<p>Cheers,</p>
<p>Carl</p>
http://stackoverflow.com/questions/457020/how-lean-do-my-c-exception-classes-really-need-to-be7How lean do my C++ exception classes really need to be?Carl Seleborg2009-01-19T09:36:49Z2009-09-06T14:39:18Z
<p>There are lots of places where guidelines for designing exception classes can be found. Almost everywhere I look, there's this list of things exception objects should never do, which impacts the design of those classes.</p>
<p>For instance, the <a href="http://www.boost.org/community/error_handling.html" rel="nofollow">Boost people recommend</a> that the class contain no <code>std::string</code> members, because their constructor could throw, which would cause the run-time to terminate the program immediately.</p>
<p>Now, it seems to me that this is rather theoretical. If <code>std::string</code>'s constructor throws, it's either a bug (I passed a null-pointer in) or an out-of-memory condition (correct me if I'm wrong here). Since I'm on a desktop, I just pretend I have an infinite amount of memory, and <strong>running out of memory is fatal to my application no matter what</strong>.</p>
<p>With that in mind, why shouldn't I embed <code>std::string</code> objects in my exception classes? In fact, why couldn't my exception classes be full-featured, and also take care of logging, stack tracing, etc. I'm aware of the one-responsibility principle, and it seems to me to be a fair trade-off to have the exception class do all that. Surely, if my parser needs to report a syntax error, an full-featured exception would be more helpful than an exception built around a statically allocated character array.</p>
<p>So: lean C++ exception classes - how big a deal is it in the real-world? What are the trade-offs? Are there good discussions on the topic?</p>
http://stackoverflow.com/questions/43322/whats-safe-for-a-c-plug-in-system15What's safe for a C++ plug-in system?Carl Seleborg2008-09-04T08:04:45Z2009-08-17T03:20:59Z
<p>Plug-in systems in C++ are hard because the ABI is not properly defined, and each compiler (or version thereof) follows its own rules. However, COM on Windows shows that it's possible to create a minimal plug-in system that allows programmers with different compilers to create plug-ins for a host application using a simple interface.</p>
<p>Let's be practical, and leave the C++ standard, which is not very helpful in this respect, aside for a minute. If I want to write an app for Windows and Mac (and optionally Linux) that supports C++ plug-ins, and if I want to give plug-in authors a reasonably large choice of compilers (say less than 2 year old versions of Visual C++, GCC or Intel's C++ compiler), what features of C++ could I count on?</p>
<p>Of course, I assume that plug-ins would be written for a specific platform.</p>
<p>Off the top of my head, here are some C++ features I can think of, with what I think is the answer:</p>
<ul>
<li>vtable layout, to use objects through abstract classes? (yes)</li>
<li>built-in types, pointers? (yes)</li>
<li>structs, unions? (yes)</li>
<li>exceptions? (no)</li>
<li>extern "C" functions? (yes)</li>
<li>stdcall non-extern "C" functions with built-in parameter types? (yes)</li>
<li>non-stdcall non-extern "C" functions with user-defined parameter types? (no)</li>
</ul>
<p>I would appreciate any experience you have in that area that you could share. If you know of any moderately successful app that has a C++ plug-in system, that's cool too.</p>
<p>Carl</p>
http://stackoverflow.com/questions/1273385/how-to-ensure-that-virtual-method-calls-get-propagated-all-the-way-to-the-base-cl5How to ensure that virtual method calls get propagated all the way to the base class?Carl Seleborg2009-08-13T17:17:34Z2009-08-14T16:14:43Z
<p>One very common mistake with class hierarchies is to specify a method in a base class as being virtual, in order for <strong>all</strong> overrides in the inheritance chain to do some work, and forgetting to propagate the call on to base implementations.</p>
<h3>Example scenario</h3>
<pre><code>class Container
{
public:
virtual void PrepareForInsertion(ObjectToInsert* pObject)
{
// Nothing to do here
}
};
class SpecializedContainer : public Container
{
protected:
virtual void PrepareForInsertion(ObjectToInsert* pObject)
{
// Set some property of pObject and pass on.
Container::PrepareForInsertion(pObject);
}
};
class MoreSpecializedContainer : public SpecializedContainer
{
protected:
virtual void PrepareForInsertion(ObjectToInsert* pObject)
{
// Oops, forgot to propagate!
}
};
</code></pre>
<p>My question is: <strong>is there a good way/pattern to ensure that the base implementation always gets called at the end of the call chain?</strong></p>
<p>I know of two methods to do this.</p>
<h3>Method 1</h3>
<p>You can use a member variable as a flag, set it to the correct value in the base implementation of the virtual method, and check its value after the call. This requires to use a public non-virtual method as interface for the clients, and making the virtual method protected (which is actually a good thing to do), but it requires the use of a member variable specifically for this purpose (which needs to be mutable if the virtual method must be const).</p>
<pre><code>class Container
{
public:
void PrepareForInsertion(ObjectToInsert* pObject)
{
m_callChainCorrect = false;
PrepareForInsertionImpl(pObject);
assert(m_callChainCorrect);
}
protected:
virtual void PrepareForInsertionImpl(ObjectToInsert* pObject)
{
m_callChainCorrect = true;
}
private:
bool m_callChainCorrect;
};
class SpecializedContainer : public Container
{
protected:
virtual void PrepareForInsertionImpl(ObjectToInsert* pObject)
{
// Do something and pass on
Container::PrepareForInsertionImpl(pObject);
}
};
</code></pre>
<h3>Method 2</h3>
<p>The other way to do it is to replace the member variable with an opaque "cookie" parameter and do the same thing:</p>
<pre><code>class Container
{
public:
void PrepareForInsertion(ObjectToInsert* pObject)
{
bool callChainCorrect = false;
PrepareForInsertionImpl(pObject, &callChainCorrect);
assert(callChainCorrect);
}
protected:
virtual void PrepareForInsertionImpl(ObjectToInsert* pObject, void* pCookie)
{
*reinrepret_cast<bool*>(pCookie) = true;
}
};
class SpecializedContainer : public Container
{
protected:
virtual void PrepareForInsertionImpl(ObjectToInsert* pObject, void* pCookie)
{
// Do something and pass on
Container::PrepareForInsertionImpl(pObject, pCookie);
}
};
</code></pre>
<p>This approach is inferior to the first one in my opinion, but it does avoid the use of a dedicated member variable.</p>
<p>What other possibilities are there?</p>
http://stackoverflow.com/questions/895289/are-we-asking-too-much-of-transactional-memory1Are we asking too much of transactional memory?Carl Seleborg2009-05-21T21:33:14Z2009-07-28T22:11:35Z
<p>I've been reading up a lot about transactional memory lately. There is a bit of hype around TM, so a lot of people are enthusiastic about it, and it does provide solutions for painful problems with locking, but you regularly also see complaints:</p>
<ul>
<li>You can't do I/O</li>
<li>You have to write your atomic sections so they can run several times (be careful with your local variables!)</li>
<li>Software transactional memory offers poor performance</li>
<li>[Insert your pet peeve here]</li>
</ul>
<p>I understand these concerns: more often than not, you find articles about STMs that only run on some particular hardware that supports some really nifty atomic operation (like <a href="http://en.wikipedia.org/wiki/Load-Link/Store-Conditional" rel="nofollow">LL/SC</a>), or it has to be supported by some imaginary compiler, or it requires that <em>all</em> accesses to memory be transactional, it introduces type constraints monad-style, etc. And above all: these are real problems.</p>
<p>This has lead me to ask myself: <strong>what speaks against local use of transactional memory as a replacement for locks?</strong> Would this already bring enough value, or must transactional memory be used all over the place if used at all?</p>
http://stackoverflow.com/questions/1164266/why-arrays-of-references-are-illegal/1164281#11642811Answer by Carl Seleborg for Why arrays of references are illegal?Carl Seleborg2009-07-22T10:14:40Z2009-07-22T10:14:40Z<p>A reference object has no size. If you write <code>sizeof(referenceVariable)</code>, it will give you the size of the object referenced by <code>referenceVariable</code>, not that of the reference itself. It has no size of its own, which is why the compiler can't calculate how much size the array would require.</p>
http://stackoverflow.com/questions/1137869/how-to-handle-type-redundancy-in-external-libraries/1137937#11379371Answer by Carl Seleborg for How to handle type redundancy in external libraries?Carl Seleborg2009-07-16T14:19:04Z2009-07-16T16:20:08Z<p><strong>CAVEAT:</strong> I don't have a compiler in front of me right now, and I'm suddenly unsure about the SFINAE part (not sure whether it applies to the function body, or only to the parameter types). Somebody please correct this if it's wrong.</p>
<p>In C++, you could take advantage of the similar syntax of the different classes to create a single function template:</p>
<pre><code>template <class ToType, class FromType>
ToType ConvertPoint(const FromType& FromValue)
{
ToType ToValue;
ToValue[0] = FromValue[0];
ToValue[1] = FromValue[1];
ToValue[2] = FromValue[2];
return ToValue;
}
// If the version above failed, the compiler will try this one.
// This is called SFINAE
template <class ToType, class FromType>
ToType ConvertPoint(const FromType& FromValue)
{
ToType ToValue;
ToValue[0] = FromValue.Get(0);
ToValue[1] = FromValue.Get(1);
ToValue[2] = FromValue.Get(2);
return ToValue;
}
// Usage:
KdTree::HyperPoint hyperPoint;
FixedPointType fixedPoint = ConvertPoint<FixedPointType>(hyperPoint);
</code></pre>
<p>I guess you can do the same in C#, although I'm less familiar with the syntax.</p>
<p>For the cases where your classes don't exactly follow the same syntax convention, SFINAE helps you by letting you provide several variants - if one fails, the compiler will pick the next one and try with that. Using <a href="http://en.wikipedia.org/wiki/Shim%5F%28computing%29" rel="nofollow">shims</a>, you can limit the number of variants by providing one generic function that uses appropriately defined shims to both set and get each coordinates for all existing classes.</p>
http://stackoverflow.com/questions/755878/any-hard-data-on-gc-vs-explicit-memory-management-performance11Any hard data on GC vs explicit memory management performance?Carl Seleborg2009-04-16T12:22:33Z2009-07-14T22:56:53Z
<p>I recently read the excellent article "<a href="http://www.cs.washington.edu/homes/djg/papers/analogy%5Foopsla07.pdf" rel="nofollow">The Transactional Memory / Garbage Collection Analogy</a>" by Dan Grossman. One sentence really caught my attention:</p>
<blockquote>
<p>In theory, garbage collection can
improve performance by increasing
spatial locality (due to
object-relocation), but in practice we
pay a moderate performance cost for
software engineering benefits.</p>
</blockquote>
<p>Until then, my feeling had always been very vague about it. Over and over, you see claims that GC <em>can</em> be more efficient, so I always kept that notion in the back of my head. After reading this, however, I started having serious doubts.</p>
<p>As an experiment to measure the impact on GC languages, some people took some Java programs, traced the execution, and then replaced garbage collection with explicit memory management. According to <a href="http://lambda-the-ultimate.org/node/2552" rel="nofollow">this review of the article</a> on <a href="http://lambda-the-ultimate.org" rel="nofollow">Lambda the ultimate</a>, they found out that GC was always slower. Virtual memory issues made GC look even worse, since the collector regularly touches way more memory pages than the program itself at that point, and therefore causes a lot of swapping.</p>
<p>This is all experimental to me. Has anybody, and in particular in the context of C++, performed a comprehensive benchmark of GC performance when comparing to explicit memory management?</p>
<p>Particularly interesting would be to compare how various big open-source projects, for example, perform with or without GC. Has anybody heard of such results before?</p>
<p>EDIT: And <strong>please focus on the performance problem</strong>, not on why GC exists or why it is beneficial.</p>
<p>Cheers,</p>
<p>Carl</p>
<p>PS. In case you're already pulling out the flame-thrower: I am not trying to disqualify GC, I'm just trying to get a definitive answer to the performance question.</p>
http://stackoverflow.com/questions/1119443/speed-of-c-program-execution/1119472#111947220Answer by Carl Seleborg for Speed of C program executionCarl Seleborg2009-07-13T13:32:07Z2009-07-13T13:52:12Z<p>This has to do with how the array's memory is laid out and how it gets loaded into the cache and accessed: in version A, when accessing a cell of the array, the neighbors get loaded with it into the cache, and the code then immediately accesses those neighbors. In version B, one cell is accessed (and its neighbors loaded into the cache), but the next access is far away, on the next row, and so the whole cache line was loaded but only one value used, and another cache line must be filled for each access. Hence the speed difference.</p>
http://stackoverflow.com/questions/1069013/ansi-or-oem-codepage-when-using-mme-and-directmusic1ANSI or OEM Codepage when using MME and DirectMusic?Carl Seleborg2009-07-01T12:58:00Z2009-07-13T04:34:15Z
<p>Hello,</p>
<p>I noticed that when reading MIDI port names from MME, the names are multi-byte strings encoded using the ANSI Codepage, which my app uses by default. When receiving those names from the DirectMusic driver, the names are wide-character strings encoded with the OEM Codepage. See <a href="http://blogs.msdn.com/oldnewthing/archive/2005/03/08/389527.aspx" rel="nofollow">this article by Raymond Chen</a> for a quick refresher on Codepages.</p>
<p>On my German system, this means that when using the current codepage, which turns out to be the ANSI one, I get "Audiogerät" from MME, and "Audioger<b>ö</b>t" from DirectMusic, the latter being wrong. This gets fixed when I treat that last name as OEM-encoded instead.</p>
<p>So how do I know with which codepage to decode those names? Why does the name coming from DirectMusic get encoded differently? Does it come from the USB driver? The COM framework? DirectMusic? <strong>How can I know for sure which codepage to use when reading the names of my MIDI ports?</strong></p>
<p>For info:</p>
<ul>
<li>I use the <code>MultiByteToWideChar()</code> and <code>WideCharToMultiByte()</code> functions to perform the conversions, with <code>CP_ACP</code> and <code>CP_OEMCP</code> as argument for the codepage to use.</li>
<li>I use <code>midiInGetDeviceCaps()</code> to get MIDI port information from the MME subsystem...</li>
<li>... and convert <code>MIDIINCAPS.szPname</code> using the <code>CP_ACP</code> (ANSI) codepage.</li>
<li>I use <code>IID_IDirectMusic8::EnumPort()</code> to get port information from DirectMusic...</li>
<li>... and convert <code>DMUS_PORTCAPS.wszDescription</code> using the <code>CP_OEMCP</code> codepage.</li>
</ul>
http://stackoverflow.com/questions/135634/class-design-vs-ide-are-nonmember-nonfriend-functions-really-worth-it3Class design vs. IDE: Are nonmember nonfriend functions really worth it?Carl Seleborg2008-09-25T19:59:16Z2009-06-29T08:41:54Z
<p>In the (otherwise) excellent book <a href="http://www.gotw.ca/publications/c++cs.htm" rel="nofollow">C++ Coding Standards</a>, Item 44, titled <strong>"Prefer writing nonmember nonfriend functions"</strong>, Sutter and Alexandrescu recommend that only functions that really need access to the members of a class be themselves members of that class. All other operations which can be written by using only member functions should not be part of the class. They should be nonmembers and nonfriends. The arguments are that:</p>
<ul>
<li>It promotes encapsulation, because there is less code that needs access to the internals of a class.</li>
<li>It makes writing function templates easier, because you don't have to guess each time whether some function is a member or not.</li>
<li>It keeps the class small, which in turn makes it easier to test and maintain.</li>
</ul>
<p>Although I see the value in these argument, I see a huge drawback: <strong>my IDE can't help me find these functions!</strong> Whenever I have an object of some kind, and I want to see what operations are available on it, I can't just type "<code>pMysteriousObject-></code>" and get a list of member functions anymore. </p>
<p>Keeping a clean design is in the end about making your programming life easier. But this would actually make mine much harder.</p>
<p>So I'm wondering if it's really worth the trouble. <strong>How do you deal with that?</strong></p>
http://stackoverflow.com/questions/851323/reflection-in-c/851941#8519411Answer by Carl Seleborg for Reflection in C++Carl Seleborg2009-05-12T09:30:22Z2009-05-12T09:30:22Z<p>Have a look at <a href="http://stackoverflow.com/questions/87932/attribute-reflection-libraries-for-c/88215#88215">my answer to a similar question</a>. Both solutions (XRTTI and OpenC++) proposed are based on external tools that generate the reflection meta-data for you during the build process.</p>
http://stackoverflow.com/questions/847279/code-reuse-in-exception-handling/847318#8473180Answer by Carl Seleborg for Code reuse in exception handlingCarl Seleborg2009-05-11T09:13:35Z2009-05-11T09:13:35Z<p>It would be a shame to loose error information at the language boundary. You really should try to translate all exceptions into an error code usable from C.</p>
<p>How you do it really depends on what your exception classes look like. If you control your exception class hierarchy, you can ensure that each class provides a translation using a virtual method. If not, you may still find it practical to use a translator function and test the types of the 'std::exception'-derived exception it receives to translate it into an error code, much like Jem suggested (remember: thrown exceptions will hurt performance anyway, so don't worry about the translation being slow).</p>
http://stackoverflow.com/questions/843493/choosing-a-consistency-model-for-a-concurrent-programming-language3Choosing a consistency model for a concurrent programming languageCarl Seleborg2009-05-09T15:27:11Z2009-05-09T20:59:49Z
<p>I am in the design phase of a programming language, currently thinking about the concurrency aspects. I need to figure out a <a href="http://en.wikipedia.org/wiki/Consistency%5Fmodel" rel="nofollow">consistency model</a>, i.e. how data is handled by concurrent processes programmed in this language.</p>
<p>There are two important criteria:</p>
<ul>
<li>I prefer ease-of-use over performance, as long as the consistency model allows good scaling,</li>
<li>I cannot use a consistency model that requires blocking or dynamic memory allocation.</li>
</ul>
<p>My two candidates right now are <strong>non-blocking software transactional memory</strong> on one side, and <strong>copying message-passing semantics without sharing</strong> <em>a la</em> Erlang.</p>
<p>I'm particularly worried about ease-of-use, so I'll present the major arguments I have against each of these two models.</p>
<p>In the case of STM, the user must understand what members of a class must mutate atomically and correctly delimit atomic code sections. These must be written so that they can be repeated an undefined number of times, they may not perform any I/O, may not call some foreign functions, etc. I see this as far from easy for a non-experienced programmer.</p>
<p>Erlang-style share-nothing concurrency is attractive, but there is a catch: real-time processes cannot copy the objects they send over, because they cannot perform any memory allocation, and so objects have to "move" from one process to the other via queues. The user must be aware that if one real-time process has two references to an object, both those references will be cleared if he sends the object to another process. This is a little like weak pointers that may or may not be null at any point of use: it may be surprising.</p>
<p>I tend towards the second model because it appears easier to understand and it naturally extends to distributed systems.</p>
<p><strong>What do you recommend?</strong></p>
<ul>
<li>Non-blocking software transactional memory?</li>
<li>Erlang-style concurrency with the difficulties of real-time constraints?</li>
<li>Something else I haven't considered?</li>
</ul>
http://stackoverflow.com/questions/58554/how-to-tweak-eclipses-c-indexer1How to tweak Eclipse's C++ Indexer?Carl Seleborg2008-09-12T09:28:55Z2009-05-07T20:59:53Z
<p>I'm using Eclipse as my IDE for a C++ project, and I would love for it to tell me where a given symbol is defined and what the parameters are for a function.</p>
<p>However, there's a catch: I also use <a href="http://www.lazycplusplus.com/" rel="nofollow">Lazy C++</a>, a tool that takes a single source file and generates the .h and the .cpp files. Those .lzz files look like headers, but this tool supports some very mild syntactic benefits, like combining nested namespaces into a qualified name. Additionally, it has some special tags to tell the tool specifically where to put what (in header or in source file).</p>
<p>So my typical SourceFile.lzz looks like this:</p>
<pre><code>$hdr
#include <iosfwd>
#include "ProjectA/BaseClass.h"
$end
$src
#include <iostream>
#include "ProjectB/OtherClass.h"
$end
// Forward declarations
namespace BigScope::ProjectB
{
class OtherClass;
}
namespace BigScope::ProjectA
{
class MyClass : public ProjectA::BaseClass
{
void SomeMethod(const ProjectB::OtherClass& Foo) { }
}
}
</code></pre>
<p>As you see, it's still recognizable C++, but with a few extras.</p>
<p>For some reason, CDT's indexer does not seem to want to index anything, and I don't know what's wrong. In the Indexer View, it shows me an empty tree, but tells me that it has some 15000 symbols and more stuff, none of which I can seem to access.</p>
<p>So here's my <strong>question</strong>: how can I make the Indexer output some more information about what it's doing and why it fails when it does so, and can I tweak it more than with just the GUI-accessible options?</p>
<p>Thanks,</p>
<p>Carl</p>
http://stackoverflow.com/questions/127913/sorting-strings-is-much-harder-than-you-thought11Sorting strings is much harder than you thought!Carl Seleborg2008-09-24T15:35:03Z2009-04-15T20:14:23Z
<p>Sorting a list of strings <strong>in a way that makes sense to a human</strong> is a very complex task. It's not just about comparing ASCII values. Usually, the case doesn't matter. You probably want "File 2" to be sorted before "File 11". In German, 'Ä' often comes at the beginning of the alphabet, whereas in Swedish it's towards the end. And what about encoding? The list of pitfalls is long.</p>
<p>So, fellow developer: what do you have to say about string sorting for human consumption? What are good techniques? What should be avoided? What are the correct APIs for your favorite platform? </p>
<p>Post your answers, and make this page the definitive reference about sorting strings for humans.</p>
http://stackoverflow.com/questions/705854/c-how-to-get-the-address-of-an-overloaded-member-function2C++: How to get the address of an overloaded member function?Carl Seleborg2009-04-01T14:44:24Z2009-04-05T11:38:20Z
<p>Hi,</p>
<p>I'm trying to get a pointer to a specific version of an <strong>overloaded</strong> member function. Here's the example:</p>
<pre><code>class C
{
bool f(int) { ... }
bool f(double) { ... }
bool example()
{
// I want to get the "double" version.
typedef bool (C::*MemberFunctionType)(double);
MemberFunctionType pointer = &C::f; // <- Visual C++ complains
}
};
</code></pre>
<p>The error message is "error C2440: 'initializing' : cannot convert from 'overloaded-function' to 'MemberFunctionType'"</p>
<p>This works if <code>f</code> is not overloaded, but not in the example above. Any suggestion?</p>
<h1>EDIT</h1>
<p>Beware, the code above did not reflect my real-world problem, which was that I had forgotten a "const" - this is what the accepted answer points out. I'll leave the question as it is, though, because I think the problem could happen to others.</p>
http://stackoverflow.com/questions/685228/best-practices-in-visual-studio-c/685242#6852423Answer by Carl Seleborg for Best practices in Visual Studio C++Carl Seleborg2009-03-26T10:43:22Z2009-03-26T10:43:22Z<p>There is no widely accepted industry standard. By putting (short) function definitions in the header, you give the compiler a better chance to inline the code. The benefit is that it can make the code run faster (keep those functions short, though). However, this comes at the cost of exposing more code to the clients who include that header, making you (or your colleagues) recompile more files when you change the implementation. </p>
<p>You also have to take into account the cost of going against your tools. Since VC++'s wizards insist on putting the functions in the headers, you have to move them everytime if you disagree.</p>
<p>It's really project-specific, I would say.</p>
http://stackoverflow.com/questions/1798729/c-message-passing-doubts/1798794#1798794Comment by Carl Seleborg on C++ message passing doubtsCarl Seleborg2009-11-30T11:35:42Z2009-11-30T11:35:42ZYes, to the same extend as using java instead of assembler: move up one level of abstraction to get rid of loads of problems. Erlang uses this approach, with great success.http://stackoverflow.com/questions/1688831/os-x-do-sections-in-the-text-segment-get-modified-by-other-programs/1692094#1692094Comment by Carl Seleborg on OS X: Do sections in the __TEXT segment get modified by other programs?Carl Seleborg2009-11-08T19:41:54Z2009-11-08T19:41:54ZThanks Nicholas, that's a really documented answer! I'll investigate all this as soon as I get back to work.http://stackoverflow.com/questions/1569035/what-makes-erlang-suitable-for-soft-real-time-applications/1569704#1569704Comment by Carl Seleborg on What makes Erlang suitable for soft real-time applications?Carl Seleborg2009-10-27T11:44:05Z2009-10-27T11:44:05Z@nvidring, thanks for your answer. Actually, I already had understood your points. What I was wondering was: since Erlang apparently does introduce non-determinism, what does it do that still makes it suitable for soft real-time apps. I know float computation is not its strong domain, but assuming we were building a synthesizer in Erlang, how could we prevent this non-determinism to cause audio drop-outs when the samples don't arrive on time due to some memory allocation that takes a little longer than normal?http://stackoverflow.com/questions/472015/new-on-stack-instead-of-heap-like-alloca-vs-malloc/472060#472060Comment by Carl Seleborg on new on stack instead of heap (like alloca vs malloc)Carl Seleborg2009-10-24T10:39:43Z2009-10-24T10:39:43Z@BigSandwich, you are absolutely right, destructors are not called automatically for objects allocated with alloca(). See my other answer about RAII and exceptions for other problems.http://stackoverflow.com/questions/1569035/what-makes-erlang-suitable-for-soft-real-time-applications/1569095#1569095Comment by Carl Seleborg on What makes Erlang suitable for soft real-time applications?Carl Seleborg2009-10-15T06:11:29Z2009-10-15T06:11:29ZHi James, thanks for the pointers. I don't understand one point: when objects are immutable, you <i>have</i> to create lots of them, in fact one new instance per new value. My experience is that you create a lot more objects when they are immutable. I am wrong?http://stackoverflow.com/questions/1562023/how-to-see-what-g-command-lines-boost-build-invokes-1-33-1/1562780#1562780Comment by Carl Seleborg on How to see what g++ command-lines Boost.Build invokes (1.33.1)Carl Seleborg2009-10-14T07:49:57Z2009-10-14T07:49:57ZIt works when leaving in --debug-configuration as well. But the -d+2 did it. Thanks!http://stackoverflow.com/questions/1437482/challenging-exception-throwing-guidelines-why-so-much-more-respect-than-good-old/1440763#1440763Comment by Carl Seleborg on Challenging exception throwing guidelines: why so much more respect than good old error codes?Carl Seleborg2009-09-18T08:19:30Z2009-09-18T08:19:30ZThe complexity of the error cases is a good point - +1.http://stackoverflow.com/questions/1437482/challenging-exception-throwing-guidelines-why-so-much-more-respect-than-good-old/1440256#1440256Comment by Carl Seleborg on Challenging exception throwing guidelines: why so much more respect than good old error codes?Carl Seleborg2009-09-18T08:18:00Z2009-09-18T08:18:00ZPoint 1) It's enough to have one single throw statement buried deep down in a commonly used function, and suddenly you have to expect exceptions pretty much everywhere. Point 2) Why <i>not</i> do the same type of work when an error code is returned from a function (I'm not talking about the inherent cost of throwing and catching exceptions)? Why are exceptions treated differently?http://stackoverflow.com/questions/1437482/challenging-exception-throwing-guidelines-why-so-much-more-respect-than-good-old/1437834#1437834Comment by Carl Seleborg on Challenging exception throwing guidelines: why so much more respect than good old error codes?Carl Seleborg2009-09-17T16:14:17Z2009-09-17T16:14:17ZBut why do exceptions need to be logged more than, say, an error returned by an API call? Note that I dismiss here the use of exceptions for detecting bugs, I think that's just wrong. Exceptions detect errors, just like a Win32 handle value of HANDLE_INVALID. My question is precisely that: what makes exceptions be treated so much more carefully? The more I think about it, the more I think they were misnamed.http://stackoverflow.com/questions/1437482/challenging-exception-throwing-guidelines-why-so-much-more-respect-than-good-oldComment by Carl Seleborg on Challenging exception throwing guidelines: why so much more respect than good old error codes?Carl Seleborg2009-09-17T16:05:32Z2009-09-17T16:05:32ZNo, I think this is an important issue and answers will benefit the community. And it has been a question of mine for a long time now, I hope there will come up an answer I can use.http://stackoverflow.com/questions/457020/how-lean-do-my-c-exception-classes-really-need-to-be/1385686#1385686Comment by Carl Seleborg on How lean do my C++ exception classes really need to be?Carl Seleborg2009-09-14T10:04:21Z2009-09-14T10:04:21ZJalf, you misread what I wrote: I said that in case of exhausted memory, there was not much more I could/was willing to do (certainly not pop up a window). In any other case, I would want my exception to include as much info as possible, which means allocating memory (which in turn means potentially throwing an exception).
The trade-off is between having one class that gets harder to maintain, and thousands of call sites where I want one single line of code to collect lots of data about the error.http://stackoverflow.com/questions/1273385/how-to-ensure-that-virtual-method-calls-get-propagated-all-the-way-to-the-base-cl/1273426#1273426Comment by Carl Seleborg on How to ensure that virtual method calls get propagated all the way to the base class?Carl Seleborg2009-08-14T14:14:49Z2009-08-14T14:14:49Z@ptdi: that's a reasonable point of view for some situations. The first issue is that the C++ compiler cannot help me here (it does it for constructors and destructors, but for all other virtual methods, you're on your own). I'd love to test it, but either you test explicitly that the call is correctly propagated (which is my question), or you test functionality, and you may see the effects of the missing call much later and in some whole other place.http://stackoverflow.com/questions/1273385/how-to-ensure-that-virtual-method-calls-get-propagated-all-the-way-to-the-base-cl/1273477#1273477Comment by Carl Seleborg on How to ensure that virtual method calls get propagated all the way to the base class?Carl Seleborg2009-08-14T13:05:51Z2009-08-14T13:05:51ZSorry Dan, I don't understand what it is I'm not understanding :-) Look at my two examples again. Anyway, I want the base version to be called. In fact, I want all versions to be called, and I'm asking for a way to ensure this when the design intends for it.http://stackoverflow.com/questions/1273385/how-to-ensure-that-virtual-method-calls-get-propagated-all-the-way-to-the-base-cl/1274109#1274109Comment by Carl Seleborg on How to ensure that virtual method calls get propagated all the way to the base class?Carl Seleborg2009-08-14T09:37:09Z2009-08-14T09:37:09Z@tkopec: This only works for one level of inheritance.http://stackoverflow.com/questions/1273385/how-to-ensure-that-virtual-method-calls-get-propagated-all-the-way-to-the-base-cl/1273492#1273492Comment by Carl Seleborg on How to ensure that virtual method calls get propagated all the way to the base class?Carl Seleborg2009-08-14T09:36:25Z2009-08-14T09:36:25Z@sbi: how is it the Template Method Pattern? As I understand it, the TMP lets different parts of an abstract algorithm be implemented in derived classes. It is not about propagating work to inherited classes.