User Menkboy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:33:32Z http://stackoverflow.com/feeds/user/29539 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs 5 Efficient heap-manager for heavy churn, tiny allocs? Menkboy 2008-10-23T00:48:19Z 2009-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 -1 Answer by Menkboy for Sort Four Points in Clockwise Order Menkboy 2008-10-28T09:57:28Z 2008-10-28T09:57:28Z <pre><code>if( (p2.x-p1.x)*(p3.y-p1.y) &gt; (p3.x-p1.x)*(p2.y-p1.y) ) swap( &amp;p1, &amp;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#237622 6 Answer by Menkboy for Code Golf: Factorials Menkboy 2008-10-26T05:38:50Z 2008-10-26T05:38:50Z <p>9 bytes of i386 machine-code. Input is EAX, output is EAX.</p> <pre><code>#AT&amp;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#235677 0 Answer by Menkboy for How to use std::signaling_nan? Menkboy 2008-10-25T00:18:10Z 2008-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 &lt;&lt; "The signaling NaN for type float is: " &lt;&lt; numeric_limits&lt;float&gt;::signaling_NaN( ) &lt;&lt; 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 &amp;real_snan( void ) { static const long long snan = 0x7ff0000080000001LL; return *(double*)&amp;snan; } </code></pre> http://stackoverflow.com/questions/234333/color-mapping-a-texture-in-opengl/235529#235529 2 Answer by Menkboy for Color mapping a texture in opengl Menkboy 2008-10-24T22:49:56Z 2008-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, &amp;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#235490 1 Answer by Menkboy for Using NaN in C++? Menkboy 2008-10-24T22:35:59Z 2008-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 &amp;d ) { long long *bits = (long long *)&amp;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#228526 30 Answer by Menkboy for Palindrome Golf Menkboy 2008-10-23T04:19:56Z 2008-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&amp;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#232331 2 Answer by Menkboy for OpenGL textures with multiple display contexts Menkboy 2008-10-24T02:49:52Z 2008-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#232291 2 Answer by Menkboy for x86 question about bit comparisons Menkboy 2008-10-24T02:22:13Z 2008-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#224067 4 Answer by Menkboy for Distributed Random Number Generation Menkboy 2008-10-22T00:32:33Z 2008-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#229194 4 Answer by Menkboy for What are the alternatives for meld (graphical diff tool) on OSX Menkboy 2008-10-23T10:06:30Z 2008-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#228464 1 Answer by Menkboy for Extending an existing class like a namespace (C++)? Menkboy 2008-10-23T03:41:19Z 2008-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#224442 5 Answer by Menkboy for Constant value in conditional expression Menkboy 2008-10-22T03:57:48Z 2008-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#224433 2 Answer by Menkboy for Should I look at version control systems beyond Subversion? Menkboy 2008-10-22T03:51:07Z 2008-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#224404 3 Answer by Menkboy for Why do people use __(double underscore) so much in C++ Menkboy 2008-10-22T03:39:48Z 2008-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#224219 4 Answer by Menkboy for Why use infinite loops? Menkboy 2008-10-22T02:03:24Z 2008-10-22T02:10:45Z <pre><code>while( 1 ) { game-&gt;update(); game-&gt;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#224208 3 Answer by Menkboy for Infinite loops - top or bottom? Menkboy 2008-10-22T01:58:08Z 2008-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#223224 13 Answer by Menkboy for C++ example of Coding Horror or Brilliant Idea? Menkboy 2008-10-21T19:47:28Z 2008-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: '&amp;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 "&amp;this[1]" hard to read or understand.</p> http://stackoverflow.com/questions/220884/should-my-c-program-support-ia64-or-only-x64/220910#220910 2 Answer by Menkboy for Should my C++ program support IA64 or only x64? Menkboy 2008-10-21T06:00:53Z 2008-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#220651 2 Answer by Menkboy for C++ IDE for Macs Menkboy 2008-10-21T03:11:00Z 2008-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#220544 1 Answer by Menkboy for Ensuring a single instance of an application in Linux Menkboy 2008-10-21T02:10:53Z 2008-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#220352 0 Answer by Menkboy for Determine Process Info Programmatically in Darwin/OSX Menkboy 2008-10-20T23:55:14Z 2008-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#220314 1 Answer by Menkboy for Is there an equivalent to -pedantic for gcc when using Microsoft's Visual C++ compiler? Menkboy 2008-10-20T23:34:29Z 2008-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#219888 5 Answer by Menkboy for Graph rendering using 3D acceleration Menkboy 2008-10-20T20:58:53Z 2008-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#219699 0 Answer by Menkboy for Ruby on iPhone Menkboy 2008-10-20T20:06:23Z 2008-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#219449 7 Answer by Menkboy for How would you improve this algorithm? (c string reversal) Menkboy 2008-10-20T18:47:08Z 2008-10-20T19:58:50Z <pre><code>if( string[0] ) { char *end = string + strlen(string)-1; while( start &lt; 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#219471 2 Answer by Menkboy for Is it possible to view the history of a line in SVN? Menkboy 2008-10-20T18:54:53Z 2008-10-20T18:54:53Z <p><code>svn blame</code></p> http://stackoverflow.com/questions/217822/large-scrolling-background-in-opengl-es/217864#217864 3 Answer by Menkboy for Large scrolling background in OpenGL ES Menkboy 2008-10-20T09:21:11Z 2008-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#242469 Comment by Menkboy on Sort Four Points in Clockwise Order Menkboy 2008-10-28T17:03:39Z 2008-10-28T17:03:39Z PS: 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#242469 Comment by Menkboy on Sort Four Points in Clockwise Order Menkboy 2008-10-28T09:59:37Z 2008-10-28T09:59:37Z Swap opposite verts not adjacent ones. But otherwise, yes. http://stackoverflow.com/questions/237496/code-golf-factorials/237565#237565 Comment by Menkboy on Code Golf: Factorials Menkboy 2008-10-26T12:19:43Z 2008-10-26T12:19:43Z You haven't actually written a factorial function though, innit? http://stackoverflow.com/questions/232271/opengl-textures-with-multiple-display-contexts/235552#235552 Comment by Menkboy on OpenGL textures with multiple display contexts Menkboy 2008-10-25T03:26:20Z 2008-10-25T03:26:20Z How are you creating the graphics-context? What's your platform? http://stackoverflow.com/questions/228081/efficient-heap-manager-for-heavy-churn-tiny-allocs/228132#228132 Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs? Menkboy 2008-10-23T21:51:17Z 2008-10-23T21:51:17Z Sorry, 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#228526 Comment by Menkboy on Palindrome Golf Menkboy 2008-10-23T21:11:53Z 2008-10-23T21:11:53Z @Joe: Yeah, it's AT&amp;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#228526 Comment by Menkboy on Palindrome Golf Menkboy 2008-10-23T04:24:48Z 2008-10-23T04:24:48Z You 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#228147 Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs? Menkboy 2008-10-23T01:20:25Z 2008-10-23T01:20:25Z PS: 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#228147 Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs? Menkboy 2008-10-23T01:18:47Z 2008-10-23T01:18:47Z Thank 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#228100 Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs? Menkboy 2008-10-23T01:16:43Z 2008-10-23T01:16:43Z Sweet. 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#228100 Comment by Menkboy on Efficient heap-manager for heavy churn, tiny allocs? Menkboy 2008-10-23T01:08:43Z 2008-10-23T01:08:43Z Yep. 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#227900 Comment by Menkboy on Solve the memory alignment in C interview question that stumped me Menkboy 2008-10-22T23:50:03Z 2008-10-22T23:50:03Z BTW '+15' works as well as '+16'...no practical impact in this situation though. http://stackoverflow.com/questions/224204/why-use-infinite-loops/224219#224219 Comment by Menkboy on Why use infinite loops? Menkboy 2008-10-22T04:20:03Z 2008-10-22T04:20:03Z I 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#224470 Comment by Menkboy on Constant value in conditional expression Menkboy 2008-10-22T04:17:08Z 2008-10-22T04:17:08Z Try it with /Wall http://stackoverflow.com/questions/224058/distributed-random-number-generation/224067#224067 Comment by Menkboy on Distributed Random Number Generation Menkboy 2008-10-22T01:23:37Z 2008-10-22T01:23:37Z @wnoise: (facepalm) Yep, that's lots cleaner than the current idea.