User Crashworks - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T06:41:31Zhttp://stackoverflow.com/feeds/user/53543http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1776233/x86-asm-instruction-set-any-searchable-offline-reference/1776376#17763761Answer by Crashworks for x86 asm instruction set: Any _searchable_ offline reference?Crashworks2009-11-21T18:56:55Z2009-11-21T18:56:55Z<p>I find that the Intel ref manuals come with a useful built-in indexing mechanism. Surprisingly enough, it is called the index.</p>
http://stackoverflow.com/questions/1747956/what-do-you-do-to-pass-time-during-long-operations-compiling-uploading-etc/1774216#17742160Answer by Crashworks for What do you do to pass time during long operations (compiling, uploading, etc)?Crashworks2009-11-21T01:41:33Z2009-11-21T01:41:33Z<p>When my workstation is tied up with a big compile, I switch to working on my other workstation. It's like hyperthreading.</p>
http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768438#17684382Answer by Crashworks for how to allocate a 2D array of pointers in c++Crashworks2009-11-20T05:02:24Z2009-11-20T22:17:20Z<pre><code>int *pointerArray[X][Y];
int **ptrToPointerArray = pointerArray;
</code></pre>
<p>That's how you make a true (contiguous in memory) multidimensional array.</p>
<p>But realize that once you cast a multidimensional array to a pointer like that, you lose the ability to index it automatically. You would have to do the multidimensional part of the indexing manually: </p>
<pre><code>int *pointerArray[8][6]; // declare array of pointers
int **ptrToPointerArray = &pointerArray[0][0]; // make a pointer to the array
int *foo = pointerArray[3][1]; // access one element in the array
int *bar = *(ptrToPointerArray + 3*8 + 1); // manually perform row-major indexing for 2d array
foo == bar; // true
int *baz = ptrToPointerArray[3][1]; // syntax error
</code></pre>
http://stackoverflow.com/questions/1705173/best-textbook-for-powerpc-assembly-and-arch1Best textbook for PowerPC assembly and arch?Crashworks2009-11-10T01:46:15Z2009-11-19T17:22:52Z
<p>Does anyone know of a good introductory textbook on the PowerPC architecture and assembly language that I could recommend to people on my team? </p>
<p>Our company now mostly targets a particular PPC platform for our realtime application, and some of the younger programmers on my team are struggling a bit with release-mode debugging and use of intrinsics. I think this is because they never had a clear, ground-up education on processor organization and the RISC instruction set, so I'd like to provide them with a textbook that can help them bootstrap into a complete understanding of registers, condition codes, and an ability to read assembly code. (Writing it isn't so important; what they really need is to be able to parse the "disassembly" pane of the debugger.)</p>
<p>I was thinking of something like <a href="http://rads.stackoverflow.com/amzn/click/0138768897" rel="nofollow">Dr. Richard Paul's <em>SPARC Architecture, Assembly Programming</em></a>, except targeting the PPC instead of the SPARC, since they haven't got a SPARC assembler to practice on. I <em>don't</em> want to just point them at <a href="http://tinyurl.com/y9ajoun" rel="nofollow">IBM's PEM</a>, because that isn't a very good tutorial; more important is a gentle introduction to the basics of RISC registers and calling conventions, before they get into the details of the PPC's particular quirks and instruction set.</p>
<p>I also considered starting them on x86 assembly (we target Intel too) and then doing an internal lecture or two on the differences between that and RISC, but x86 asm is such a mess that it seems like it would be an even more confusing place to start.</p>
http://stackoverflow.com/questions/1382636/which-32-bit-64-bit-cpu-architecture-has-the-easiest-instruction-set/1753149#17531491Answer by Crashworks for Which 32-bit/64-bit CPU architecture has the easiest instruction set?Crashworks2009-11-18T01:56:52Z2009-11-18T01:56:52Z<p>Well, most RISCs are very much alike, so if you know the PPC well, then transitioning to ARM, MIPS, or SPARC will all be a snap. I actually learnt SPARC first and then was able to pick up a MIPS and the PPC in a couple of hours.</p>
<p>The thing that makes the x86 so confusing isn't really its assembly language, but the design of the processor. People tend to get hung up on:</p>
<ul>
<li>Segmented memory addressing -- all those ds, cs, es registers: what do they mean, how are they combined with an index register to make a fully resolved memory address? There's actually <strong>three</strong> different ways that happens, so you're learning a bunch of different modes. </li>
<li>Nonorthogonal instruction set -- some instructions only work with certain registers, other instructions have meanings that overlap, some things look like they should be fast but are really slow, etc.</li>
<li>Register-memory architecture -- the x86 is designed to have few (named) registers, so that each opcode usually has one argument that is a register and another argument that is a memory address. This is different from the PPC's load-store arch, where the memory operations are explicit. Since the stack pointer tends to bounce around a lot, this can make it hard to figure out which variable is really being used!</li>
<li>Spastic stack pointer -- where most PPC calling conventions have you move the stack pointer just <em>once</em> on entering a function and then <em>once</em> when returning, typically x86 code will be <code>push</code>ing and <code>pop</code>ping all over the place. You end up counting the pushes and pops to figure out just where your stack pointer has gotten to, which always makes my head hurt.</li>
</ul>
<p>So, to get comfortable with the x86, divide and conquer: pick one of those points, learn how it works, then move on to the next. It may help to start by learning the calling conventions first, because that'll make all the other instructions that reference the stack pointer make more sense.</p>
http://stackoverflow.com/questions/1716663/c-memcpy-a-function/1719950#17199500Answer by Crashworks for C memcpy() a functionCrashworks2009-11-12T04:47:14Z2009-11-12T04:47:14Z<p>My suggestion is: don't.</p>
<p>Injecting code into kernel space is such an enormous security hole that <a href="http://en.wikipedia.org/wiki/Executable%5Fspace%5Fprotection" rel="nofollow">most modern OSes forbid self-modifying code altogether</a>. </p>
http://stackoverflow.com/questions/1713924/lower-bounds-for-floating-points/1714218#17142180Answer by Crashworks for Lower Bounds For Floating Points Crashworks2009-11-11T10:04:55Z2009-11-11T10:04:55Z<p>A useful reference here is <a href="http://www.physics.ohio-state.edu/~dws/grouplinks/floating%5Fpoint%5Fmath.pdf" rel="nofollow">What Every Computer Scientist Should Know About Floating-Point Arithmetic</a>.</p>
<p>The nature of a floating point number — its size, precision, limits — is really defined by the hardware, rather than the programming language. A single-precision float on an x86 is the same in C, C#, Java, and any other practical programming language. (The exception is esoteric programming languages that implement odd widths of floating point number in software.)</p>
http://stackoverflow.com/questions/1712713/suppress-c-compiler-warning-from-a-specific-line/1712809#17128090Answer by Crashworks for suppress C++ compiler warning from a specific lineCrashworks2009-11-11T03:25:22Z2009-11-11T03:25:22Z<p>Try <code>#pragma warning</code>.</p>
http://stackoverflow.com/questions/1704892/are-class-variables-included-in-the-7-2-guideline/1705026#17050260Answer by Crashworks for Are class variables included in the 7 +- 2 guideline?Crashworks2009-11-10T01:01:32Z2009-11-10T01:01:32Z<p>By the way, if you want a convenient means of grouping variables together in the IDE without having to actually put them into classes, MSVC supports the <a href="http://msdn.microsoft.com/en-us/library/b6xkz944%28VS.80%29.aspx" rel="nofollow">#pragma region</a> directive. That just lumps some lines of code together into regions that can be collapsed or expanded by clicking the little "+" icon to the left — it has no effect on the compiled result, it's just markup for the code editor.</p>
http://stackoverflow.com/questions/1684898/whats-the-most-efficient-way-to-compare-two-blocks-of-memory/1690870#16908700Answer by Crashworks for What's the most efficient way to compare two blocks of memory?Crashworks2009-11-06T22:20:01Z2009-11-07T01:37:06Z<p>I think memcmp is specified to do a byte-by-byte comparison, regardless of data type. Are you sure your compiler's implementation preserves string semantics? It shouldn't.</p>
http://stackoverflow.com/questions/1684978/which-one-is-preferred-return-const-double-or-return-double/1685360#16853600Answer by Crashworks for Which one is preferred, return const double& OR return double.Crashworks2009-11-06T04:13:43Z2009-11-06T04:13:43Z<p>The other answers have addressed the readability and code hygene implications of either approach. </p>
<p>As far as performance on the modern x86 archs is concerned, if the function is inline, it makes no difference either way. If the function is not inline, there is a <em>tiny</em> advantage to returning <code>double</code> rather than <code>const double &</code>, because the double just gets returned on a register, whereas the reference returns a pointer which must then be loaded through. But the one cycle cost of that is totally swamped by the penalty of having a non-inline function.</p>
http://stackoverflow.com/questions/1677415/does-stack-grow-upward-or-downward/1677482#16774828Answer by Crashworks for Does stack grow upward or downward?Crashworks2009-11-04T23:50:36Z2009-11-05T20:32:27Z<p>This is actually two questions. One is about which way <a href="http://en.wikipedia.org/wiki/Call%5Fstack" rel="nofollow">the stack grows when one function calls another</a> (when a new frame is allocated), and the other is about how variables are laid out in a particular function's frame. </p>
<p>Neither is specified by the C standard, but the answers are a little different:</p>
<ul>
<li><em>Which way does the stack grow when a new frame is allocated -- if function f() calls function g(), will <code>f</code>'s frame pointer be greater or less than <code>g</code>'s frame pointer?</em> This can go either way -- it depends on the particular compiler and architecture (look up "calling convention"), but <strong>it is always consistent within a given platform</strong> (with a few bizarre exceptions, see the comments). Downwards is more common; it's the case in x86, PowerPC, MIPS, SPARC, EE, and the Cell SPUs.</li>
<li><em>How are a function's local variables laid out inside its stack frame?</em> This is unspecified and completely unpredictable; the compiler is free to arrange its local variables however it likes to get the most efficient result.</li>
</ul>
http://stackoverflow.com/questions/1665390/does-stack-size-grow-during-runtime/1665396#16653964Answer by Crashworks for Does stack size grow during runtime?Crashworks2009-11-03T05:25:07Z2009-11-03T05:25:07Z<p>The amount of stack <em>used</em> certainly increases, as you allocate local variables and make function calls. Whether the stack's <i>maximum size</i> can grow is technically undefined, but in practice is generally constant. You can make the constant bigger with a flag to the OS, but usually each thread gets a certain size of stack. When you use too much, it's a stack overflow.</p>
http://stackoverflow.com/questions/1650048/strange-performance-problem/1664927#16649271Answer by Crashworks for Strange performance problem.Crashworks2009-11-03T02:43:49Z2009-11-03T02:43:49Z<p>You may be running into alignment problems. If Elt is some size other than the native alignment type, then allocating it via placement into a character array may involve a lot of unaligned reads that you don't see when the compiler aligns it for you. Or you may be running into a problem called a load-hit-store, which some processors manifest when they write a value to memory and then read it back immediately; in those processors, it can be a stall as long as a pipeline.</p>
<p>Or it may be something else entirely, some kind of pathological code generation by GCC.</p>
<p>Unfortunately stack traces don't help track down either of these issues, as they'd just look like a load operation (<code>lw</code>, <code>lb</code>, etc) that took forty cycles instead of one. The stall is in the microcode inside the CPU, not the x86 code you've written. But looking at the assembly with the <code>-S</code> commandline option can help you figure out what the compiler is really emitting, and how it differs between your two implementations. Maybe there's some bad operation cropping up in one version.</p>
http://stackoverflow.com/questions/1664089/c-pointer-to-int-to-get-elements-in-stack/1664116#16641169Answer by Crashworks for C - Pointer to int to get elements in stackCrashworks2009-11-02T22:23:26Z2009-11-02T22:23:26Z<p>You can just use <code>(s->sp - s->stk)</code>. Subtracting pointers yields a ptrdiff_t, which is a signed integral type.</p>
http://stackoverflow.com/questions/1649230/is-there-a-good-way-to-avoid-duplication-of-method-prototypes-in-c/1649269#16492699Answer by Crashworks for Is there a good way to avoid duplication of method prototypes in C++?Crashworks2009-10-30T11:26:43Z2009-10-30T11:26:43Z<p>There is an alternative, but the cure is worse than the illness — define all the function bodies in the header, or even inline in the class, like C#. The downsides are that this will bloat compile times significantly, and it'll annoy veteran C++ programmers. It can also get you into some annoying situations of circular dependency that, while solvable, are a nuisance to deal with.</p>
<p>Personally, I just set my IDE to have a vertical split, and put the header file on the right side and the source file on the left. </p>
http://stackoverflow.com/questions/1636293/c-optimization-of-reference-to-pointer-argument/1636405#16364050Answer by Crashworks for C++ optimization of reference-to-pointer argumentCrashworks2009-10-28T10:31:22Z2009-10-29T18:45:23Z<p>Yes, you should assign it to a local that you mark <code>restrict</code> (<code>__restrict</code> in MSVC). </p>
<p>The reason for this is that if <strong>the compiler cannot be absolutely sure that nothing else in the scope points at <code>p_in_out</code></strong>, it cannot store the contents under the pointer in a local register. It must read the data back <em>every time you write to any other <code>char *</code> in the same scope</em>. This is not an issue of whether it is a "smart" compiler or not; it is a consequence of correctness requirements. </p>
<p>By writing <code>char* __restrict p</code> you promise the compiler that <em>no other pointer in the same scope points to the same address as p</em>. Without this guarantee, the value of <code>*p</code> can change any time any other pointer is written to, or it may change the contents of some other pointer every time <code>*p</code> is written to. Thus, the compiler has to write out every assignment to <code>*p</code> back to memory immediately, and it has to read them back after every time another pointer is written through.</p>
<p>So, guaranteeing the compiler that <em>this cannot happen</em> — that it can load <code>*p</code> exactly once and assume no other pointer affects it — can be an improvement in performance. Exactly how much depends on the particular compiler and situation: on processors subject to a load-hit-store penalty, it's massive; on most x86 CPUs, it's modest. </p>
<p>The reason to prefer a pointer to a reference here is simply that a pointer can be marked <code>restrict</code> and a reference cannot. That's just the way C++ is.</p>
<p>You can try it both ways and measure the results to see which is really faster. And if you're curious, <a href="http://assemblyrequired.crashworks.org/2008/07/08/load-hit-stores-and-the-%5F%5Frestrict-keyword/" rel="nofollow">I've written in depth on <code>restrict</code> and the load-hit-store elsewhere</a>.</p>
<p><strong>addendum</strong>: after writing the above I realize that the people at Moz were more worried about the reference itself being aliased -- that is, that something else might point at the same address where <code>const char *p</code> is stored, rather than the char to which p points. But my answer is the same: under the hood, <code>const char *&p</code> means <code>const char **p</code>, and that's subject to the same aliasing issues as any other pointer.</p>
http://stackoverflow.com/questions/1640355/whats-the-low-level-difference-between-a-pointer-an-a-reference/1640362#164036211Answer by Crashworks for What's the low-level difference between a pointer an a reference?Crashworks2009-10-28T21:53:19Z2009-10-29T00:00:47Z<p>Theoretically, they could be implemented in different ways. </p>
<p>In practice, every compiler I've seen compiles pointers and references to the same machine code. The distinction is entirely at the language level. </p>
<p>But, like cdiggins says, you shouldn't <em>depend</em> on that generalization until you've verified it's true for your compiler and platform. </p>
http://stackoverflow.com/questions/1634231/c-hashtable-vs-c-hashmap/1634331#16343318Answer by Crashworks for C# Hashtable vs c++ hash_mapCrashworks2009-10-27T23:35:23Z2009-10-27T23:35:23Z<p>You need to compile the C++ code with compiler optimizations turned on for a fair comparison. Otherwise, you are comparing apples to debug builds — the compiler will not even <em>try</em> to emit fast code.</p>
<p>In GCC this would be the <code>-O3</code> flag, to start with.</p>
http://stackoverflow.com/questions/539836/emulating-variable-bit-shift-using-only-constant-shifts4Emulating variable bit-shift using only constant shifts?Crashworks2009-02-12T03:09:56Z2009-10-21T22:20:13Z
<p>I'm trying to find a way to perform an indirect shift-left/right operation without actually using the variable shift op or any branches. </p>
<p>The particular PowerPC processor I'm working on has the quirk that a shift-by-constant-immediate, like </p>
<pre><code>int ShiftByConstant( int x ) { return x << 3 ; }
</code></pre>
<p>is fast, single-op, and superscalar, whereas a shift-by-variable, like</p>
<pre><code>int ShiftByVar( int x, int y ) { return x << y ; }
</code></pre>
<p>is a <a href="http://www.cellperformance.com/articles/2006/04/avoiding_microcoded_instructio.html" rel="nofollow">microcoded operation that takes 7-11 cycles to execute while the entire rest of the pipeline stops dead</a>.</p>
<p>What I'd like to do is figure out which non-microcoded integer PPC ops the <a href="http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.aixassem/doc/alangref/sraw.htm" rel="nofollow">sraw</a> decodes into and then issue them individually. This won't help with the latency of the <a href="http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.aixassem/doc/alangref/sraw.htm" rel="nofollow">sraw</a> itself — it'll replace one op with six — but in between those six ops I can dual-dispatch some work to the other execution units and get a net gain. </p>
<p>I can't seem to find anywhere what μops sraw decodes into — does anyone know how I can replace a variable bit-shift with a sequence of constant shifts and basic integer operations? (A for loop or a switch or anything with a branch in it won't work because the branch penalty is even bigger than the microcode penalty.)</p>
<p>This needn't be answered in assembly; I'm hoping to learn the algorithm rather than the particular code, so an answer in C or a highlevel language or even pseudocode would be perfectly helpful.</p>
<p><b>edit:</b> A couple of clarifications that I should add:</p>
<ol>
<li>I'm not even a little bit worried
about portability </li>
<li><p>PPC has a conditional-move, so we can assume
the existence of a branchless
intrinsic function </p>
<p>int isel(a, b, c) { return a >= 0 ? b : c; }</p>
<p>(if you write out a ternary that
does the same thing I'll get what
you mean) </p></li>
<li>integer multiply is also
microcoded and even slower than sraw. :-(</li>
</ol>
http://stackoverflow.com/questions/1597704/verifying-that-c-c-signed-right-shift-is-arithmetic-for-a-particular-compiler/1597715#15977154Answer by Crashworks for Verifying that C / C++ signed right shift is arithmetic for a particular compiler ?Crashworks2009-10-20T22:39:43Z2009-10-20T22:39:43Z<p>Looks good to me! You can also set the compiler to emit an assembly file (or load the compiled program in the debugger) and look at which opcode it emits for <code>signed int i; i >> 1;</code>, but that's not automatic like your solution.</p>
<p>If you ever find a compiler that does not implement arithmetic right shift of a signed number, I'd like to hear about it.</p>
http://stackoverflow.com/questions/1592817/valgrind-deliberately-cause-segfault/1592916#15929162Answer by Crashworks for Valgrind: Deliberately cause segfaultCrashworks2009-10-20T07:03:57Z2009-10-20T07:08:59Z<p>Are you on x86? If so then there is actually an opcode in the CPU that means "invoke whatever debugger may be attached". This is opcode <code>CC</code>, or more commonly called <code>int 3</code>. Easiest way to trigger it is with inline assembly:</p>
<pre><code>inline void debugger_halt(void)
{
#ifdef MSVC
__asm int 3;
#elif defined(GCC)
asm("int 3");
#else
#pragma error Well, you'll have to figure out how to do inline assembly
in your compiler
#endif
}
</code></pre>
<p>MSVC also supports <code>__debugbreak()</code> which is a hardware break in unmanaged code and an MSIL "break" in slow code.</p>
http://stackoverflow.com/questions/1592632/de-referencing-null-in-vs-with-windows-7/1592652#15926525Answer by Crashworks for De-referencing null in VS with Windows 7Crashworks2009-10-20T05:33:44Z2009-10-20T05:33:44Z<p>The access violation exception is probably being caught by something higher up in the program. If you're using MSVC, under your "debug" menu, look at "Exceptions..." and make sure that "Access violation" is checked (to tell the debugger to give you a first-chance break when the exception is thrown, before it gets percolated up to the usual exception handlers).</p>
http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming/1592077#15920771Answer by Crashworks for C vs. Java for game programmingCrashworks2009-10-20T01:53:42Z2009-10-20T01:53:42Z<p>It's very hard to write a program that runs in constant memory without garbage collection in Java.</p>
http://stackoverflow.com/questions/1586368/assign-a-c-out-reference-to-something-that-was-destroyed/1586382#15863827Answer by Crashworks for Assign a C++ out reference to something that was destroyed?Crashworks2009-10-18T23:54:26Z2009-10-18T23:54:26Z<p>Remember that references are not like pointers: they cannot be <b>rebound</b> after their creation. That means that if I do</p>
<pre><code>int a;
int b;
int &c = a;
</code></pre>
<p>Then throughout that scope, an assignment to c will actually mean an assignment to a. So,</p>
<pre><code>int a = 2;
{
int b = 3;
int &c = a;
c = b;
b = -5;
}
printf("%d",a); // prints "3".
</code></pre>
<p>So, in this case, the reference is not being <b>pointed at</b> a deleted object. Rather, the return value of <code>m_q.front()</code> is <b>copied into</b> whatever outVal references, via the assignment operator.</p>
http://stackoverflow.com/questions/1576126/iphone-and-floating-point-math/1576305#15763052Answer by Crashworks for iPhone and floating point mathCrashworks2009-10-16T05:48:32Z2009-10-16T05:48:32Z<p>A single-precision <code>float</code> has 23 bits of precision. That means that every calculation is rounded to 23 binary digits. This means that if you have a computation that, say, adds a very small number to a very large number, rounding may result in strange results.</p>
<p>Imagine that you are doing math in scientific notation decimal by hand, under the rule that you may only have four significant figures. Let's say I ask you to write twelve in scientific notation, with four significant figures. Remembering junior high school, you write:</p>
<p>1.200 × 10<sup>1</sup></p>
<p>Now I say compute the square of 12, and then add 0.5. That is easy enough:</p>
<p>1.440×10<sup>2</sup> + 0.005×10<sup>2</sup> = 1.445×10<sup>2</sup></p>
<p>How about twelve cubed plus 0.75:</p>
<p>1.728×10<sup>3</sup> + 0.00075×10<sup>3</sup> = 1.72875×10<sup>3</sup></p>
<p>But remember, I only gave you room for <b>four significant digits</b>, so you must <b>round</b>; then we get:</p>
<p>1.728×10<sup>3</sup> + 7.5×10<sup>-1</sup> = 1.729×10<sup>3</sup></p>
<p>See? The lack of precision can make the computation come out with unexpected results.</p>
<p>In your example, you've got 999999 in a calculation where you're trying to be precise to 0.01. log<sub>2</sub>(999999) = 19.93 and log<sub>2</sub>(0.01) = -6.64. The difference is more than 23; therefore you would need more than 23 binary digits to perform this calculation accurately.</p>
<p>Because floating point mathematics rounds-off precision by its very nature, it is usually a bad choice for currency computation, where you must be accurate to the last cent. But are you really concerned with fractions of a cent in your application? If not, then why not do away with the decimal point altogether, and simply store cents (instead of dollars) in a 64-bit integer? 2<sup>64</sup>¢ is more than the GDP of the entire planet.</p>
http://stackoverflow.com/questions/1552788/why-dont-minidumps-give-good-call-stacks/1552799#15527993Answer by Crashworks for Why don't Minidumps give good call stacks?Crashworks2009-10-12T05:01:21Z2009-10-12T05:08:01Z<p>What's missing from your callstack? Do you have a bunch of addresses that don't resolve to valid function names (ie, 0x8732ae00 instead of CFoo:Bar())? If so, then what you need is to put your .PDBs where your debugger can find them, or set up a <a href="http://msdn.microsoft.com/en-us/library/b8ttk8zy%28VS.71%29.aspx" rel="nofollow">symbol server</a> and set the "Symbol Paths" in the right-click context menu of the Modules pane. </p>
<p>We store every .PDB from every binary every time someone checks in a new Perforce changelist, so that when a dump comes back from anyone inside the office or any customer at retail, we have the .PDB corresponding to the version of the game they were running. With the symbol server and paths set, all I have to do is just double-click the .mdmp and it works every time.</p>
<p>Or do you have a call stack that appears to only have one function in it? Like, 0x8538cf00 without anything else above it in the stack? If so, then your crash is actually the stack itself being corrupted. If the return addresses in the backchain have been overwritten, naturally the debugger will be unable to resolve them.</p>
<p>Sometimes also you'll find that the thread that actually emits the minidump is not the one that threw the exception that caused the crash. Look in the Threads window to see if one of the other threads has the offending code in it.</p>
<p>If you are debugging a "Release" build -- that is to say, one compiled with all optimization flags turned on -- you will have to live with the fact that the debugger will have trouble finding local variables and some other data. This is because turning on optimizations means allowing the compiler to keep data on registers, collapse calculations, and generally do a variety of things that prevents data from ever actually being written to the stack. If this is your problem then you'll need to open up the disassembly window and chase the data by hand, or rebuild a debug binary and reproduce the problem where you can look at it.</p>
http://stackoverflow.com/questions/1534466/what-kinds-of-applications-are-programmed-in-c-these-days/1534786#15347860Answer by Crashworks for What kinds of applications are programmed in C these days?Crashworks2009-10-07T23:31:56Z2009-10-07T23:31:56Z<p>Robots. </p>
http://stackoverflow.com/questions/1528727/why-is-sse-scalar-sqrtx-slower-than-rsqrtx-x5Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?Crashworks2009-10-06T23:45:32Z2009-10-07T00:49:23Z
<p>I've been profiling some of our core math on an Intel Core Duo, and while looking at various approaches to square root I've noticed something odd: using the SSE scalar operations, it is faster to take a reciprocal square root and multiply it to get the sqrt, than it is to use the native sqrt opcode!</p>
<p>I'm testing it with a loop something like:</p>
<pre><code>inline float TestSqrtFunction( float in );
void TestFunc()
{
#define ARRAYSIZE 4096
#define NUMITERS 16386
float flIn[ ARRAYSIZE ]; // filled with random numbers ( 0 .. 2^22 )
float flOut [ ARRAYSIZE ]; // filled with 0 to force fetch into L1 cache
cyclecounter.Start();
for ( int i = 0 ; i < NUMITERS ; ++i )
for ( int j = 0 ; j < ARRAYSIZE ; ++j )
{
flOut[j] = TestSqrtFunction( flIn[j] );
// unrolling this loop makes no difference -- I tested it.
}
cyclecounter.Stop();
printf( "%d loops over %d floats took %.3f milliseconds",
NUMITERS, ARRAYSIZE, cyclecounter.Milliseconds() );
}
</code></pre>
<p>I've tried this with a few different bodies for the TestSqrtFunction, and I've got some timings that are really scratching my head. The worst of all by far was using the native sqrt() function and letting the "smart" compiler "optimize". At 24ns/float, using the x87 FPU this was pathetically bad:</p>
<pre><code>inline float TestSqrtFunction( float in )
{ return sqrt(in); }
</code></pre>
<p>The next thing I tried was using an intrinsic to force the compiler to use SSE's scalar sqrt opcode:</p>
<pre><code>inline void SSESqrt( float * restrict pOut, float * restrict pIn )
{
_mm_store_ss( pOut, _mm_sqrt_ss( _mm_load_ss( pIn ) ) );
// compiles to movss, sqrtss, movss
}
</code></pre>
<p>This was better, at 11.9ns/float. I also tried <a href="http://www.beyond3d.com/content/articles/8/" rel="nofollow">Carmack's wacky Newton-Rhapson approximation technique</a>, which ran even better than the hardware, at 4.3ns/float, although with an error of 1 in 2<sup>10</sup> (which is too much for my purposes). </p>
<p>The doozy was when I tried the SSE op for <em>reciprocal</em> square root, and then used a multiply to get the square root ( x * 1/√x = √x ). Even though this takes two dependent operations, it was the fastest solution by far, at 1.24ns/float and accurate to 2<sup>-14</sup>:</p>
<pre><code>inline void SSESqrt_Recip_Times_X( float * restrict pOut, float * restrict pIn )
{
__m128 in = _mm_load_ss( pIn );
_mm_store_ss( pOut, _mm_mul_ss( in, _mm_rsqrt_ss( in ) ) );
// compiles to movss, movaps, rsqrtss, mulss, movss
}
</code></pre>
<p>My question is basically <em>what gives</em>? <strong>Why is SSE's built-in-to-hardware square root opcode <em>slower</em> than synthesizing it out of two other math operations?</strong></p>
<p>I'm sure that this is really the cost of the op itself, because I've verified:</p>
<ul>
<li>All data fits in cache, and
accesses are sequential </li>
<li>the functions are inlined</li>
<li>unrolling the loop makes no difference</li>
<li>compiler flags are set to full optimization (and the assembly is good, I checked)</li>
</ul>
<p>(<strong>edit</strong>: stephentyrone correctly points out that operations on long strings of numbers should use the vectorizing SIMD packed ops, like <code>rsqrtps</code> — but the array data structure here is for testing purposes only: what I am really trying to measure is <em>scalar</em> performance for use in code that can't be vectorized.)</p>
http://stackoverflow.com/questions/1518177/how-does-binary-translate-to-hardware/1518203#15182031Answer by Crashworks for How does binary translate to hardware?Crashworks2009-10-05T03:54:01Z2009-10-05T03:54:01Z<p>This is a huge, very complicated topic. The best textbook I've seen on the subject is <a href="http://rads.stackoverflow.com/amzn/click/1558604286" rel="nofollow">Patterson/Hennesy's "Computer Organization and Design"</a>, which has many editions.</p>
<p>Other than suggesting you read it, I wouldn't dare try to cram a semester-long class into a 500-character answer box.</p>
http://stackoverflow.com/questions/1793678/c-an-impossible-behavior/1793830#1793830Comment by Crashworks on C++, an "impossible" behaviorCrashworks2009-11-25T00:18:08Z2009-11-25T00:18:08ZAnd that's why the disassembler window is always my first stop in debugging.http://stackoverflow.com/questions/1793678/c-an-impossible-behaviorComment by Crashworks on C++, an "impossible" behaviorCrashworks2009-11-24T23:28:49Z2009-11-24T23:28:49ZAre you running a "debug" or "release" build? The optimizations in a release build are such that sometimes the debugger watch window will completely lie to you about your variables.http://stackoverflow.com/questions/1785572/why-should-one-bother-with-preprocessor-directives/1785622#1785622Comment by Crashworks on Why should one bother with preprocessor directives?Crashworks2009-11-24T01:54:50Z2009-11-24T01:54:50ZThis is especially important in cases where there are functions that exist on one platform but not another -- like compiler intrinsics, which wrap SSE opcodes on the x86 and VMX opcodes on PPC, etc. In this case there is no viable alternative to using #ifdef, because templates will try to compile code using the nonexistent functions, even if only to later throw them away.http://stackoverflow.com/questions/1773581/string-to-float-in-cComment by Crashworks on String to float in CCrashworks2009-11-20T22:18:41Z2009-11-20T22:18:41ZCan you always count on there being a \n after the number? http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768438#1768438Comment by Crashworks on how to allocate a 2D array of pointers in c++Crashworks2009-11-20T22:17:10Z2009-11-20T22:17:10ZGood grief! Bjarne just loves to make trouble. I've made the correction.http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768311#1768311Comment by Crashworks on how to allocate a 2D array of pointers in c++Crashworks2009-11-20T08:53:42Z2009-11-20T08:53:42Z@Martin, well, the standard specifies a multidimensional array as contiguous (8.3.4). So, the requirement depends on what he meant by "2D array": if he means what the C++ standard calls a 2D array, then yes, it must be contiguous. If he just means something that has two subscripts, then heck, just use a <code>vector<vector<int *> ></code>.http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768382#1768382Comment by Crashworks on how to allocate a 2D array of pointers in c++Crashworks2009-11-20T08:46:02Z2009-11-20T08:46:02ZIt depends on what OP means by "2d array". If he simply means something that can be accessed with two subscript operators <code>a[n][m]</code>, then yes, this is duck-typed as a multidim array. If he means what the standard specifies as a 2D array, which is a contiguous region of n*m many elements, then a 1D array of pointers to 1D arrays is not the same thing.http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768438#1768438Comment by Crashworks on how to allocate a 2D array of pointers in c++Crashworks2009-11-20T08:41:39Z2009-11-20T08:41:39ZTrue. However, conversion from int*[] to int**, which is what I do here, is automatic.http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768311#1768311Comment by Crashworks on how to allocate a 2D array of pointers in c++Crashworks2009-11-20T06:38:16Z2009-11-20T06:38:16ZBut it's still not contiguous.http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768450#1768450Comment by Crashworks on how to allocate a 2D array of pointers in c++Crashworks2009-11-20T05:09:16Z2009-11-20T05:09:16ZIsn't that an array of pointers to arrays?http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768382#1768382Comment by Crashworks on how to allocate a 2D array of pointers in c++Crashworks2009-11-20T05:03:04Z2009-11-20T05:03:04ZThat's more like a pointer to an array of pointers to arrays.http://stackoverflow.com/questions/1382636/which-32-bit-64-bit-cpu-architecture-has-the-easiest-instruction-set/1753149#1753149Comment by Crashworks on Which 32-bit/64-bit CPU architecture has the easiest instruction set?Crashworks2009-11-19T06:17:42Z2009-11-19T06:17:42ZIt's somewhere between ABI and hardware. You could theoretically use stack like a RISC chip, but there are a bunch of flow control instructions (<code>ret</code>, <code>enter</code>, <code>leave</code>, etc) that implicitly assume moving the stack pointer around. And every compiler I've seen uses <code>push</code> and <code>pop</code> in that way, which makes theoretical possibilities a moot point for me since my primary use of x86 assembly is to debug or interface with code that a compiler has generated.http://stackoverflow.com/questions/1733281/strlen-implementation-in-gcc/1733288#1733288Comment by Crashworks on strlen() implementation in gccCrashworks2009-11-14T04:37:31Z2009-11-14T04:37:31ZDifferent compilers keep their CRT functions in different places.http://stackoverflow.com/questions/1722260/what-creates-the-stackComment by Crashworks on What creates the stack?Crashworks2009-11-12T21:12:48Z2009-11-12T21:12:48ZStack elves. They dwell under the northbridge.http://stackoverflow.com/questions/1716456/lisp-as-a-scripting-language-in-a-c-app/1716552#1716552Comment by Crashworks on Lisp as a Scripting Language in a C++ app...Crashworks2009-11-12T04:51:30Z2009-11-12T04:51:30ZA prior job of mine had very good success with implementing a Scheme-like language for runtime scripting. (We couldn't just use Guile for memory and performance reasons, but it was basically a subset of Scheme.)