User Menkboy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T23:33:32Zhttp://stackoverflow.com/feeds/user/29539http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs5Efficient heap-manager for heavy churn, tiny allocs?Menkboy2008-10-23T00:48:19Z2009-09-28T04:30:56Z
<p>I'm looking for ideas for a heap-manager to handle a very specific situation: Lots and lots of very small allocations, ranging from 12 to 64 bytes each. Anything bigger, I will pass on to the regular heap-manager, so only tiny blocks need be catered for. Only 4-byte alignment is needed.</p>
<p>My main concerns are</p>
<ol>
<li>Overhead. The regular libc heap will typically round up an allocation to a multiple of 16 bytes, then add another 16 byte header - this means over 50% overhead on a 20-byte allocation, which sucks.</li>
<li>Performance</li>
</ol>
<p>One helpful aspect is that Lua (which is the user of this heap) will tell you the size of the block it's freeing when it calls free() - this may enable certain optimisations.</p>
<p>I'll post my current approach, which works ok, but I'd like to improve on it if at all possible. Any ideas?</p>
http://stackoverflow.com/questions/242404/sort-four-points-in-clockwise-order/242710#242710-1Answer by Menkboy for Sort Four Points in Clockwise OrderMenkboy2008-10-28T09:57:28Z2008-10-28T09:57:28Z<pre><code>if( (p2.x-p1.x)*(p3.y-p1.y) > (p3.x-p1.x)*(p2.y-p1.y) )
swap( &p1, &p3 );
</code></pre>
<p>The '>' might be facing the wrong way, but you get the idea.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237622#2376226Answer by Menkboy for Code Golf: FactorialsMenkboy2008-10-26T05:38:50Z2008-10-26T05:38:50Z<p>9 bytes of i386 machine-code. Input is EAX, output is EAX.</p>
<pre><code>#AT&T syntax
mov %eax, %ebx
again:
dec %ebx
.byte 0x74, 4 #jz (short) done
mul %ebx
.byte 0xEB, -7 #jmp (short) again
done:
</code></pre>
<p>PS: Anyone know why <code>as</code> won't genetrate short jumps for me?</p>
http://stackoverflow.com/questions/235664/how-to-use-stdsignalingnan/235677#2356770Answer by Menkboy for How to use std::signaling_nan?Menkboy2008-10-25T00:18:10Z2008-10-25T00:29:42Z<p>From <a href="http://msdn.microsoft.com/en-us/library/hf16y784.aspx" rel="nofollow">TFM</a>:</p>
<pre><code>cout << "The signaling NaN for type float is: "
<< numeric_limits<float>::signaling_NaN( )
<< endl;
</code></pre>
<p>-></p>
<blockquote>
<p>The signaling NaN for type float is: 1.#QNAN</p>
</blockquote>
<p>where the 'Q' stands for 'Quiet'. Dunno why it would return that, but that's why it doesn't throw an exception for you.</p>
<p>Out of curiosity, does this work better?</p>
<pre><code>const double &real_snan( void )
{
static const long long snan = 0x7ff0000080000001LL;
return *(double*)&snan;
}
</code></pre>
http://stackoverflow.com/questions/234333/color-mapping-a-texture-in-opengl/235529#2355292Answer by Menkboy for Color mapping a texture in openglMenkboy2008-10-24T22:49:56Z2008-10-25T00:10:55Z<p>Unless you have a pretty old graphics-card, it's surprising that you don't have fragment-shader support. I'd suggest you try double-checking using <a href="http://www.realtech-vr.com/glview/" rel="nofollow">this</a>.</p>
<p>Also, are you sure you want anything above the max value to be 0? Perhaps you meant 1? If you did mean 1 and not 0 then are quite long-winded ways to do what you're asking. </p>
<p>The condensed answer is that you use multiple rendering-passes. First you render the image at normal intensity. Then you use subtractive blending (look up glBlendEquation) to subtract your minimum value. Then you use additive blending to multiply everything up by 1/(max-min) (which may need multiple passes).</p>
<p>If you really want to do this, please post back the <code>GL_VENDOR</code> and <code>GL_RENDERER</code> for your graphics-card.</p>
<p><strong>Edit:</strong> Hmm. Intel 945G don't have <code>ARB_fragment_shader</code>, but it does have <code>ARB_fragment_program</code> which will also do the trick.</p>
<p>Your fragment-code should look something like this (but it's been a while since I wrote any so it's probably bugged)</p>
<pre><code>!!ARBfp1.0
ATTRIB tex = fragment.texcoord[0]
PARAM cbias = program.local[0]
PARAM cscale = program.local[1]
OUTPUT cout = result.color
TEMP tmp
TXP tmp, tex, texture[0], 2D
SUB tmp, tmp, cbias
MUL cout, tmp, cscale
END
</code></pre>
<p>You load this into OpenGL like so:</p>
<pre><code>GLuint prog;
glEnable(GL_FRAGMENT_PROGRAM_ARB);
glGenProgramsARB(1, &prog);
glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, prog);
glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, strlen(src), src);
glDisable(GL_FRAGMENT_PROGRAM_ARB);
</code></pre>
<p>Then, before rendering your geometry, you do this:</p>
<pre><code>glEnable(GL_FRAGMENT_PROGRAM_ARB);
glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, prog);
colour4f cbias = cmin;
colour4f cscale = 1.0f / (cmax-cmin);
glProgramLocalParameter4fARB(GL_FRAGMENT_PROGRAM_ARB, 0, cbias.r, cbias.g, cbias.b, cbias.a);
glProgramLocalParameter4fARB(GL_FRAGMENT_PROGRAM_ARB, 1, cscale.r, cscale.g, cscale.b, cscale.a);
//Draw your textured geometry
glDisable(GL_FRAGMENT_PROGRAM_ARB);
</code></pre>
http://stackoverflow.com/questions/235386/using-nan-in-c/235490#2354901Answer by Menkboy for Using NaN in C++?Menkboy2008-10-24T22:35:59Z2008-10-24T22:35:59Z<p>You can write a signalling NaN into a variable without triggering an exception with something like this (nb: untested)</p>
<pre><code>void set_snan( double &d )
{
long long *bits = (long long *)&d;
*bits = 0x7ff0000080000001LL;
}
</code></pre>
<p>It'll work most places, but no, it's not 100% portable.</p>
http://stackoverflow.com/questions/228518/palindrome-golf/228526#22852630Answer by Menkboy for Palindrome GolfMenkboy2008-10-23T04:19:56Z2008-10-24T13:41:25Z<p>Here's mine; it's written in a domain-specific language I invented, called 'palindrome'.</p>
<pre><code>p
</code></pre>
<p><strong>Edit:</strong> Less flippant version (i386 asm, AT&T syntax)</p>
<pre><code>xor %eax, %eax
mov %esi, %edi
#cld not necessary, assume DF=0 as per x86 ABI
repne scasb
scan:
dec %edi
cmpsb
.byte 0x75, 6 #jnz (short) done
dec %edi
cmp %esi, %edi
.byte 0x72, -9 #jb (short) scan
inc %eax
done:
</code></pre>
<p>16 bytes, string pointer goes in ESI, result is in EAX.</p>
http://stackoverflow.com/questions/232271/opengl-textures-with-multiple-display-contexts/232331#2323312Answer by Menkboy for OpenGL textures with multiple display contextsMenkboy2008-10-24T02:49:52Z2008-10-24T02:49:52Z<p>Textures are not (by default) shared across contexts - you have to explicitly enable this, but how you do so is platform-specific.</p>
<p>On win32, it's <code>wglShareLists</code>, and on most other platforms it's specified when you create the context (eg. with the <code>share</code> parameter to <code>aglCreateContext</code> on OS-X).</p>
http://stackoverflow.com/questions/232280/x86-question-about-bit-comparisons/232291#2322912Answer by Menkboy for x86 question about bit comparisonsMenkboy2008-10-24T02:22:13Z2008-10-24T02:22:13Z<p>'shr bh,1' should probably be 'shr dh,1', no?</p>
http://stackoverflow.com/questions/224058/distributed-random-number-generation/224067#2240674Answer by Menkboy for Distributed Random Number GenerationMenkboy2008-10-22T00:32:33Z2008-10-23T22:28:17Z<p><strong>Edit</strong></p>
<p>Better algorithm (thanks wnoise):</p>
<ol>
<li>Everyone picks a secret number from 0 to M-1</li>
<li>Everyone appends a load of random gunk to their number and hashes the result with a secure hash</li>
<li>Everyone tells everyone else this hash</li>
<li>Everyone tells everyone else their secret number, plus the random gunk they appended to it</li>
<li>Everyone verifies that the numbers and hashes+gunk match</li>
<li>Add all the secret numbers together modulo M, then adds 1 to get the final result</li>
</ol>
<p>As a participant, I should be satisfied with this because I know that I had full influence over the final result - the final number could have been anything at all, depending on my choice of secret number. So since no-one else could predict my number, they couldn't have predicted the final result either.</p>
<blockquote>
<p>Any way to reduce the messages from the 3M^2 that i suspect a broadcast approach would require?</p>
</blockquote>
<p>I reckon that only the hash publication has to be a broadcast, but it's still O(M^2). I guess the only way around that would be to pre-exchange digital signature keys, or to have a trusted communication hub.</p>
<p><strong>Edit2</strong> - How safe is the hashing thing?</p>
<p>Possible attacks include:</p>
<ol>
<li>If I can generate a hash collision then I have two secret numbers with the same hash. So once I know everyone else's secret numbers I can choose which of my secret numbers to reveal, thus selecting one of two possible results.</li>
<li>If I generate my secret number and random gunk using a PRNG, then an attacker trying to brute-force my hash doesn't have to try every possible number+gunk, only every possible seed for the PRNG.</li>
<li>I use the number+gunk that everyone reveals to determine information about their PRNGs - I could try to guess or brute-force the seeds, or calculate the internal state from the output. This helps me predict what numbers they will generate next time around, which narrows the search space for a brute-force attack.</li>
</ol>
<p>Therefore, you should</p>
<ol>
<li>Use a trusted, unbroken hashing algorithm.</li>
<li>Use a cryptographically secure random number generator that has a big seed / state, and try to seed it from a good source of entropy.</li>
</ol>
http://stackoverflow.com/questions/229142/what-are-the-alternatives-for-meld-graphical-diff-tool-on-osx/229194#2291944Answer by Menkboy for What are the alternatives for meld (graphical diff tool) on OSXMenkboy2008-10-23T10:06:30Z2008-10-23T10:06:30Z<p>There's FileMerge.app, which comes with XCode.</p>
http://stackoverflow.com/questions/228404/extending-an-existing-class-like-a-namespace-c/228464#2284641Answer by Menkboy for Extending an existing class like a namespace (C++)?Menkboy2008-10-23T03:41:19Z2008-10-23T03:41:19Z<ul>
<li>Inheritance (as you pointed out), or</li>
<li>Use a function instead of a method, or</li>
<li>Alter the engine code itself, but isolate and manage the changes using a patch-manager like quilt or Mercurial/MQ</li>
</ul>
<p>I don't see what's wrong with inheritance in this context though.</p>
http://stackoverflow.com/questions/224421/constant-value-in-conditional-expression/224442#2244425Answer by Menkboy for Constant value in conditional expressionMenkboy2008-10-22T03:57:48Z2008-10-22T04:08:28Z<p>A warning doesn't automatically mean that code is <em>bad</em>, just suspicious-looking.</p>
<p>Personally I start from a position of enabling all the warnings I can, then turn off any that prove more annoying than useful. That one that fires anytime you cast anything to a bool is usually the first to go.</p>
http://stackoverflow.com/questions/224396/should-i-look-at-version-control-systems-beyond-subversion/224433#2244332Answer by Menkboy for Should I look at version control systems beyond Subversion?Menkboy2008-10-22T03:51:07Z2008-10-22T03:51:07Z<p>Mercurial is also worth consideration; branching is much friendlier, and it can work without a network connection. I never seriously tried separating work into branches until I moved from SVN to Mercurial.</p>
<p>The one thing I seriously miss is TortoiseSVN; there's a workalike (TortoiseHg) that's pretty good, but it's just not the same..</p>
<p>Anyway, creating a Mercurial repo from an SVN one is trivially easy...give it a try and see whether it suits you or not.</p>
http://stackoverflow.com/questions/224397/why-do-people-use-double-underscore-so-much-in-c/224404#2244043Answer by Menkboy for Why do people use __(double underscore) so much in C++Menkboy2008-10-22T03:39:48Z2008-10-22T03:39:48Z<p>It's something you're not meant to do in 'normal' code. This ensures that compilers and system libraries can define symbols that won't collide with yours.</p>
http://stackoverflow.com/questions/224204/why-use-infinite-loops/224219#2242194Answer by Menkboy for Why use infinite loops?Menkboy2008-10-22T02:03:24Z2008-10-22T02:10:45Z<pre><code>while( 1 )
{
game->update();
game->render();
}
</code></pre>
<p><strong>Edit:</strong> That is, my app is fundamentally based around an infinite loop, and I can't be bothered to refactor everything just to have the aesthetic purity of always terminating by falling off the end of main().</p>
http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224208#2242083Answer by Menkboy for Infinite loops - top or bottom?Menkboy2008-10-22T01:58:08Z2008-10-22T01:58:08Z<p>Infinite tail-recursion ;)</p>
<p>It's somewhat compiler-dependant...</p>
http://stackoverflow.com/questions/223215/c-example-of-coding-horror-or-brilliant-idea/223224#22322413Answer by Menkboy for C++ example of Coding Horror or Brilliant Idea?Menkboy2008-10-21T19:47:28Z2008-10-21T22:15:04Z<p>Personally I think that if there's a crime, it's asking the header for the payload.</p>
<p>But as long as you're going to do it that way, 'this+1' is as good a way as any.</p>
<p>Justification: '&this[1]' is a general-purpose piece of code that doesn't require you to go digging through class-definitions to fully comprehend, and doesn't require fixing when someone changes the name or contents of the class.</p>
<p>BTW, the first example is the true crime against humanity. Add a member to the end of the class and it'll fail. Move the members around the class and it'll fail. If the compiler pads the class, it'll fail.</p>
<p>Also, if you're going to assume that the compiler's layout of classes/structs matches your packet layout, then you should understand how the compiler in question works. Eg. on MSVC you'll probably want to know about <code>#pragma pack</code>.</p>
<p>PS: It's a little scary how many people consider "this+1" or "&this[1]" hard to read or understand.</p>
http://stackoverflow.com/questions/220884/should-my-c-program-support-ia64-or-only-x64/220910#2209102Answer by Menkboy for Should my C++ program support IA64 or only x64?Menkboy2008-10-21T06:00:53Z2008-10-21T06:00:53Z<p>You're the only person qualified to make the judgement of whether expected sales will cover the cost of developing and supporting it.</p>
http://stackoverflow.com/questions/220644/c-ide-for-macs/220651#2206512Answer by Menkboy for C++ IDE for MacsMenkboy2008-10-21T03:11:00Z2008-10-21T03:11:00Z<p><a href="http://developer.apple.com/tools/xcode/" rel="nofollow">XCode</a> is free and good, which is lucky because it's pretty much the only option on the Mac.</p>
http://stackoverflow.com/questions/220525/ensuring-a-single-instance-of-an-application-in-linux/220544#2205441Answer by Menkboy for Ensuring a single instance of an application in LinuxMenkboy2008-10-21T02:10:53Z2008-10-21T02:10:53Z<p><a href="http://www.opengroup.org/onlinepubs/007908799/xsh/semaphore.h.html" rel="nofollow">This</a> is the Posix equivalent, I believe.</p>
http://stackoverflow.com/questions/220323/determine-process-info-programmatically-in-darwin-osx/220352#2203520Answer by Menkboy for Determine Process Info Programmatically in Darwin/OSXMenkboy2008-10-20T23:55:14Z2008-10-20T23:55:14Z<p>Most of this info can be gotten from <a href="http://developer.apple.com/documentation/Carbon/Reference/Process_Manager/Reference/reference.html#//apple_ref/doc/uid/TP30000208-CH1g-TPXREF103" rel="nofollow">GetProcessInformation()</a>.</p>
<p>By the way, why virtual methods for functions that return processwide info?</p>
http://stackoverflow.com/questions/220298/is-there-an-equivalent-to-pedantic-for-gcc-when-using-microsofts-visual-c-com/220314#2203141Answer by Menkboy for Is there an equivalent to -pedantic for gcc when using Microsoft's Visual C++ compiler?Menkboy2008-10-20T23:34:29Z2008-10-20T23:34:29Z<p><code>/W4 /Wall</code> should do the trick.</p>
http://stackoverflow.com/questions/219872/graph-rendering-using-3d-acceleration/219888#2198885Answer by Menkboy for Graph rendering using 3D accelerationMenkboy2008-10-20T20:58:53Z2008-10-20T20:58:53Z<p>You really don't have to worry about the Z-axis if you don't want to. In OpenGL (for example), you can specify XY vertices (with implicit Z=0), turn of the zbuffer, use a non-projective projection-matrix, and hey presto you're in 2D.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/219699#2196990Answer by Menkboy for Ruby on iPhoneMenkboy2008-10-20T20:06:23Z2008-10-20T20:06:23Z<p>There's an open-source <a href="http://rubycocoa.sourceforge.net/HomePage" rel="nofollow">Ruby-Cocoa bridge</a> you might try to get working. But I gather that there's a bit of an impedance mismatch between Ruby and ObjC that makes it a bit awkward to use.</p>
http://stackoverflow.com/questions/219420/how-would-you-improve-this-algorithm-c-string-reversal/219449#2194497Answer by Menkboy for How would you improve this algorithm? (c string reversal)Menkboy2008-10-20T18:47:08Z2008-10-20T19:58:50Z<pre><code>if( string[0] )
{
char *end = string + strlen(string)-1;
while( start < end )
{
char temp = *string;
*string++ = *end;
*end-- = temp;
}
}
</code></pre>
http://stackoverflow.com/questions/219470/is-it-possible-to-view-the-history-of-a-line-in-svn/219471#2194712Answer by Menkboy for Is it possible to view the history of a line in SVN?Menkboy2008-10-20T18:54:53Z2008-10-20T18:54:53Z<p><code>svn blame</code></p>
http://stackoverflow.com/questions/217822/large-scrolling-background-in-opengl-es/217864#2178643Answer by Menkboy for Large scrolling background in OpenGL ESMenkboy2008-10-20T09:21:11Z2008-10-20T09:29:11Z<p>That's the fast way of doing it. Things you can do to improve performance:</p>
<ul>
<li>Try different texture-formats. Presumably the SDK docs have details on the preferred format, and presumably smaller is better.</li>
<li>Cull out entirely offscreen tiles yourself</li>
<li>Split the image into smaller textures</li>
</ul>
<p>I'm assuming you're drawing at a 1:1 zoom-level; is that the case?</p>
<p><strong>Edit:</strong> Oops. Having read your question more carefully, I have to offer another piece of advice: <strong>Timings made on the simulator are worthless.</strong></p>
http://stackoverflow.com/questions/242404/sort-four-points-in-clockwise-order/242469#242469Comment by Menkboy on Sort Four Points in Clockwise OrderMenkboy2008-10-28T17:03:39Z2008-10-28T17:03:39ZPS: You only need to do the second test if the signed area of ABC is zero (or within some epsilon of it).http://stackoverflow.com/questions/242404/sort-four-points-in-clockwise-order/242469#242469Comment by Menkboy on Sort Four Points in Clockwise OrderMenkboy2008-10-28T09:59:37Z2008-10-28T09:59:37ZSwap opposite verts not adjacent ones. But otherwise, yes.http://stackoverflow.com/questions/237496/code-golf-factorials/237565#237565Comment by Menkboy on Code Golf: FactorialsMenkboy2008-10-26T12:19:43Z2008-10-26T12:19:43ZYou haven't actually written a factorial function though, innit?http://stackoverflow.com/questions/232271/opengl-textures-with-multiple-display-contexts/235552#235552Comment by Menkboy on OpenGL textures with multiple display contextsMenkboy2008-10-25T03:26:20Z2008-10-25T03:26:20ZHow are you creating the graphics-context? What's your platform?http://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs/228132#228132Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs?Menkboy2008-10-23T21:51:17Z2008-10-23T21:51:17ZSorry, should've mentioned that C++ is fine with me; the problem's that Lua churns the heap so heavily that this sort of approach isn't practical, unfortunately.http://stackoverflow.com/questions/228518/palindrome-golf/228526#228526Comment by Menkboy on Palindrome GolfMenkboy2008-10-23T21:11:53Z2008-10-23T21:11:53Z@Joe: Yeah, it's AT&T; the only assembler I had to hand was GNU's as. I have to clear EAX so the rep scasb works, and then to provide the result value for one of the two possible outcomes.http://stackoverflow.com/questions/228518/palindrome-golf/228526#228526Comment by Menkboy on Palindrome GolfMenkboy2008-10-23T04:24:48Z2008-10-23T04:24:48ZYou must be confusing palindrome with palindrome++, which is a related but different language.http://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs/228147#228147Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs?Menkboy2008-10-23T01:20:25Z2008-10-23T01:20:25ZPS: I can avoid the free() complications because Lua tells me the blocksize it's freeing. So I can very quickly look up which heap it came from and act accordingly.http://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs/228147#228147Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs?Menkboy2008-10-23T01:18:47Z2008-10-23T01:18:47ZThank you very much, please accept an honorary +1 (I don't have a proper voting account).http://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs/228100#228100Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs?Menkboy2008-10-23T01:16:43Z2008-10-23T01:16:43ZSweet. Presumably GCing it to reclaim memory would be headache, but I'll see if I can get away with simply avoiding that, or maybe try to do it incrementally.http://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs/228100#228100Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs?Menkboy2008-10-23T01:08:43Z2008-10-23T01:08:43ZYep. I'd probably go as low as 4-byte granularity, but this sounds like what I need. So this could be done with entirely headerless blocks, right?http://stackoverflow.com/questions/227897/solve-the-memory-alignment-in-c-interview-question-that-stumped-me/227900#227900Comment by Menkboy on Solve the memory alignment in C interview question that stumped meMenkboy2008-10-22T23:50:03Z2008-10-22T23:50:03ZBTW '+15' works as well as '+16'...no practical impact in this situation though.http://stackoverflow.com/questions/224204/why-use-infinite-loops/224219#224219Comment by Menkboy on Why use infinite loops?Menkboy2008-10-22T04:20:03Z2008-10-22T04:20:03ZI do a load of cleanp and then call 'exit()'. I needed this clean shutdown function anyway (for eg. assert()), and why have two different exit paths?http://stackoverflow.com/questions/224421/constant-value-in-conditional-expression/224470#224470Comment by Menkboy on Constant value in conditional expressionMenkboy2008-10-22T04:17:08Z2008-10-22T04:17:08ZTry it with /Wallhttp://stackoverflow.com/questions/224058/distributed-random-number-generation/224067#224067Comment by Menkboy on Distributed Random Number GenerationMenkboy2008-10-22T01:23:37Z2008-10-22T01:23:37Z@wnoise: (facepalm) Yep, that's lots cleaner than the current idea.