User Ira Baxter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T05:20:45Z http://stackoverflow.com/feeds/user/120163 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1016218/how-does-a-stackless-language-work/1053159#1053159 26 Answer by Ira Baxter for How does a stackless language work? Ira Baxter 2009-06-27T16:38:20Z 2009-11-30T18:56:10Z <p>The modern operating systems we have (Windows, Linux) operate with what I call the "big stack model". And that model is wrong, sometimes, and motivates the need for "stackless" languages.</p> <p>The "big stack model" assumes that a compiled program will allocate "stack frames" for function calls in a contiguous region of memory, using machine instructions to adjust registers containing the stack pointer (and optional stack frame pointer) very rapidly. This leads to fast function call/return, at the price of having a large, contiguous region for the stack. Because 99.99% of all programs run under these modern OSes work well with the big stack model, the compilers, loaders, and even the OS "know" about this stack area. One common problem all such applications have is, "how big should my stack be?". With memory being dirt cheap, mostly what happens is that a large chunk is set aside for the stack (MS defaults to 1Mb), and typical application call structure never gets anywhere near to using it up. But if an application does use it all up, it dies with an illegal memory reference ("I'm sorry Dave, I can't do that"), by virtue of reaching off the end of its stack.</p> <p>Most so-called called "stackless" languages aren't really stackless. They just don't use the contiguous stack provided by these systems. What they do instead is allocate a stack frame from the heap on each function call. The cost per function call goes up somewhat; if functions are typically complex, or the language is interpretive, this additional cost is insignificant. (One can also determine call DAGs in the program call graph and allocate a heap segment to cover the entire DAG; this way you get both heap allocation and the speed of classic big-stack function calls for all calls inside the call DAG).</p> <p>There are several reasons for using heap allocation for stack frames:</p> <p>1) If the program does deep recursion dependent on the specific problem it is solving, it is very hard to preallocate a "big stack" area in advance because the needed size isn't known. One can awkwardly arrange function calls to check to see if there's enough stack left, and if not, reallocate a bigger chunk, copy the old stack and readjust all the pointers into the stack; that's so awkward that I don't know of any implementations. Allocating stack frames means the application never has to say its sorry until there's literally no allocatable memory left. </p> <p>2) The program forks subtasks. Each subtask requires its own stack, and therefore can't use the one "big stack" provided. So, one needs to allocate stacks for each subtask. If you have thousands of possible subtasks, you might now need thousands of "big stacks", and the memory demand suddenly gets ridiculous. Allocating stack frames solves this problem. Often the subtask "stacks" refer back to the parent tasks to implement lexical scoping; as subtasks fork, a tree of "substacks" is created called a "cactus stack".</p> <p>3) Your language has continuations. These require that the data in lexical scope visible to the current function somehow be preserved for later reuse. This can be implemented by copying parent stack frames, climbing up the cactus stack, and proceeding.</p> <p>The <a href="http://www.semanticdesigns.com/Products/PARLANSE" rel="nofollow">PARLANSE</a> programming langauge I implemented does 1) and 2). I'm working on 3).</p> http://stackoverflow.com/questions/1814795/plc-ladder-logic-outputs/1814835#1814835 1 Answer by Ira Baxter for PLC Ladder Logic Outputs Ira Baxter 2009-11-29T06:36:25Z 2009-11-30T02:43:44Z <p>A ladder logic rung may have as many outputs (OTE) as you like, both at the right hand end of logic rung and even in the middle of a logic rung. </p> <p>Each output is controlled only by the logic leading up to it. If you have multiple outputs at the same point in the rung, they will all have the output reflecting the logic condition from the rung start up to that point. This is a common method used to drive several outputs with the same signal at once.</p> <p>If you have multiple outputs at different points in the rung, each will have outputs that correspond to the logic leading to that output. Logic downstream from an OTE acts as if the OTE wasn't present.</p> <p>Now, you may have complex devices (e.g., Timer) controlled by logic within a rung. Obviouosly, further logic that depends on the output of the complex device (e.., Timer Done) will not be independent of the behaviour of complex device. But just like OTEs, you may have lots of complex devices in a rung.</p> http://stackoverflow.com/questions/1798411/file-system-regular-expression-search-tool/1814849#1814849 3 Answer by Ira Baxter for File system regular expression search tool Ira Baxter 2009-11-29T06:44:08Z 2009-11-29T06:44:08Z <p>For searches over code bases with queries that understand the language structure, look at <a href="http://www.semanticdesigns.com/Products/SearchEngine" rel="nofollow">SD Search Engine</a>. This tool indexes larges source base to provide very fast query response. </p> <p>Queries are stated in terms of langauge elements (identifiers, operators, strings, ...) with constraints over the language elements (including wildcards and regexps on identifiers, strings and comments, as well as range constraints on numbers). Language whitespace and linebreaks (and comments unless you insist) are ignored. </p> <p>If you want to do a plain regexp search on file character content, you can do that too but you don't get the speed advantage of the index, runs more like regular grep.</p> <p>The interactive query result is shown in a hit window with other hits; by clicking, you can go to window containg the full source code of a hit.</p> <p>In logging mode, all hits found are written to a log file with N lines of context, where you configure N. That's probably the report you want.</p> http://stackoverflow.com/questions/1812896/is-it-better-to-declare-variables-in-the-middle-of-functions-or-just-at-the-begin/1812916#1812916 0 Answer by Ira Baxter for Is it better to declare variables in the middle of functions or just at the beginning? Ira Baxter 2009-11-28T16:17:57Z 2009-11-28T16:17:57Z <p>I think it best to place declarations near the code that uses them. I often delineate a block of code that serves a specific purpose with a commented block, e.g.:</p> <pre><code>{ // this does ... } </code></pre> <p>If you have an identifiable block of code like this, and variable only used in that code, I find that placing the variable in the block helps maintainability.</p> <p>If you can't have a real variable scope block, fake it :-}</p> http://stackoverflow.com/questions/1650395/faster-string-gethashcode-e-g-using-multicore-or-gpu/1650595#1650595 2 Answer by Ira Baxter for Faster String GetHashCode (e.g. using Multicore or GPU) Ira Baxter 2009-10-30T15:41:19Z 2009-11-27T22:04:26Z <p>One way to make a function go faster is to take special cases into account. A function with variable size inputs has special cases based on size.</p> <p>Going parallel only makes sense when the the cost of going parallel is smaller than the gain, and for this kind of computation it is likely that the string would have to be fairly large to overcome the cost of forking a parallel thread. But implementing that isn't hard; basically you need a test for this.Length exceeding an empirically determined threshold, and then forking multiple threads to compute hashes on substrings, with a final step composing the subhashes into a final hash. Implementation left for the reader.</p> <p>Modern processors also have SIMD instructions, which can process up to 32 (or 64) bytes in a single instruction. This would allow you to process the string in 32 (16 bit character) chunks in one-two SIMD instructions per chunk; and then fold the 64 byte result into a single hashcode at the end. This is likely to be extremely fast for strings of any reasonable size. The implementation of this from C# is harder, because one doesn't expect a virtual machine to provide provide easy (or portable) access to the SIMD instructions that you need. Implementation also left for the reader. EDIT: Another answer suggests that Mono system does provide SIMD instruction access.</p> <p>Having said that, the particular implementation exhibited is pretty stupid. The key observation is that the loop checks the limit twice on every iteration. One can solve that problem by checking the end condition cases in advance, and executing a loop that does the correct number of iterations. One can do better than that by using Duffs device to jump into an unrolled loop of N iterations. This gets rid of the loop limit checking overhead for N-1 iterations. That modification would be very easy and surely be worth the effort to implement.</p> <p>EDIT: You can also combine the SIMD idea and the loop unrolling idea to enable processing many chunks of 8/16 characters in a few SIMD instrucions.</p> <p>For languages that can't jump into loops, one can do the equivalent of Duff's device by simply peeling off the initial cases. A shot at how to recode the original code using the loop peeling approach is the following:</p> <pre><code> public override unsafe int GetHashCode() { fixed (char* str = ((char*) this)) { const int N=3; // a power of two controlling number of loop iterations char* chPtr = str; int num = 0x15051505; int num2 = num; int* numPtr = (int*) chPtr; count = this.length; unrolled_iterations = count &gt;&gt; (N+1); // could be 0 and that's OK for (int i = unrolled_iterations; i &gt; 0; i--) { // repeat 2**N times { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[2]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[3]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[4]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[5]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[6]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[7]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[8]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[9]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[10]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[11]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[12]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[13]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[14]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[15]; } numPtr += 16; } if (count &amp; ((1&lt;&lt;N)-1)) { { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[2]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[3]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[4]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[5]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[6]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[7]; } numPtr += 8; } if (count &amp; ((1&lt;&lt;(N-1))-1)) { { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[2]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[3]; } numPtr += 4; } if (count &amp; ((1&lt;&lt;(N-2)-1)) { { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; } numPtr += 2; } // repeat N times and finally: if { count &amp; (1) } { { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; // numPtr += 1; } return (num + (num2 * 0x5d588b65)); } } </code></pre> <p>I haven't compiled or tested this code, but the idea is right. It depends on the compiler doing reasonable constant folding and address arithmetic.</p> <p>I tried to code this to preserve the exact hash value of the original, but IMHO that isn't really a requirement. It would be even simpler and a tiny bit faster if it didn't use the num/num2 stunt, but simply updated num for each character.</p> <p><hr></p> <p>Corrected version (by Brian) as a static function:</p> <pre><code> public static unsafe int GetHashCodeIra(string x) { fixed (char* str = x.ToCharArray()) { const int N = 2; // a power of two controlling number of loop iterations char* chPtr = str; int num = 0x15051505; int num2 = num; int* numPtr = (int*)chPtr; int count = (x.Length+1) / 2; int unrolled_iterations = count &gt;&gt; (N+1); // could be 0 and that's OK for (int i = unrolled_iterations; i &gt; 0; i--) { // repeat 2**N times { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[2]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[3]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[4]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[5]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[6]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[7]; } numPtr += 8; } if (0 != (count &amp; ((1 &lt;&lt; N) ))) { { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; } { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[2]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[3]; } numPtr += 4; } if (0 != (count &amp; ((1 &lt;&lt; (N - 1) )))) { { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; } numPtr += 2; } // repeat N times and finally: if (1 == (count &amp; 1)) { { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; // numPtr += 1; } } return (num + (num2 * 0x5d588b65)); } } </code></pre> http://stackoverflow.com/questions/1810352/logic-programming-online-resources/1810481#1810481 3 Answer by Ira Baxter for Logic programming online resources Ira Baxter 2009-11-27T20:10:27Z 2009-11-27T21:23:01Z <p>I don't think you want logic programming, but rather constraint satisfaction.</p> <p>The obvious place to look is <a href="http://en.wikipedia.org/wiki/Constraint_satisfaction_problem" rel="nofollow">Wikipedia: Constraint Satisfaction Problem (CSP)</a>.</p> <p>There are a number of constraint solvers out there already. I'd suggest you simply find one and try to use it.</p> http://stackoverflow.com/questions/1029974/experience-migrating-legacy-cobol-pl1-to-java/1061829#1061829 1 Answer by Ira Baxter for Experience migrating legacy Cobol/PL1 to Java Ira Baxter 2009-06-30T05:07:34Z 2009-11-27T17:29:53Z <p>I just looked at the NACA page and docs. From their documentation:</p> <p><em>"The generated java uses a Cobol-like syntax. It's as close as possible from original Cobol syntax, within of course the limits of the Java language. Generated code doesn't look like classical native java and is not object oriented from the application point of view. This is a by design strong choice, to enable a smooth migration of Cobol developers to the Java environment. The goal is to keep business knowledge in the hand of people who wrote the original Cobol programs."</em></p> <p>I didn't see an example, but the quote gives a strong flavor of the result. Its COBOL coded in Java.</p> <p>You can always build a "Translator" from one language to another, by simply coding an interpreter in the target langauge. That's IMHO an absolutely terrible way to translate a langauge as you end up with the worst of both worlds: you don't get the value of the new language, and you still have to have knowledge of the old one to keep the result alive. (No wonder this thing is called a "Transcoder"; I'd never heard this term before).</p> <p>The argument for this stunt is to dump the costs of the mainframe. Where's the evidence that the costs of working on the converted program don't swamp the savings?</p> <p>Heaven help people that are a victim of this tool.</p> http://stackoverflow.com/questions/1809468/algorithm-to-convert-infinitely-long-base-232-number-to-printable-base-10/1809632#1809632 1 Answer by Ira Baxter for Algorithm to convert infinitely long base 2^32 number to printable base 10. Ira Baxter 2009-11-27T16:27:53Z 2009-11-27T16:41:13Z <p>Fundamentally you need classic decimal printing using digit production by dividing your number by ten (in your base 2^32) repeatedly and using the remainder as digits. You may not have a divide by (anything, let alone) 10 routine, which is probably the key source of your problem.</p> <p>If you are working in C or C++, you can get a complete infinite precision arithmetic package from <a href="http://gmplib.org/" rel="nofollow">GNU Bignum package</a>. Most other widely used languages have similar packages available.</p> <p>Of course, if you have too much free time, you can always implement multiprecision division yourself. You're already borrowing terminology from Knuth; he also supplies the multiprecision algorithms in Seminumerical Algorithms.</p> http://stackoverflow.com/questions/1796906/cobol-migrations-strategies/1806835#1806835 2 Answer by Ira Baxter for COBOL Migrations Strategies? Ira Baxter 2009-11-27T05:00:25Z 2009-11-27T15:37:33Z <p>The "risk" of COBOL programs IMHO is the fact that such programs are running large business critical applications, and if you break them the company's owners will break you. Such programs have to evolve anyway to meet ongoing demands, so the real problem is how to understand how the application is organized, how to make changes, and how to validate the resulting programs. While you can argue endlessly about the merits of COBOL as a programming langauge, these problems aren't any different than it is for other langauges in which large and mission critical applications have been implemented. </p> <p>One problem that makes COBOL a bit more problematic is a more general lack of tools to help handle it. Java and C# have modern IDEs, lots of searching and indexing capabilities, test coverage tools, class diagram extraction tools, and these all help. Most of the COBOL vendors also have IDEs but I'm not sure they are as capable.</p> <p>Semantic Designs provides a <a href="http://www.semanticdesigns.com/Products/LanguageTools/COBOLTools.html" rel="nofollow">variety of COBOL tools</a>, including tools for search huge source code bases using COBOL-sensitive searches, test coverage tools, style-checking, clone detection tools, system architecture extraction, etc.</p> <p>You still have to understand the changes required and make the changes carefully. </p> <p>Should you decide you want to process the COBOL code to extract other facts or build COBOL-to-X conversion tools, you may find the <a href="http://www.semanticdesigns.com/Products/FrontEnds/COBOLFrontEnd.html" rel="nofollow">SD COBOL Front End</a> of use. It is built on top of DMS, an engine for building custom analysis and translation rules.</p> <p>Yes, building such analysis or translation tools are hard. Another response talks about some of the issues you might face. The SD front ends solve the key problem of, "can you parse COBOL accurately", without which solving the other problems is moot, as you aren't going to translate a large COBOL system by hand within any reasonable timeframe or budget, or risk of scaring management to death. Remember, the application is mission-critical.</p> http://stackoverflow.com/questions/1800634/diff-tool-that-can-compare-sub-sections-of-files/1806789#1806789 1 Answer by Ira Baxter for Diff tool that can compare sub-sections of files Ira Baxter 2009-11-27T04:46:25Z 2009-11-27T04:46:25Z <p>See <a href="http://www.semanticdesigns.com/Products/Clone/index.html" rel="nofollow">SD CloneDR</a>, a tool that detects exact and near-miss clones according to language syntax, for a large number of languages (Java, C#, PHP, C++, C, COBOL, Ada, ...). An Eclipse API is being readied at this moment, and is likely available January 1, 2010.</p> http://stackoverflow.com/questions/1804249/find-answer-to-string-equation-without-using-eval/1804298#1804298 2 Answer by Ira Baxter for Find answer to string equation without using eval() Ira Baxter 2009-11-26T15:24:57Z 2009-11-26T15:24:57Z <p>Evaluating string formulas is rather easy when they are as simple as this. See half a dozen answers at <a href="http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas">http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas</a></p> http://stackoverflow.com/questions/1778683/dead-code-detection-in-php/1795097#1795097 2 Answer by Ira Baxter for Dead code detection in PHP Ira Baxter 2009-11-25T06:52:31Z 2009-11-25T08:23:04Z <p>See the <a href="http://www.semanticdesigns.com/Products/TestCoverage/PHPTestCoverage.html" rel="nofollow">SD PHP Test Coverage Tool</a>. You exercise your code any way you like, including (or not) running test suites any way you like. At the end of execution, you can see a display of what code was executed (there are screenshots at the website). Code that is not executed may be dead, and requires some more analysis on your part, but if you exercise the system well, unexecuted code is either error handlers or really dead stuff. The PHP Test Coverage tool does not require <em>any</em> changes to your PHP server.</p> <p>The <a href="http://www.semanticdesigns.com/Products/Clone/index.html" rel="nofollow">SD CloneDR</a> tool finds duplicate code across very large source code bases. It is language sensitive (covering C, C++, Java, C#, Ada, Fortran as well as PHP4 and PHP5) so it isn't fooled by changes in formatting, whitespace or the presence or absence of comments. It will detect exact copy clones, and near miss clones. The website shows example clone reports for several languages.</p> http://stackoverflow.com/questions/592350/what-successful-conversion-rewrite-of-software-have-you-done/1795142#1795142 1 Answer by Ira Baxter for What successful conversion/rewrite of software have you done? Ira Baxter 2009-11-25T07:05:08Z 2009-11-25T07:05:08Z <p><a href="http://www.semanticdesigns.com/Products/Services/NorthropGrummanB2.html" rel="nofollow">Migrating the B-2 Stealth Bomber mission software from JOVIAL to C.</a> 100% fully automated conversion. Seriously!</p> <p>Main lesson: <em>using configurable automated conversion tools is a huge win</em>.</p> <p>See <a href="http://www.semanticdesigns.com/Products/DMS/DMSToolkit.html" rel="nofollow">DMS Software Reengineering Toolkit</a>.</p> http://stackoverflow.com/questions/1747649/code-coverage-with-nunit/1795115#1795115 1 Answer by Ira Baxter for Code coverage with nUnit? Ira Baxter 2009-11-25T06:58:24Z 2009-11-25T06:58:24Z <p>See <a href="http://www.semanticdesigns.com/Products/TestCoverage/CSharpTestCoverage.html" rel="nofollow">SD C# Test Coverage</a>. Comes with built-in visualization of test coverage data over your source code as well as summary reports.</p> http://stackoverflow.com/questions/1786565/ebnf-for-ecmascript/1786637#1786637 4 Answer by Ira Baxter for EBNF for ECMAScript? Ira Baxter 2009-11-23T22:53:25Z 2009-11-24T02:23:50Z <p>How about the <a href="http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf" rel="nofollow">ECMAScript standard</a>? Complete by definition :-}</p> <p>EDIT: If you want an existing grammar, try one of the grammar generator tools sites. For ANTLR, here's the <a href="http://www.antlr.org/grammar/1153976512034/ecmascriptA3.g" rel="nofollow">ECMAScript grammar</a>. I know nothing of its quality but the ANTLR can produce good parsers if the grammer is constructed with care. You'll probably find the grammar also interwoven with bunch of ANTLR stuff, so it may suffer from some of the same problem as the standard from your point of view. At least you can delete all that stuff out.</p> http://stackoverflow.com/questions/1779694/what-is-the-shortest-source-code-you-have-seen-to-do-a-complex-task/1780567#1780567 1 Answer by Ira Baxter for What is the shortest source code you have seen to do a complex task? Ira Baxter 2009-11-23T00:34:19Z 2009-11-23T22:10:25Z <p>APL programs have very powerful array operations. As a consequence, people write incredibly complex codes in APL in a few lines. So APL programs written by most APL professional programmers probably qualify. I'm sure there are lots of these.</p> <p>(I have an Octapawn game-playing program written in APL back in 1972 that's a totoal of about 50 lines including logic that learns how to win, but its too much trouble to type it into StackoverFlow. It'd just hurt your eyes anyway :-)</p> http://stackoverflow.com/questions/1654533/intelligent-file-search-for-windows-that-can-ignore-whitespace-and-search-in-code/1780028#1780028 2 Answer by Ira Baxter for Intelligent file search for windows that can ignore whitespace and search in code? Ira Baxter 2009-11-22T21:15:07Z 2009-11-23T01:53:17Z <p>See <a href="http://www.semanticdesigns.com/Products/SearchEngine" rel="nofollow">SD Search Engine</a>. This is a language-sensitive search engine designed to search large code bases, with special language classifiers for C, C++, Java, C#, COBOL, JavaScript, Ada, Python, Ruby and lot of other languages, including your specific target langauge PHP (PHP4 and PHP5).</p> <p>I think it does everything you requested.</p> <p>It indexes the language elements so search across large code bases are extremely fast (Linux Kernal ~~ 7.5 Million lines --> 2.5 seconds). (The indexing step runs on Windows, but the display engine is in Java.)</p> <p>Search hits are shown in one-line context hit window showing the file and line number, as well as the line with the hit highlighted. Clicks on hits bring up the source code, tabs expanded appropriately, and the line count right even for languages which have odd line counting rules (such as GCC WRT form characters), with the hit line and hit text highlighted. Clicking in the source window will launch your favorite editor on the file.</p> <p>Because it understands language elements, it ignores language-specific whitespace. It skips over comments unless you insist they be inspected. Searches thus ignore whitespace, comments and lineboundaries (if the language thinks lineboundaries are whitespace, which is why there are langauge-specific scanners). The query language allows you to specify which language tokens you want (specific tokens in quotes, or generic tokens such as identifiers I, numbers N, strings S, operators O and punctuation P) with constraints on the token value as well as a series of tokens.</p> <p>Your example search:</p> <pre><code> myTestFunction($parameter,$another_parameter,$yet_another_parameter){doThis(); </code></pre> <p>would be expressed to the search engine precisely as:</p> <pre><code> I=myTestFunction '(' I ',' I ',' I ')' '{' I=dothis '(' ')' ';' </code></pre> <p>but it would probably be easier (less typing) to find it as:</p> <pre><code> I=myTest* ... I=dothis </code></pre> <p>where I=myTest* means an identifier starting with <em>myTest</em> and <em>...</em> means "near".</p> <p>The Search Engine also offer regular expressions searches on the text, if you insist. So you still have grep-like searches (a lot slower than indexed searches) but with the hit window and source display windows too.</p> http://stackoverflow.com/questions/1780635/how-can-i-get-test-coverage-statistics-for-vs2008-c-project/1780739#1780739 2 Answer by Ira Baxter for how can I get test coverage statistics for VS2008 C# project Ira Baxter 2009-11-23T01:50:28Z 2009-11-23T01:50:28Z <p>See <a href="http://www.semanticdesigns.com/Products/TestCoverage/CSharpTestCoverage.html" rel="nofollow">SD C# Test Coverage tool</a>. It can provide coverage information reports not only at the file level, but down to the method level and rollups in between. It also provides a nice way to see the actual coverage overlayed on your source text.</p> http://stackoverflow.com/questions/1779545/stack-allocation-limit-for-programs-on-a-linux-32-bit-machine/1779669#1779669 2 Answer by Ira Baxter for Stack allocation limit for programs on a Linux 32 bit machine Ira Baxter 2009-11-22T19:18:14Z 2009-11-22T23:58:27Z <p>Windows (and I think Linux) both operate on the <em>big stack model</em> assumption, that is, there is one stack (per thread) whose space is preallocated before the thread starts. I suspect the OS simply assigns virtual memory space of the preallocated size to that stack area, and adds real memory pages underneath as the end of the stack is advanced beyond a page boundary until the upper limit ("ulimit") is reached.ck</p> <p>Since OSes often place stacks well away from other structure, when ulimit is reached, it is just possible that the OS might be able to expand the stack, if when the overflow occurs nothing else has shown up next to the stack. In general, if you are building a program complex enough enough to overflow the stack, you are likely allocating memory dynamically and there is no gaurantee that the area next to the stack didn't get allocated. If such memory is allocated, of course the OS can't expand the stack where it is.</p> <p>This means the application cannot count on the stack being expanded automatically by the OS. In effect, the stack <em>can't</em> grow.</p> <p>In theory, an application exhausting its stack might be able to start a new thread with a larger stack, copy the existing stack and continue, but as practical matter I doubt this can be done, if for no other reason than pointers to local variables stack will need adjusting and C/C++ compilers don't make it possible to find such pointers and adjust them. Consequence: ulimit has to be declared before the program starts, and once exceeded, the program dies.</p> <p>If one wants a stack that can expand arbitrarily, it is better to switch to a language that uses heap-allocated activation records. Then you simply don't run out until your address space is used up. 32 or 64 bit VM spaces ensure you can do a lot of recursion with this techniquie.</p> <p>We have a parallel programming language called PARLANSE, that does heap allocation to enable thousands of parallel computational grains (in practice) to recurse arbitrarily this way.</p> http://stackoverflow.com/questions/1779977/normalize-rotation-to-be-within-360/1779987#1779987 3 Answer by Ira Baxter for normalize rotation to be within 360° Ira Baxter 2009-11-22T21:01:02Z 2009-11-22T21:01:02Z <p>modulo(angle,360) for well-defined modulo functions.</p> http://stackoverflow.com/questions/1345560/installers-with-shared-subinstallers 0 Installers with shared subinstallers? Ira Baxter 2009-08-28T07:37:15Z 2009-11-21T19:00:03Z <p>We build a bunch of products that all have a similar structure, and in fact share installed subdirectories, documentation and various system configuration variables (environment variables, start menu items, ...)</p> <p>We've been using InstallShield. It works, but it is incredibly painful to configure a product installer one mouse click at a time, especially when the other installers already have 90% the same configuration.</p> <p>As programmers, we're used to subroutines to do common work. Why shouldn't this idea apply to installers?</p> <p>Is there an easy way to configure a subset of installed features and use them across a set of InstallShield installers?</p> <p>As an alternative, we've been considering using NSIS on the grounds that the shared logic can be broken out as a subroutine(?) or a macro even if we have to implement the macro expansion logic. Does anybody have an experience or recommendations here? Does NSIS have any capability shortcomings as an installer compared to InstallShield?</p> http://stackoverflow.com/questions/1742171/is-there-a-c-header-parser-tool-for-wrapper-generation-like-gccxml/1754105#1754105 1 Answer by Ira Baxter for Is there a C header parser tool for wrapper generation like gccxml? Ira Baxter 2009-11-18T06:46:56Z 2009-11-18T06:46:56Z <p>See the <a href="http://www.semanticdesigns.com/Products/FrontEnds/CFrontEnd.html" rel="nofollow">SD C Front End for DMS</a>. Full C parsing, symbol table construction, post parsing dump of any information you like.</p> http://stackoverflow.com/questions/994555/windows-avoid-pushing-full-x86-context-on-stack 6 Windows: avoid pushing full x86 context on stack Ira Baxter 2009-06-15T05:04:44Z 2009-11-17T09:35:35Z <p>I have implemented a language under MS Windows that uses cactus stacks to implement parallel programs. The stack chunks are allocated on a per-function basis and are <em>just</em> the right size to handle local variables, expression temp pushes/pops, and calls to libraries (including stack space for the library routines to work in). Such stack frames can be as small as 32 bytes in practice and often are. This all works great unless the code does something stupid and causes a hardware trap... at which point Windows appears to insist on pushing the entire x86 machine context "on the stack". This is some 500+ bytes if you include the FP/MMX/etc. registers, which it does. Naturally, a 500 byte push on a 32 byte stack smashes things it should not.</p> <p>Can I get Windows to store the exception context block someplace else (e.g., to a location specific to a thread)? Then the software could take the exception hit on the thread and process it without overflowing my small stack frames.</p> <p>I don't think this is possible, but I thought I'd ask a much larger audience. Is there an OS standard call/interface that can cause this to happen?</p> <p>It would be trivial to do in the OS, if I could con MS into replacing the following code:</p> <pre><code> harwareint: push context mov contextp, esp </code></pre> <p>... with ...</p> <pre><code> hardwareint: mov &lt;somereg&gt; contextp test &lt;somereg&gt; jnz $2 push context mov contextp, esp jmp $1 $2: store context @ somereg $1: equ * </code></pre> <p>with the obvious changes required to save somereg, etc.</p> <p>[What I do now is: check the generated code for each function. If it has a chance of generating a trap (e.g., divide by zero), or we are debugging (possible bad pointer deref, etc.), add enough space to the stack frame for the FP context. Stack frames now end up being ~~ 500-1000 bytes in size, programs can't recurse as far, which is sometimes a real problem for the applicaitons we are writing. So we have a workable solution, but it complicates debugging]</p> <p>EDIT Aug 25: I've managed to get this story to a Microsoft internal engineer who has the authority apparantly to find out who in MS might actually care. There might be faint hope for a solution.</p> <p>EDIT Sept 14: MS Kernal Group Architect has heard the story and is sympathetic. He said MS will consider a solution (like the one proposed) but unlikely to be in a service pack. Might have to wait for next version of Windows. (Sigh...I might grow old...)</p> http://stackoverflow.com/questions/106419/whats-a-good-source-code-search-engine/1724433#1724433 1 Answer by Ira Baxter for What's a good source code search engine? Ira Baxter 2009-11-12T18:40:48Z 2009-11-14T20:27:42Z <p>See <a href="http://www.semanticdesigns.com/Products/SearchEngine/index.html" rel="nofollow">SD Source Code Search Engine</a>. Language aware and handles many languages (C, C++, C#, Java, PHP, Ada, Fortran, COBOL, ...). Takes 2.8 seconds to search across the Linux Kernal (7.3 million lines, 18000+ files).</p> <p>Because it is language aware, it can ignore langauge elements irrelevant to your search (e.g., ignore comments, formatting and whitespace if you are only interested in an identifier or an expression). It can search inside identifiers, strings and comments. It has a full regular-expression string search option if you really want to do that.</p> <p>It has been used for systems of 10s of millions of lines of code.</p> http://stackoverflow.com/questions/1674005/fast-4x4-matrix-multiplication-in-c/1674070#1674070 3 Answer by Ira Baxter for Fast 4x4 Matrix Multiplication in C Ira Baxter 2009-11-04T14:25:05Z 2009-11-14T05:38:12Z <p>Your completely unrolled traditional product is likely pretty fast.</p> <p>Your matrix is too small to overcome the overheard of managing a Strassen multiplication in its traditional form with explicit indexes and partitioning code; you'd likely lose any effect on optimization to that overhead. </p> <p>But if you want fast, I'd use SIMD instructions if they are available. I'd be surprised if the ARM chips these days don't have them. If they do, you can manage all the products in row/colum in a single instruction; if the SIMD is 8 wide, you might manage <em>2</em> row/column multiplies in a single instruction. Setting the operands up to do that instruction might require some dancing around; SIMD instructions will easily pick up your rows (adjacent values), but will not pick up the columns (non-contiguous). And it may take some effort to compute the sum of the products in a row/column.</p> http://stackoverflow.com/questions/1010189/code-aware-searching/1705692#1705692 2 Answer by Ira Baxter for Code-aware searching Ira Baxter 2009-11-10T04:54:12Z 2009-11-10T04:54:12Z <p>The <a href="http://www.semanticdesigns.com/Products/SearchEngine" rel="nofollow">SD Source Code Search Engine</a> is probably what you are looking for. It uses language-aware scanners (C, C++, C#, Java, PHP, COBOL, JCL, PLSQL, ECMAScript, ...) to convert each source file into a set of index terms for that source file, with index terms taken to be langauge elements such as specific keywords ('for', 'begin', ....), string literals (of whatever several varieties might exist in the langauge), variable names, operators, comments. Whitespace is ignored as appropriate for each language. It handles ASCII, ISO8859-1 and Unicode based langauges. Using index terms for each file it builds a global index for a large source code base (tens of millions of lines).</p> <p>A GUI offers you a query langauge for searches. You can find just strings containing abc:</p> <pre><code> S=*abc* </code></pre> <p>or constants larger than 20:</p> <pre><code> N&gt;20 </code></pre> <p>or for loops with a comparison to an upper bound involving an a variable postfixed with the name "Income"</p> <pre><code>'for' ... '&lt;=' I=*Income </code></pre> <p>Search are often shorter than a second using the Linux kernal (1.5 MSLOC, 9500 files).</p> <p>Hits on search terms pull up a list of lines containing the hits. Clicking a line pulls up the source text, properly tab-indented, with accurate line numbers (those of you that use GCC will appreciate this since GCC counts form characters oddly). Selecting EDIT takes you to your favorite editor. </p> http://stackoverflow.com/questions/1690091/what-approaches-have-been-used-for-searching-computer-code/1705172#1705172 2 Answer by Ira Baxter for What approaches have been used for searching computer code? Ira Baxter 2009-11-10T01:46:13Z 2009-11-10T02:08:59Z <p>The <a href="http://www.semanticdesigns.com/Products/DMS/DMSToolkit.html" rel="nofollow">DMS Software Reengineering Toolkit</a> provides AST generation for many languages, as well as surface-syntax patterns used for matching against ASTs, generating ASTs, and transforming code. Here you can learn something about <a href="http://www.semdesigns.com/products/DMS/ProgramTransformation.html" rel="nofollow">how DMS works with surface-syntax patterns</a> and why these are hugely better than matching trees-as-data-structures.</p> <p>A DMS pattern matching your statement for JavaScript would be x = a + r * Math.cos(theta); would look like:</p> <pre><code> domain JavaScript. pattern my_pattern261(x: left_hand_side, a: product, r: term, fn: identifier, angle: identifier):assignment = " \x = \a + \r * Math.\fn ( \angle ) ; ". </code></pre> <p>The " " characters are meta syntax saying "what's inside here is JavaSrcript syntax"; what's outside the quotes is pattern-language syntax. The "\" character is a pattern-matching metacharacter indicating that the following thing is a meta variable (there are other more sophisticated meta-objects but they weren't needed for this pattern). All the metavariables here are given syntactic type categories for the language of interest. For the pattern variables listed, a matched pattern binds the pattern variables to the corresponding ASTs.</p> <p>This same pattern would match your other statement.</p> <p>While such patterns are useful for single statements or other language nonterminals, they don't capture the notion of control and data flow between multiple patterns well. (Here the Cocinelle solution is sort of interesting, with "A ... B" meaning A precedes B in the control flow). DMS doesn't solve this problem directly, but it does have very strong control and data flow analysis for C, COBOL, and Java and one can check the patterns separately and then verify the various control and dataflows are present between bound instances of pattern variables. </p> <p>Ideally one wants a real control/dataflow relation to be recorded in the pattern itself. This idea was attempted back in the 1980s with a system called the <a href="http://csg.lcs.mit.edu/CSGArchives/memos/Memo-231.pdf" rel="nofollow">The Programmer's Assistant (PA)</a>, which was intended to match a pre-existing libray of code idioms against code that a programmer had to help reason about it. PA never really went very far because the parsing technology was weaker and the machines a lot smaller. But from my point of view, it had all the right ideas. I continue to look to it for inspiration. We actually proposed syntax for a PA like extension of DMS for a Navy SBIR about 10 years ago, but it didn't get funded for further pursuit.</p> <p>While this is useful when looking for specific patterns, often you don't know what patterns to look for when locating such common concepts. A tool that could find these is probabaly of more interest to you.</p> <p>An interesting way to find these, is to locate <i>code clones</i>, blocks of code that that have been copy/paste/edited. What you count on here is for the programmer's to identify interesting bits of code by virtue of stealing it; multiple copies lying around in your source code base say it is interesting. We build a tool called the <a href="http://www.semanticdesigns.com/Products/Clone" rel="nofollow">Clone Doctor (CloneDR)</a> which finds such duplication. What it detects are things that look like the patterns above over possibly multiple statements. You can see <a href="http://www.semanticdesigns.com/Products/Clone/NaturalExample/index.html" rel="nofollow">examples of detected clones</a> here, that look like much bigger parameterized versions of your examples. It even shows you what the pattern that unifies them looks like.</p> <p>The CloneDR works by matching ASTs, and it scales to millions of lines of code. A more <a href="http://citeseer.ist.psu.edu/article/krinke01identifying.html" rel="nofollow">sophisticated approach matches data flow computations</a> (of the same type proposed by the Programmer's Assistant) to find such clones. By switching to dataflow and gettting rid of syntax, some of the normalization you hint at is automatically accomplished. The bad news is that it scales rather poorly and can't be used to investigate big software systems. There is research ongoing trying to scale the dataflow clone matching approach. There is work in so-called algorithm recognition that attempts to use data flow and algebraic laws to reformulate expressions to some kind of normal form before matching occurs. So far it hasn't been very successful as far as I know.</p> <p>A lesson from running CloneDR (and from other clone detection tools) is that there aren't a lot of "frequent constructs" used by every programmer, unless you count the language constructs themselves but we already knew that :-}. But there's 10%-30% cloned code in any source code base.</p> <p>And any team working on a source code base will find, IMHO, considerable value in looking at the detected clones and inducing the abstractions. If you work on a code base, the clones found are often very easy to identify into terms of abstract function. (If you don't know the code base or the application, as usual, you are clueless).</p> http://stackoverflow.com/questions/1623906/programmatically-inspect-net-code/1705209#1705209 2 Answer by Ira Baxter for Programmatically inspect .NET code Ira Baxter 2009-11-10T01:58:22Z 2009-11-10T01:58:22Z <p>See the <a href="http://www.semanticdesigns.com/Products/DMS/DMSToolkit.html" rel="nofollow">DMS Software Reengineering Toolkit</a>. </p> <p>DMS provides parsers that automatically build ASTs for many languages (C, C++, Java, C# [1.2, 2.0, 3.0 and 4.0], COBOL, ECMAScript, PHP, Verilog, ..) as well as symbol tables and control and data flow analysis for several of these.</p> <p>DMS's pattern language can be used to match surface-syntax patterns, and combined with procedural analysis to ties code elements together with symbol table entries and various data flow relations. It has been used to implement a wide variety of program analysis tools, and is designed to be a foundation for you to build you own tool, without wasting a vast amount of time building basic program analysis infrastructure.</p> http://stackoverflow.com/questions/1259303/static-code-analysis-tool-to-detect-code-duplication-in-maven-projects/1317870#1317870 1 Answer by Ira Baxter for Static code analysis tool to detect code duplication in Maven projects Ira Baxter 2009-08-23T05:51:31Z 2009-11-09T18:54:40Z <p>The <a href="http://www.semanticdesigns.com/Products/Clone" rel="nofollow">CloneDR</a> finds duplicate code, both exact copies and near-misses, across large source systems, parameterized by langauge syntax. It supports Java, C#, COBOL, C++, PHP and many other languages.</p> <p>EDIT: OP notes that neither Simian nor CPD can find clones of Exception blocks which have different names. To do this, one needs a clone detector that can find near-miss clones, e.g, those in which parts of the clones have been modified. I don't know much about Simian or CPD. However, CloneDR has been finding such clones reliably since it was built in 1999.</p> <p>See an <a href="http://www.semanticdesigns.com/Products/Clone/NaturalExample/index.html" rel="nofollow">example of detected parameterized clones</a>.</p> http://stackoverflow.com/questions/546487/tools-to-identify-code-duplications/1055571#1055571 1 Answer by Ira Baxter for Tools to identify code duplications Ira Baxter 2009-06-28T19:30:05Z 2009-11-09T18:53:06Z <p>See a clone detector that works for C, C++, C#, Java, COBOL, VB6, PHP and many other languages can be seen at: <a href="http://www.semdesigns.com/Products/Clone/index.html" rel="nofollow">http://www.semdesigns.com/Products/Clone/index.html</a> It finds exact and near-miss clones, so it will detect clones that have been parameterized by editing.</p> <p>It works by matching language structures, not text lines or tokens, so the reported clones look like code structures. Line-based clone detection can't match clones that that have been reformatted, have white space changes, or in which the comments have changed. Token based detectors often find clones which make no sense, such as</p> <pre><code> } { </code></pre> <p>which occur huge numbers of times in the text, but clones only in the dumbest sense of the word.</p> <p>See an <a href="http://www.semanticdesigns.com/Products/Clone/NaturalExample/index.html" rel="nofollow">example of detected clones</a>.</p> http://stackoverflow.com/questions/1814795/plc-ladder-logic-outputs/1814835#1814835 Comment by Ira Baxter on PLC Ladder Logic Outputs Ira Baxter 2009-11-30T05:26:00Z 2009-11-30T05:26:00Z I'll admit I only worked seriously on Rockwell controllers. Which of the other controllers offer only a simpler style of rung? http://stackoverflow.com/questions/1813673/php-string-concatenation-a-b-vs-a-b-performance/1813686#1813686 Comment by Ira Baxter on PHP String concatenation - "$a $b" vs $a . " " . $b - performance Ira Baxter 2009-11-28T21:01:17Z 2009-11-28T21:01:17Z By the principle of least surprise, two different syntaxes that mean exactly the same thing should have the same properties. The fact that it might not in PHP is just a bad property of PHP. http://stackoverflow.com/questions/1808958/recursive-descent-parser-for-c Comment by Ira Baxter on Recursive Descent Parser for C Ira Baxter 2009-11-28T02:38:09Z 2009-11-28T02:38:09Z And just to be pedantic, how <i>small</i> a subset of C? Technically, the empty language can parse itself :-} http://stackoverflow.com/questions/1808958/recursive-descent-parser-for-c Comment by Ira Baxter on Recursive Descent Parser for C Ira Baxter 2009-11-28T02:37:38Z 2009-11-28T02:37:38Z Why do you care how the parser is constructed? More importantly, if you are working with an arbitrary subset of C, why would you want a parser that harder to modify (&quot;handwritten&quot;) than one generated from a specification document in which the grammer was precisely delineated? http://stackoverflow.com/questions/1809468/algorithm-to-convert-infinitely-long-base-232-number-to-printable-base-10/1809632#1809632 Comment by Ira Baxter on Algorithm to convert infinitely long base 2^32 number to printable base 10. Ira Baxter 2009-11-27T18:26:15Z 2009-11-27T18:26:15Z Aha. So are you testing one number at a time in parallel, or lots of numbers in parallel? I'm not a GPU expert, but I didn't think they handled operations that varied considerably in time-to-execute well, because you have in effect a barrier synch at the &quot;end&quot; of the current set of operations, and Amhdahl's law means inefficient speedups in such a case. I'd expect infinite-precision arithmetic ops to have wide variance in timing for multiply/divide/modulo. What am I missing? http://stackoverflow.com/questions/1809468/algorithm-to-convert-infinitely-long-base-232-number-to-printable-base-10 Comment by Ira Baxter on Algorithm to convert infinitely long base 2^32 number to printable base 10. Ira Baxter 2009-11-27T18:21:39Z 2009-11-27T18:21:39Z Well, the number of electrons in the Universe (~~10^73) can be expressed in 3, 2^32 digits. And that IS a big number :-} http://stackoverflow.com/questions/1809468/algorithm-to-convert-infinitely-long-base-232-number-to-printable-base-10/1809632#1809632 Comment by Ira Baxter on Algorithm to convert infinitely long base 2^32 number to printable base 10. Ira Baxter 2009-11-27T16:44:50Z 2009-11-27T16:44:50Z You imply you are implementing infinite precision arithmetic on the GPU. Assuming it isn't for decimal conversion procedure, why are you doing this? What does the GPU bring to that problem, and why do you expect it to scale well? http://stackoverflow.com/questions/1809468/algorithm-to-convert-infinitely-long-base-232-number-to-printable-base-10/1809632#1809632 Comment by Ira Baxter on Algorithm to convert infinitely long base 2^32 number to printable base 10. Ira Baxter 2009-11-27T16:43:05Z 2009-11-27T16:43:05Z Involving the GPU in infinite precision division for the purpose of printing numbers is a poor use of the GPU; how many decimal printable numbers is it going to produce in one second under normal circumstances? Best to leave this to conventional software. http://stackoverflow.com/questions/1796906/cobol-migrations-strategies/1796964#1796964 Comment by Ira Baxter on COBOL Migrations Strategies? Ira Baxter 2009-11-27T15:42:05Z 2009-11-27T15:42:05Z This response is about &quot;NACA&quot;. Check out the discussion here about what NACA really gives you: <a href="http://stackoverflow.com/questions/1029974/experience-migrating-legacy-cobol-pl1-to-java" rel="nofollow" title="experience migrating legacy cobol pl1 to java">stackoverflow.com/questions/1029974/&hellip;</a> http://stackoverflow.com/questions/1468209/modernize-legacy-cobol/1473460#1473460 Comment by Ira Baxter on Modernize Legacy Cobol Ira Baxter 2009-11-27T05:22:46Z 2009-11-27T05:22:46Z COBOL is just another programming language. It has scalar and record declarations. It has assignment, if, and do statements. It has subroutine calls. (It even has OOP features if you are using a modern compiler). That makes it just like C and Java. It is NOT domain specific any more than Java is. http://stackoverflow.com/questions/1468209/modernize-legacy-cobol/1468251#1468251 Comment by Ira Baxter on Modernize Legacy Cobol Ira Baxter 2009-11-27T05:20:53Z 2009-11-27T05:20:53Z The only correct conversion uses an automated conversion tool. Programmers are extremely error prone. And in realistic contexts (e.g., 1000s of COBOL programs), programmers will make lots of errors, making the converted system either useless or a debugging nightmare. Either kill it. http://stackoverflow.com/questions/1468209/modernize-legacy-cobol/1468799#1468799 Comment by Ira Baxter on Modernize Legacy Cobol Ira Baxter 2009-11-27T05:18:46Z 2009-11-27T05:18:46Z You can read a struct as a monolith in C, too. That's not the reason. http://stackoverflow.com/questions/1468209/modernize-legacy-cobol/1468281#1468281 Comment by Ira Baxter on Modernize Legacy Cobol Ira Baxter 2009-11-27T05:17:12Z 2009-11-27T05:17:12Z This situation is hardly unique to COBOL. The reason that most large application systems aren't converted to your favorite language is that the cost and risk of doing so is very high, and if the application is mission critical then a risky undertaking is just stupid. Now, one can <i>automate</i> the conversion of COBOL to Java. Then it doesn't matter whether you know what it does, as long as the converted code does the same thing. Managers are still rightfully afraid of this, because it is hard to know if the translator is trustworthy. http://stackoverflow.com/questions/1786565/ebnf-for-ecmascript/1786637#1786637 Comment by Ira Baxter on EBNF for ECMAScript? Ira Baxter 2009-11-27T04:36:22Z 2009-11-27T04:36:22Z So you wantto build and manage a variaety of ECMAScript dialects? Check out www.semanticdesigns.com/Products/FrontEnds/ECMASciptFrontEnd.html. This is a well-tested ECMAScript parser with ability to handle dialect variants http://stackoverflow.com/questions/1795699/reverse-engineering-of-communication-protocols Comment by Ira Baxter on Reverse-engineering of communication protocols Ira Baxter 2009-11-25T16:10:19Z 2009-11-25T16:10:19Z Without any other information? This is extremely hard. First you assume a basic model of protocol, say, &quot;pure finite state automata&quot;; if you get that wrong (say it has a hidden counter or a timer), then you can't get the right answer no matter what you do. If you get that right you still have to determine the field structure of the message, which elements trigger protocol transitions, and the actual transition conditions. People write PhD theses trying to induce FSAs from &quot;use case models&quot;. If you aren't willing to bring in more knowledge, you'll have a hellaciously hard time.