User SoapBox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:35:00Z http://stackoverflow.com/feeds/user/36384 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1855482/how-to-properly-initialize-class-value-member/1855491#1855491 0 Answer by SoapBox for How to properly initialize class value member? SoapBox 2009-12-06T14:11:06Z 2009-12-06T14:11:06Z <ol> <li>No, you want it the way you have it*.</li> <li>If you pass this as a value instead of a reference, the copy constructor on Bar() will be called, which would have performance implications (depending on how complicated the copy constructor is).</li> </ol> <p>*Note: The way you have it, you cannot do <code>new Foo(Bar())</code> because you can't pass a reference to Bar(), you need to have an object instance in a variable for that.</p> http://stackoverflow.com/questions/1847053/how-to-get-address-of-base-stack-pointer/1847109#1847109 2 Answer by SoapBox for How to get address of base stack pointer SoapBox 2009-12-04T14:01:35Z 2009-12-04T14:07:32Z <p>The really right thing to do would be to rewrite whatever this function does so that it does not require access to the actual frame pointer. That is definitely bad behavior.</p> <p>But, to do what you are looking for you should be able to do:</p> <pre><code>int CallStackSize() { __int64 Frame = 0; /* MUST be the very first thing in the function */ PDWORD pFrame; Frame++; /* make sure that Frame doesn't get optimized out */ pFrame = (PDWORD)(&amp;Frame); /*... do stuff with pFrame here*/ } </code></pre> <p>The reason this works is that in C usually the first thing a function does is save off the location of the base pointer (ebp) before allocating local variables. By creating a local variable (Frame) and then getting the address of if, we're really getting the address of the start of this function's stack frame.</p> <p>Note: Some optimizations could cause the "Frame" variable to be removed. Probably not, but be careful.</p> <p>Second Note: Your original code and also this code manipulates the data pointed to by "pFrame" when "pFrame" itself is on the stack. It is possible to overwrite pFrame here by accident and then you would have a bad pointer, and could get some weird behavior. Be especially mindful of this when moving from x86 to x64, because pFrame is now 8 bytes instead of 4, so if your old "do stuff with pFrame" code was accounting for the size of Frame and pFrame before messing with memory, you'll need to account for the new, larger size.</p> http://stackoverflow.com/questions/1844510/c-string-to-float/1844515#1844515 3 Answer by SoapBox for C# string to float? SoapBox 2009-12-04T02:36:40Z 2009-12-04T02:36:40Z <pre><code>MyArray[i, j] = Convert.ToSingle(sites[j]); </code></pre> http://stackoverflow.com/questions/895786/how-to-get-the-cookies-from-a-php-curl-into-a-variable/895802#895802 0 Answer by SoapBox for how to get the cookies from a php curl into a variable SoapBox 2009-05-21T23:36:41Z 2009-05-21T23:36:41Z <p>If you use CURLOPT_COOKIE_FILE and CURLOPT_COOKIE_JAR curl will read/write the cookies from/to a file. You can, after curl is done with it, read and/or modify it however you want.</p> http://stackoverflow.com/questions/815961/how-to-determine-the-content-length-of-a-gzipped-file/815971#815971 1 Answer by SoapBox for How to determine the Content-Length of a gzipped file? SoapBox 2009-05-03T00:15:48Z 2009-05-03T00:15:48Z <p>To solve your firefox issue, I think you need to include <code>header( "Content-Encoding: gzip" );</code> so that the browser knows to decompress the content.</p> <p>As for the content length, you can try just leaving this value off, or try to figure out a way to use "Transfer-Encoding: chunked" (you can't jsut send this header, you need to format the data specially for it). It is possible that <code>ob_end_flush</code> automatically enables chunking.</p> <p>I recommend you get wireshark and capture what your php script is sending and compare it to a properly behaving server to see what headers, etc are missing.</p> http://stackoverflow.com/questions/791991/about-assembly-cfcarry-and-ofoverflow-flag/792014#792014 0 Answer by SoapBox for about assembly CF(Carry) and OF(Overflow) flag SoapBox 2009-04-27T01:47:01Z 2009-04-27T01:47:01Z <p>Usually assembly programs carry no special information around with variables to indicate whether they are signed or unsigned. It's the programmer's job to know when to check which flags and when to use which conditionals (i.e. using JA instead of JG).</p> <p>So you need to know what type of variable you're about to work with so that you know which commands to use. This is why most programming languages give warnings when programmers use signed/unsigned types interchangeably (i.e. without an explicit cast), since this can be done in the hardware but can yield unexpected results.</p> http://stackoverflow.com/questions/711437/how-to-read-write-into-pipe-via-dup2-with-stdin-and-stdout/711460#711460 0 Answer by SoapBox for how to read() write() into pipe() via dup2() with stdin and stdout SoapBox 2009-04-02T20:25:53Z 2009-04-02T20:25:53Z <p>Displaying three calendars at once has nothing to do with forking processes and really you don't need to get in to pipes and stuff.</p> <p>What you want to use is the <a href="http://linux.die.net/man/3/ncurses" rel="nofollow">ncurses</a> library to do special control of your output. </p> http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699632#699632 3 Answer by SoapBox for The best 500 word (or less) description of how a CPU works? SoapBox 2009-03-31T00:50:48Z 2009-03-31T00:50:48Z <p>I don't think there is a description of a CPU succinct enough to fit your initial requirements. Perhaps if you narrowed it down by grade level a bit, since obviously 12th graders can conceptualize a lot better than 7th graders.</p> <p>Still, I think all of the things they "wonder" do lend themselves to a few short lessons if you have the extra class time to teach them.</p> <p>I think even an "advanced math" 7th grade can handle a little bit of "5-bit" simple math (addition, subtraction, multiplication). Being able to count to 31 on one hand is a pretty cool trick.</p> <p>Interrupts are really a rather simple concept, and they are the heart of how the CPU "knows what to execute next." Where the instructions come from (memory) is pretty obvious, but once you understand how the CPU switches between programs and that EVERYTHING (even the OS) is the same type of code, this falls more in to place.</p> <p>Once you have that down, you could introduce them to MIPS o some other RISC instruction set which has very few operations or even create your own very simple instruction set which demonstrates how just a few operations can do a whole lot. Maybe even practice writing simple assembly using this fake instruction set. To make it easier than real assembly, you can name the instructions more obviously, forget the whole concept of registers (just let them use variable names), etc. </p> <p>Five hundred words though really isn't going to do it justice, but I think 5 or so class hours while being just a "taste" could actually provide a lot of information, and of course peak some interest to learn more... which is really the whole point anyways.</p> http://stackoverflow.com/questions/695212/most-efficient-way-to-retrieve-the-source-of-a-website-through-php-get-request/695223#695223 3 Answer by SoapBox for Most efficient way to retrieve the source of a website through PHP? (GET Request) SoapBox 2009-03-29T19:42:16Z 2009-03-29T19:42:16Z <p>The code you have is probably the fastest and simplest way of doing what you're talking about. However, it isn't very flexible if you want to do more complex tasks (like posting, or supporting HTTP 1.1 stuff like Content-Encoding and Transfer-Encoding).</p> <p>If you want something that will handle more complex cases and such, use php <a href="http://php.net/curl" rel="nofollow">cURL</a>.</p> http://stackoverflow.com/questions/693637/output-echo-print-everything-from-a-php-array/693649#693649 3 Answer by SoapBox for Output (echo/print) everything from a PHP Array SoapBox 2009-03-28T22:21:58Z 2009-03-28T22:21:58Z <p>I think you are looking for <a href="http://us2.php.net/print%5Fr" rel="nofollow">print_r</a> which will print out the array as text. You can't control the formatting though, it's more for debugging. If you want cool formatting you'll need to do it manually.</p> http://stackoverflow.com/questions/667938/fast-case-counting 0 Fast case counting SoapBox 2009-03-20T20:50:13Z 2009-03-21T16:16:54Z <p>I have a large number of strings to process in php. I want to "fix" them to be title case (using <code>ucwords(strtolower($str))</code>) but only if they are all upper or all lower case already. If they are already mixed case, I'd just rather just leave them as they are.</p> <p>What is the fastest way to check for this? It seems like <code>for</code>ing through the string would be a rather slow way to go about it.</p> <p>Here's what I have, which I think will be too slow:</p> <pre><code>function fixCase($str) { $uc = 0; $lc = 0; for($i=0;$i&lt;strlen($str);$i++) { if ($str[$i] &gt;= 'a' &amp;&amp; $str[$i] &lt;= 'z') $lc++; else if ($str[$i] &gt;= 'A' &amp;&amp; $str[$i] &lt;= 'Z') $uc++; } if ($uc == 0 || $lc == 0) { return ucwords(strtolower($str)); } } </code></pre> http://stackoverflow.com/questions/667938/fast-case-counting/668234#668234 0 Answer by SoapBox for Fast case counting SoapBox 2009-03-20T22:28:21Z 2009-03-20T22:28:21Z <p>Well I decided to do a test of the 2 proposed answers thus far and my original solution. I wouldn't have thought the results would turn out this way, but I guess native methods are /that/ much faster over all.</p> <p>Code:</p> <pre><code>function method1($str) { if (strcmp($str, strtolower($str)) == 0) { return ucwords($str); } else if (strcmp($str, strtoupper($str)) == 0) { return ucwords(strtolower($str)); } else { return $str; } } // returns 0 if non-alphabetic char, 1 if uppercase, 2 if lowercase function getCharType($char) { if ($char &gt;= 'A' &amp;&amp; $char &lt;= 'Z') { return 1; } else if ($char &gt;= 'a' &amp;&amp; $char &lt;= 'z') { return 2; } else { return 0; } } function method2($str) { for ($i = 0; $i &lt; strlen($str); $i++) { $charType = getCharType($str[$i]); if ($charType != 0) { $firstCharType = $charType; break; } } for ($i = $i + 1; $i &lt; strlen($str); $i++) { $charType = getCharType($str[$i]); if ($charType != $firstCharType &amp;&amp; $charType != 0) { return $str; } } if ($firstCharType == 1) // uppercase, need to convert to lower first { return ucwords(strtolower($str)); } else if ($firstCharType == 2) // lowercase, can just ucwords() it { return ucwords($str); } else // there were no letters at all in the string, just return it { return $str; } } function method0($str) { $uc = 0; $lc = 0; for($i=0;$i&lt;strlen($str);$i++) { if ($str[$i] &gt;= 'a' &amp;&amp; $str[$i] &lt;= 'z') $lc++; else if ($str[$i] &gt;= 'A' &amp;&amp; $str[$i] &lt;= 'Z') $uc++; } if ($uc == 0 || $lc == 0) { return ucwords(strtolower($str)); } } function test($func,$s) { $start = gettimeofday(true); for($i = 0; $i &lt; 1000000; $i++) { $s4 = $func($s); } $end = gettimeofday(true); echo "$func Time: " . ($end-$start) . " - Avg: ".sprintf("%.09f",(($end-$start)/1000000))."\n"; } $s1 = "first String"; $s2 = "second string"; $s3 = "THIRD STRING"; test("method0",$s1); test("method0",$s2); test("method0",$s3); test("method1",$s1); test("method1",$s2); test("method1",$s3); test("method2",$s1); test("method2",$s2); test("method2",$s3); </code></pre> <p>Results:</p> <pre><code>method0 Time: 19.2899270058 - Avg: 0.000019290 method0 Time: 20.8679389954 - Avg: 0.000020868 method0 Time: 24.8917310238 - Avg: 0.00002489 method1 Time: 3.07466816902 - Avg: 0.000003075 method1 Time: 2.52559089661 - Avg: 0.000002526 method1 Time: 4.06261897087 - Avg: 0.000004063 method2 Time: 19.2718701363 - Avg: 0.000019272 method2 Time: 35.2485661507 - Avg: 0.000035249 method2 Time: 29.3357679844 - Avg: 0.000029336 </code></pre> http://stackoverflow.com/questions/656504/how-to-overwrite-stdout-in-c/656528#656528 8 Answer by SoapBox for How to overwrite stdout in C SoapBox 2009-03-18T00:20:38Z 2009-03-18T00:20:38Z <p>In addition to \r and \b, take a look at <a href="http://linux.die.net/man/3/ncurses" rel="nofollow">ncurses</a> for some advanced control over what's on the console screen. (Including columns, moving around arbitrarily, etc).</p> http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows/627992#627992 4 Answer by SoapBox for Serial comm with PHP on Windows SoapBox 2009-03-09T20:50:55Z 2009-03-09T20:50:55Z <p>The easiest way to tackle this would be to write a program in another language (such as C++) and then execute it from your php script with <code>system()</code>. Doing Comm I/O in C++ is trivial.</p> <p>This assumes you have enough access to the server to configure it to allow the executable to be run by php, etc.</p> http://stackoverflow.com/questions/625784/how-can-i-write-a-generic-c-function-for-calling-a-win32-function/625833#625833 5 Answer by SoapBox for How can I write a generic C function for calling a Win32 function? SoapBox 2009-03-09T11:09:38Z 2009-03-09T11:09:38Z <p>No, I don't think its possible to do with without writing some assembly. The reason is you need precise control over what is on the stack before you call the target function, and there's no real way to do that in pure C. It is, of course, simple to do in Assembly though.</p> <p>Also, you're using PCSTR for all of these arguments, which is really just <code>const char *</code>. But since all of these args aren't strings, what you actually want to use for return value and for Arguments[] is <code>void *</code> or <code>LPVOID</code>. This is the type you should use when you don't know the true type of the arguments, rather than casting them to <code>char *</code>.</p> http://stackoverflow.com/questions/601219/overloading-operator-c/601245#601245 1 Answer by SoapBox for Overloading operator << - C++ SoapBox 2009-03-02T04:08:11Z 2009-03-02T04:08:11Z <p>The operator is not correctly overloaded here. There is no reason to make the operator a friend since it can be a member of the class. Friend is for functions which are not actual members of the class (such as when overloading &lt;&lt; for ostream so the object can be output to cout or ofstreams).</p> <p>What you actually want the operator to be:</p> <pre><code>ExtendedVector&amp; operator&lt;&lt;(const std::string str){ AddChar(str); return *this; } </code></pre> <p>It is usually considered bad practice to overload operators in a way that has them do something than they do normally. &lt;&lt; is normally bit shift, so overloading it this way can be confusing. Obviously STL overloads &lt;&lt; for "stream insertion" and so along with that it <em>might</em> make sense to overload it for your use in a similar way. But that doesn't seem like what you're doing, so you probably want to avoid it.</p> <p>There are no performance issues since operator overloading is the same as a regular function call, just the call is hidden because it is done automatically by the compiler.</p> http://stackoverflow.com/questions/600228/creating-opening-events-in-c-and-checking-if-they-are-fired/600245#600245 0 Answer by SoapBox for Creating/Opening Events in C++ and checking if they are fired SoapBox 2009-03-01T18:30:05Z 2009-03-01T18:30:05Z <p>Your code should work as you've described it. If the event already exists when you try to create it, you will get a handle to the existing event.</p> <p>Handles are different per-thread, so you needn't worry if they are different (they should be).</p> <p>I suggest you simplify a little bit to see if things are working the way you expect. The fact that you're using WaitForMultipleObjects() tells me you have other stuff going on. If you think it's not working, get rid of the other stuff and see if you can figure it out.</p> http://stackoverflow.com/questions/593311/autorun-inf-cannot-deal-with-the-sub-folders-with-space-in-their-folder-name/593317#593317 0 Answer by SoapBox for Autorun.inf cannot deal with the sub-folders with space in their folder name? SoapBox 2009-02-27T02:31:35Z 2009-02-27T02:31:35Z <p>In addition to doing as Thomas suggests and using quotes, you can also use the short/"DOS" style names. Which are the first 6 letters of the name followed by a tilde (~) and then a number. So "FOLDER NAME 1" would usually become "FOLDER~1".</p> http://stackoverflow.com/questions/588307/c-obtaining-milliseconds-time-on-linux-clock-doesnt-seem-to-work-properly/588333#588333 2 Answer by SoapBox for C++ obtaining milliseconds time on linux -- clock() doesn't seem to work properly SoapBox 2009-02-25T23:07:12Z 2009-02-25T23:07:12Z <p>clock() doesn't return milliseconds or seconds on linux. Usually clock() returns microseconds on a linux system. The proper way to interpret the value returned by clock() is to divide it by CLOCKS_PER_SEC to figure out how much time has passed.</p> http://stackoverflow.com/questions/584441/things-to-consider-before-applying-or-signing-an-offer/584452#584452 0 Answer by SoapBox for Things to consider before applying or signing an offer SoapBox 2009-02-25T01:54:43Z 2009-02-25T01:54:43Z <p>When applying, I ship my resume to just about anyone who is in the kind of business I want to work in. As long as I haven't heard anything negative about them. Everything else you can learn once you get an interview... it never hurts to have more people looking at your resume.</p> <p>As for accepting offers, I haven't had hardly any experience with that. Both of my post-college jobs I have sort of "hand selected" the companies as being the only ones offering what I wanted, so there wasn't much to decide on (i.e. no competing offers makes the choice real easy). </p> <p>I guess my advice would be "go with your gut." You'll know which sounds like a better place to work or which is offering cooler projects. Also, of course, talk to people... but usually there isn't a lot of extra information to be found and it comes down to if they seem like a good place to work for and if they have the work you want.</p> http://stackoverflow.com/questions/575317/drain-the-instruction-pipeline-of-intel-core-2-duo/575334#575334 6 Answer by SoapBox for Drain the instruction pipeline of Intel Core 2 Duo? SoapBox 2009-02-22T18:05:48Z 2009-02-22T20:06:58Z <p>To my knowledge, there is no instruction which specifically "drains" the pipeline. This can be easily accomplished though using a serialising instruction.</p> <p>CPUID is a serializing instruction, which means exactly what you're looking for. Every instruction issues before it is guaranteed to execute before the CPUID instruction.</p> <p>So doing the following should get the desired effect:</p> <pre><code>cpuid rdtsc # stuff cpuid rdtsc </code></pre> <p>But, as an aside, I don't recommend that you do this. Your "stuff" can still be effected by a lot of other things outside of your control (such as CPU caches, other processes running on the system, etc), and you'll never be able to eliminate them all. The best way to get accurate performance statistics is to perform the operation(s) you want to measure at least several million times and average out the execution time of the batch.</p> <p><strong>Edit:</strong> Most instruction references for CPUID will mention its serializing properties, such as the <a href="http://webster.cs.ucr.edu/AsmTools/NASM/Doc/NASMDOCA.HTM#section-A.29" rel="nofollow">NASM manual appendix B </a>.</p> <p><strong>Edit 2</strong>: Also might want to take a look at <a href="http://stackoverflow.com/questions/505738/how-to-accurately-measure-clock-cycles-used-by-a-c-function/">this related question</a>.</p> http://stackoverflow.com/questions/574990/64-bit-linux-assembly-language-issues/574999#574999 4 Answer by SoapBox for 64-bit linux, Assembly Language, Issues? SoapBox 2009-02-22T14:32:43Z 2009-02-22T14:39:14Z <p>Your code examples should all still work. 64-bit processors and operating systems can still run 32-bit code in a sort of "compatability mode". Your assembly examples are no different. You may have to provide an extra line of assembly or two (such as .BITS 32) but that's all.</p> <p>In general, using a 64-bit OS will be faster than using a 32-bit OS. x86_64 has more registers than i386. Since you're working on assembly, you already know what registers are used for... Having more of them means less stuff has to be moved on and off the stack (and other temporary memory) thus your program spends less time managing data and more time working on that data.</p> <p><strong>Edit</strong>: To compile 32-bit code on 64-bit linux using gas, you just use the commandline argument "--32", as noted in <a href="http://sourceware.org/binutils/docs-2.19/as/i386_002dOptions.html#i386_002dOptions" rel="nofollow">the GAS manual</a></p> http://stackoverflow.com/questions/574973/exposing-a-class-from-a-c-dll/574981#574981 0 Answer by SoapBox for Exposing a class from a c++ dll ? SoapBox 2009-02-22T14:14:38Z 2009-02-22T14:14:38Z <p>Googling for "class dllexport" resulted in <a href="http://msdn.microsoft.com/en-us/library/81h27t8c(VS.80).aspx" rel="nofollow">this page from MSDN</a> as the first result.</p> <p>The page seems to indicate just having <code>__declspec(dllexport)</code> is all you need to do.</p> http://stackoverflow.com/questions/571568/is-there-a-way-to-include-a-header-in-every-compilation-unit-without-modifying-ev/571588#571588 8 Answer by SoapBox for Is there a way to include a header in every compilation unit without modifying every source file? SoapBox 2009-02-20T23:02:41Z 2009-02-20T23:02:41Z <p>You can do this with the "-D" gcc command line option.</p> <p>Example: <code>gcc -ansi -Wall -Dblah='mymacrohere()' blah.cpp</code></p> <p>See also: <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.3/gcc/Preprocessor-Options.html#Preprocessor-Options" rel="nofollow">GCC Manual, Command Line options, Preprocessor options</a></p> http://stackoverflow.com/questions/563036/what-is-elegant-code/563055#563055 33 Answer by SoapBox for What is "elegant" code? SoapBox 2009-02-18T22:05:35Z 2009-02-18T22:12:11Z <p>My rough definition of "elegant code":</p> <blockquote> <p>Code which is written such that the number of lines/statements is minimized while the readability and functionality is maximized.</p> </blockquote> <p>Or, to put it another way:</p> <blockquote> <p>The ratios of readability to number of statements and functionality to number of statements are both high.</p> </blockquote> <p>I've specifically included readability here. There are plenty of "one-liners" that get a lot done, but if no one can tell what they are doing, they aren't elegant.</p> http://stackoverflow.com/questions/563000/can-optimizations-affect-the-ability-to-debug-a-vc-app-using-its-pdb/563025#563025 1 Answer by SoapBox for Can optimizations affect the ability to debug a VC++ app using its PDB? SoapBox 2009-02-18T21:59:28Z 2009-02-18T21:59:28Z <p>Optimization can severely impact debugging on any platform (not just VC's PDB files).</p> <p>Exactly for the reasons you have mentioned, function inlining can in some cases completely confuse which instructions belong to which function (since sometimes they sort of belong to both).</p> <p>Also a common optimization is to do "dirty" stack frames (-fomit-frame-pointer in GCC) which causes the code to not track the top of stack. This is fine, it frees up an extra register (ebp on x86) for other operations. But it makes it nigh-impossible to unwind the stack to see what is actually going on. It also makes it nigh-impossible to find local variables and function parameters on the stack.</p> <p>In general: Don't expect to get useful debug information out of "release" builds. If debugging is that important, even on release, then you should be "releasing" debug builds instead.</p> http://stackoverflow.com/questions/558848/can-i-force-cache-coherency-on-a-multicore-x86-cpu/558900#558900 7 Answer by SoapBox for Can I force cache coherency on a multicore x86 CPU? SoapBox 2009-02-17T21:58:05Z 2009-02-17T22:03:27Z <p><code>volatile</code> only forces your code to re-read the value, it cannot control where the value is read from. If the value was recently read by your code then it will probably be in cache, in which case volatile will force it to be re-read from cache, NOT from memory.</p> <p>There are not a lot of cache coherency instructions in X86. There are prefetch instructions like prefetchnta. This tells the processor not to store the value in L1 cache, but it will still be in L2.</p> <p>I suspect that X86 cores automatically invalidate the cache of other cores on the same chip when ever a value is written back to memory. You should read the documentation to see if that is the case.</p> <p>If that is the case, then an <code>mfence</code> instruction will force execution to pause until the value has been written. (Force example, you can do an mfence before releasing a mutex to ensure another process doesn't begin execution before the value hits the memory bus.)</p> <p><strong>Edit</strong>: There is a <code>clflush</code> instruction in SSE2 and up which, according to the NASM instruction reference, "invalidates the cache line that contains the linear address specified by the source operand from all levels of the processor cache hierarchy." This combined with an <code>mfence</code> should get the intended behavior.</p> http://stackoverflow.com/questions/551579/get-bytes-from-a-stdvectorbool/551593#551593 0 Answer by SoapBox for Get bytes from a std::vector<bool> SoapBox 2009-02-15T21:07:12Z 2009-02-15T21:07:12Z <p>First, you want to use bit_vector instead of vector.</p> <p>Second, there is no way to do exactly what you want using bit_vector or vector. They are designed to be collections and their underlying format is hidden from you (thus it might decide to store each bool as an individual byte rather than packed as 8 bits per byte. </p> http://stackoverflow.com/questions/509726/how-to-compare-two-similar-g-s-assembly-outputs/509751#509751 0 Answer by SoapBox for How to compare two similar g++ -S assembly outputs? SoapBox 2009-02-04T01:28:34Z 2009-02-04T01:28:34Z <p>You could strip out the labels with a simple sed and replace them all with "label" or with spaces (and use "diff -w").</p> <p>That won't account for places where different registers have been used but the operations are the same. This can be quite common, adding a variable to a function can cause registers to be reallocated throughout the code in places not directly related. </p> <p>The only way to handle that is to write a program to specifically seek out and handle those cases. I don't think you will find any "simple" solution that will work under all conditions.</p> http://stackoverflow.com/questions/505738/how-to-accurately-measure-clock-cycles-used-by-a-c-function/505786#505786 1 Answer by SoapBox for How to accurately measure clock cycles used by a c++ function? SoapBox 2009-02-03T02:01:05Z 2009-02-03T02:01:05Z <p>Adding to the list of causes: branch prediction/misprediction (this can be effected by a context switch with complex prediction caches on some chips. Also prediction can be affected by different inputs to your program and so direct comparison between the time for two different data sets can be slightly skewed.</p> <p>In general, it is nigh impossible to mitigate all of these, but there are some things you can do to <em>help</em> each one:</p> <ul> <li>Cache miss: "Prime" the cache before beginning timing. Don't forget there is an instruction cache which also needs to be primed. For small data sets just run the entire test once without timing, then run it again with timing. For large data sets do this, but then use the processor's precache instruction to load the first data block back in to the cache.</li> <li>Context switch: Use a multi-processor/core chip on a lightly loaded system and set the process's affinity to a specific CPU (preferably not CPU 0). This will also help with cache misses (since moving CPUs means the cache is completely lost) and branch prediction (since really it is a form of cache).</li> </ul> <p>But, of course, by far the best method of doing timings like this is to do them very many times on very large pieces of data such that the variability introduced by things you can't control is minimized. (It can never really be erased.)</p> http://stackoverflow.com/questions/1856124/circular-linked-list/1856140#1856140 Comment by SoapBox on circular linked list SoapBox 2009-12-06T18:42:32Z 2009-12-06T18:42:32Z This compiles using gcc 4.3.2: main() { void *p = &amp;p; } http://stackoverflow.com/questions/1855663/printf-seems-to-mess-the-output-of-a-simple-c-program Comment by SoapBox on Printf seems to mess the output of a simple C program SoapBox 2009-12-06T15:36:50Z 2009-12-06T15:36:50Z The top number in a fraction is called the &quot;Numerator,&quot; not the &quot;enumerator.&quot; http://stackoverflow.com/questions/1852395/can-c-is-a-pure-object-orinted-language-as-compare-to-java-and-c Comment by SoapBox on Can C# is a pure object orinted language as compare to java and c++ SoapBox 2009-12-05T14:59:48Z 2009-12-05T14:59:48Z I think it says &quot;Please Explain&quot; because its a blatant copy from a homework question.... http://stackoverflow.com/questions/885908/while-1-vs-for-is-there-a-speed-difference/885922#885922 Comment by SoapBox on while (1) Vs. for (;;) Is there a speed difference? SoapBox 2009-05-20T05:03:42Z 2009-05-20T05:03:42Z You said that a comparison is faster than a jump. That isn't the case in the way you implied it... Comparison is faster if the comparison results in no jump being needed. If a jump is needed, then obviously comparison + jump is slower than just a plain jump. In the case of a for or while loop, comparison and jump will be needed for every iteration except the last one. Adding a condition will not make a while loop faster execute, ever. http://stackoverflow.com/questions/787417/why-would-you-write-something-like-this-intentionally-not-using-delete-on-an/787427#787427 Comment by SoapBox on Why would you write something like this? (intentionally not using delete [] on an array) SoapBox 2009-04-24T20:26:22Z 2009-04-24T20:26:22Z @RnR: That's entirely implementation dependent... and certainly not always the case. http://stackoverflow.com/questions/741212/fastest-method-to-split-a-32-bit-number-into-bytes-in-c/741228#741228 Comment by SoapBox on Fastest Method to Split a 32 Bit number into Bytes in C++ SoapBox 2009-04-12T03:53:48Z 2009-04-12T03:53:48Z This code has the potential to be better than the other union answer given, because you can reverse the other of b0-b3 using ifdefs and this code will then produce the same output on little and big endian machines. http://stackoverflow.com/questions/741212/fastest-method-to-split-a-32-bit-number-into-bytes-in-c/741223#741223 Comment by SoapBox on Fastest Method to Split a 32 Bit number into Bytes in C++ SoapBox 2009-04-12T03:52:42Z 2009-04-12T03:52:42Z Note: this is has the same result as the &quot;unions&quot; answer given by i_random_hacker. http://stackoverflow.com/questions/741212/fastest-method-to-split-a-32-bit-number-into-bytes-in-c/741213#741213 Comment by SoapBox on Fastest Method to Split a 32 Bit number into Bytes in C++ SoapBox 2009-04-12T03:49:38Z 2009-04-12T03:49:38Z If the optimizer is turned on both the assignments and the &amp; 0xFF are unlikely to make a difference (they should be optimized out). If the optimizer is off, there's no real point in talking about what is most efficent anyways. http://stackoverflow.com/questions/48744/finding-the-phone-numbers-in-50-000-html-pages Comment by SoapBox on Finding the phone numbers in 50,000 HTML pages SoapBox 2009-04-05T14:12:57Z 2009-04-05T14:12:57Z I keep trying to figure out how you can &quot;write code&quot; in a phone interview... but it's just not coming to me....... http://stackoverflow.com/questions/704995/c-multiple-declaration-of-function-error-when-linking Comment by SoapBox on C++ multiple declaration of function error when linking SoapBox 2009-04-01T10:55:49Z 2009-04-01T10:55:49Z Please include the actual error message from the linker. http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699658#699658 Comment by SoapBox on The best 500 word (or less) description of how a CPU works? SoapBox 2009-03-31T01:13:51Z 2009-03-31T01:13:51Z I like that about acting the whole thing out. Wish I could give you +2 for that one. :-) http://stackoverflow.com/questions/667938/fast-case-counting/669541#669541 Comment by SoapBox on Fast case counting SoapBox 2009-03-21T17:55:06Z 2009-03-21T17:55:06Z Yeah I'm assuming if there is any existing mixed case then it was intended and I want to keep it. That is the case for most of the data. http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows/627992#627992 Comment by SoapBox on Serial comm with PHP on Windows SoapBox 2009-03-09T20:56:11Z 2009-03-09T20:56:11Z Agreed, but to me that no longer falls under &quot;the easiest way&quot; and becomes &quot;the best way&quot;. :-) http://stackoverflow.com/questions/599968/reading-program-counter-directly/599982#599982 Comment by SoapBox on Reading Program Counter directly SoapBox 2009-03-03T01:30:06Z 2009-03-03T01:30:06Z You could fix that issue by pushing a label on the stack after you pop the eip, and then doing a ret (which would jump to the label you pushed). http://stackoverflow.com/questions/603569/what-is-the-best-way-to-evenly-scale-one-byte/603592#603592 Comment by SoapBox on What is the best way to evenly scale one byte? SoapBox 2009-03-02T20:47:34Z 2009-03-02T20:47:34Z FYI, This answer is the same as scaled = (original &lt;&lt; 5) &gt;&gt; 8, which is the same as scale = original &gt;&gt; 3, which is the same as the accepted answer.