Is there a need to use assembly these days? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:18:02Z http://stackoverflow.com/feeds/question/143561 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days 14 Is there a need to use assembly these days? Omeoe 2008-09-27T12:34:33Z 2009-10-21T16:16:16Z <p>Many claim that, when performance is at a premium, it's sufficient to write and compile C code to get near-optimal code that is additionally quite portable. I don't see much of a <a href="http://stackoverflow.com/questions/tagged/assembly">assembly</a>/<a href="http://stackoverflow.com/questions/tagged/assembler">assembler</a> discussion on stackoverflow (about 0,3% of the questions right now are tagged any of those tags, many of which refer to .NET Assemblies). </p> <p>However, perphaps there are still realms where this bottom-level approach still wins worthwhile profits. What do you think?</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143572#143572 2 Answer by Remo.D for Is there a need to use assembly these days? Remo.D 2008-09-27T12:39:14Z 2008-09-27T12:39:14Z <p>Not for big applications, I think.</p> <p>Device drivers may benefit from having part of the code coded in ASM. Embedded software is another place where ASM still plays a major role.</p> <p>Sometimes you may want to optimize a function to its maximum because you call it over and over again so you may code it directly in assembler.</p> <p>Frankly I don't see other good reasons to use it.</p> <p>Now that I think about it, we were discussin about cracking just a couple of days ago. That is another area where ASM is key!</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143574#143574 2 Answer by mdec for Is there a need to use assembly these days? mdec 2008-09-27T12:41:17Z 2008-09-27T12:41:17Z <p>Personally I believe in the majority of cases writing Assembly is complete overkill. However having said that a lot of gaming/embedded/OS code requires Assembly for performance gains, or purely because they need to use assembly (e.g. a bootloader). So it still is very much alive, but only in specialised circles. But then again, use the technology that suits, that is, if you are writing a notepad clone, or general desktop application you would be crazy to use Assembly.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143578#143578 20 Answer by mana for Is there a need to use assembly these days? mana 2008-09-27T12:42:01Z 2008-09-27T12:47:56Z <p>Sure there is. Just think of programming drivers or simply doing stuff on real-time embedded devices - or just using embedded stuff without real-time :) </p> <p>I think upcomming FPGA circuits embedded in COTS hardware will bring up the need for low(est) level languages (asm, vhdl, verilog) to a new revival. </p> <p>addition: </p> <p><strong>The knowledge how assembler "works" makes you a better programmer!</strong> Since you understand what really happens behind your (high-level) code. Like:</p> <ul> <li>what are function calls really like</li> <li>what is memory (how is it allcoated, freed, what memory leaks are)</li> <li>how control flow (for, while ...) is done in hardware (goto, if ...)</li> <li>how all the library stuff works (compiling and linking applications)</li> </ul> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143579#143579 15 Answer by Benoit for Is there a need to use assembly these days? Benoit 2008-09-27T12:42:06Z 2008-09-27T15:26:36Z <p>For general computing, I don't think that assembly language has much traction. Compilers these days can actually generate more efficient code than a human <em>in general</em>. </p> <p>However, if you are in a small critical loop that will be executed millions of time, you <strong>might</strong> gain some performance advantage by doing it in assembly.</p> <p>The other case where assembly is absolutely needed is when you are doing bare metal programming on an embedded system. Some of those chips might only be programmable in assembler. Also, even for a 32-bit processor with gobs of memory, the bootstrap code executed when you power on the system <strong>will be</strong> in assembler, as there is no C-stack setup yet, and there are processor registers to initialize.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143583#143583 7 Answer by steffenj for Is there a need to use assembly these days? steffenj 2008-09-27T12:43:28Z 2008-09-27T12:43:28Z <p>Inline assembler can be helpful in certain places when you need to do low-level stuff, not necessarily to get more performance but for example reading CPUID or things like that. If you know the code, you get what you want in 3-5 lines of ASM instead of using and including API calls - if they are available at all.</p> <p>I see ASM used most often to use the best possible way to cast float to int, or other data types, simply to use a CPU's native instructions where available. This is probably the single most important use of ASM nowadays, making use of a CPU's special feature where available and necessary (especially console/embedded programming).</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143604#143604 1 Answer by benjismith for Is there a need to use assembly these days? benjismith 2008-09-27T12:56:57Z 2008-09-27T12:56:57Z <p>Besides high-performance and embedded computing, the other important use of assembly language is in writing compilers.</p> <p>You want your code to run on silicon? Somebody has to generate the machine instructions :)</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143615#143615 4 Answer by Matt Curtis for Is there a need to use assembly these days? Matt Curtis 2008-09-27T13:06:40Z 2008-09-27T13:14:03Z <p>If you're working on optimising real-time or high performance applications (such as video games), it's very handy to be able to read assembler, even if you don't write any. Most of the time it's fine to trust the compiler, but if you've got an inner loop that's a bottleneck, it can be worth double checking.</p> <p>These days, in application programming, if you need to work close to the metal (for example, writing your own high performance maths library or lock-free data structures) you'll probably be mostly using <a href="http://en.wikipedia.org/wiki/Intrinsic_function" rel="nofollow">intrinsics</a> rather than writing assembler. But to do this effectively, it's good to have an understanding what's happening under the hood.</p> <p>To get to a good reading understanding of assembler, check out <a href="http://www-inst.eecs.berkeley.edu/~cs61c/sp08/#Calendar" rel="nofollow">Berkeley's course notes on MIPS</a>. IBM has some <a href="http://www.ibm.com/developerworks/library/l-ppc/" rel="nofollow">good info on PowerPC</a> too.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143629#143629 1 Answer by Axeman for Is there a need to use assembly these days? Axeman 2008-09-27T13:14:05Z 2008-09-27T13:14:05Z <p>Yes, I think there is. </p> <p>Every times there is no HAL between your code and a piece of hardware that you need to talk to, it's almost sure that you have to waste a lot of time fighting with the compiler. That's the time when assembly comes handy. </p> <p>In an "everyday" project it's IMHO almost useless. </p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143637#143637 4 Answer by benjismith for Is there a need to use assembly these days? benjismith 2008-09-27T13:20:18Z 2008-09-27T13:20:18Z <p>Incidentally, here's one of my favorite resources for understanding the cost of various CPU instructions:</p> <p><a href="http://www.agner.org/optimize/" rel="nofollow">http://www.agner.org/optimize/</a></p> <p>I could probably count on one hand the number of lines of assembly I've written since college, but I go back to those Agner guides again and again to understand performance issues on modern CPUs. (He gives the most helpful explanation of branch-prediction algorithms that I've ever read.)</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143675#143675 16 Answer by arul for Is there a need to use assembly these days? arul 2008-09-27T13:54:59Z 2008-09-27T13:54:59Z <p>Reverse engeneering, for any reason you might need it.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143676#143676 0 Answer by paxdiablo for Is there a need to use assembly these days? paxdiablo 2008-09-27T13:55:46Z 2008-09-27T13:55:46Z <p>We use assembly, but we're working on operating systems where it's mostly necessary.</p> <p>In the vast majority of cases, the compiler writers will know more about the instruction set and how to optimize than you will so I'd leave it to them.</p> <p>Pretty much all of the applications that ship with our OS (and quite a few bits of the OS itself) are written in higher-level languages.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143682#143682 0 Answer by Hank for Is there a need to use assembly these days? Hank 2008-09-27T14:01:39Z 2008-09-27T14:09:06Z <p>I can't believe noone has mentioned <a href="http://www-cs-faculty.stanford.edu/~uno/taocp.html" rel="nofollow">The Art of Computer Programming</a>, where the examples are implemented in assembly language for a <a href="http://www-cs-faculty.stanford.edu/~uno/mmix.html" rel="nofollow">hypothetical CPU</a>.</p> <p>I guess what I'm saying is that while assembly is used rarely outside of the examples already mentioned, there's certainly a point to learning it for one architecture or another.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143687#143687 51 Answer by DGentry for Is there a need to use assembly these days? DGentry 2008-09-27T14:07:12Z 2008-09-27T14:07:12Z <p>I still work in assembly language regularly as part of my job.</p> <ul> <li>Assembly is used in the earliest stages of the bootloader. When the CPU powers on the stack isn't available, and its tough to keep the C compiler from trying to save things to the stack. The bulk of the bootloader is nonetheless written in C, once the earliest initialization is done.</LI> <li>Assembly is used to write mutex locking primitives. It is essentially impossible to get a C compiler to emit memory barrier instructions at the required places.</li> <li>Routines like memset() or memcpy() are often done in assembly. For example, I wrote a memset() with a large unrolled loop, which dynamically computes a branch address to jump into the middle of that loop for one final iteration. A C routine would have generated more code, taking extra I$ misses. Likewise, CPU instruction sets often include cache line load or other instructions which can dramatically speed up memcpy(), which the C compiler will not utilize.</li> </ul> <p>People often say that device drivers often need assembly code, and I disagree strongly. You only want to write that driver once. Whether the device is incorporated into an x86, PowerPC or ARM system, you want the drivers to just work.</p> <p>Similarly for the embedded systems I've worked on, we don't routinely write things in assembly language. Code maintainability is important, and maintenance of large amounts of assembly is hard. We use mostly C code. C++ is also used but tends to have a larger footprint.</p> <p>In the last year or two I've actually seen Python incorporated into embedded devices a lot more often. Not the smallest 8 bit and 16 bit CPUs, but Linux-based devices and smartphones. Python and other high level languages bring a serious developer productivity enhancement, and avoid a whole class of memory management problems which have plagued embedded developers for years.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143720#143720 1 Answer by smacl for Is there a need to use assembly these days? smacl 2008-09-27T14:42:07Z 2008-09-27T14:42:07Z <p>I think being able to read assembly can still be very useful, particularly where you are debugging something that has crashed, or you are profiling a piece of C or C++ code for speed. I haven't had to count t-states for some years now, but it is nice to know that I still could. I actually miss programming in assembley, but thats probably a just minor personality defect ;)</p> <p>I suspect that there are more people out there that know assembler than many would realise. Look at viruses that take advantage of security vulnerabilities by forcing the execution of a piece of code in an overflow buffer. For those writing antivirus software, I guess some assembley is still very much required. No amount of VB or C# is going to teach you how to solve that little problem.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143743#143743 0 Answer by Simon Buchan for Is there a need to use assembly these days? Simon Buchan 2008-09-27T14:53:21Z 2008-09-27T14:53:21Z <p>I recently needed to expose function exports from a DLL to JavaScript, with the argument types defined with embedded resources. This meant calling functions without the compiler (or me!) knowing the types or even number of arguments! The only dependable way to do this was using assembly to allocate the arguments on the stack and calling the function.</p> <p>I also second being able to read assembly, I've found it a huge help, when the documentation for a library fails.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143828#143828 0 Answer by Dror Helper for Is there a need to use assembly these days? Dror Helper 2008-09-27T15:36:17Z 2008-09-27T15:36:17Z <p>Although most software developers don't need to write or even read assembly in thier everyday job I think that anyone that is writing software would benefit from knowing assembly.</p> <ul> <li>Assembly is the building blocks of our applications and as such it is impossible to really understand how program work without knowing assembly.</li> <li>Assembly language is a powerful tool and knowing how to use it opens up job opportunities in many intersting fields.</li> </ul> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/144389#144389 6 Answer by David Schmitt for Is there a need to use assembly these days? David Schmitt 2008-09-27T20:25:54Z 2008-09-27T20:25:54Z <h2>Hardware Programming</h2> <p>Assembler is necessary when <strong>directly programming the hardware.</strong> Especially very <strong>highly embedded</strong> systems may <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days#143579">lack a compiler</a>. Even modern CPUs need a bit of assembler to get them <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days#143687">bootstrapped</a>, since in the <strong>earliest stages of the power-up cycle</strong>, there is no stack and parts of the CPU still need <strong>initialisation.</strong></p> <p>A area commonly associated with hardware and assembly programming, namely <strong>device drivers</strong>, are <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days#143687">rather using CPU-independent kernel interfaces</a> (<a href="http://www.microsoft.com/whdc/devtools/wdk/default.mspx" rel="nofollow">Windows Driver Kit</a> or Linux' <a href="http://www.linuxjournal.com/article/2476" rel="nofollow">internals</a>).</p> <p>Last, but not least, assembler can be used to quickly <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days#143583"><strong>access a specific CPU-feature</strong></a> (CPUID, int/float conversion) without having to resort to a vendor's (possibly incomplete) API.</p> <h2>Understanding</h2> <p>Learning (any) assembler helps in <strong>understanding the behaviour</strong> of programs from low-level stuff like calling conventions and memory management to arcane topics like <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days#143637">branch prediction</a>. This understanding can be applied when <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days#143675"><strong>reverse engineering</strong></a>, understanding <strong>what the compiler did</strong>, or optimizing the last percent from a hot spot (see below). </p> <p>Thus knowing assembler is one of the necessary pieces to understand a computer from top to bottom.</p> <h2>Performance</h2> <p>Even large and modern <strong>applications</strong> have somewhere that one hotspot that can be significantly improved by the assembler mace. To cite a famous one, Microsoft Excel has its float formatting routine written in assembler (with <a href="http://www.lomont.org/Math/Papers/2007/Excel2007/Excel2007Bug.pdf" rel="nofollow">tragic side effects</a>).</p> <p>On the other hand <strong>libraries</strong> have to perform at their best in any circumstance. Especially things like <a href="http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days#143687">memset() can profit</a> by hand-tuned implementations.</p> <h2>Code generation</h2> <p>Compilers need to generate assembler code. For this someone needs to know enough assembly to create the code generator.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/144644#144644 1 Answer by Max Caceres for Is there a need to use assembly these days? Max Caceres 2008-09-27T22:38:24Z 2008-09-27T22:38:24Z <p>Debugging in general and reverse engineering in particular. Some problems require debugging application binaries at the assembly level (memory management problems, dynamic method invocation, issues with exception handling, and many others). Sometimes when chasing down an application crash you may need to get into a debugger to understand what is going on. A basic understanding of assembly is fundamental for dealing with these issues. You'd be a very valuable team member if you are one of the few who can actually debug your way out of tough problems like these.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/144660#144660 0 Answer by friol for Is there a need to use assembly these days? friol 2008-09-27T22:49:39Z 2008-09-27T22:49:39Z <p>Assembly may still be of use in specific circumstances, like:</p> <ul> <li>size optimized demo-coding (4 kilobytes or less intros, see <a href="http://www.pouet.net/" rel="nofollow">pouet.net</a> or <a href="http://www.scene.org" rel="nofollow">scene.org</a>)</li> <li>inner loop optimizations in 3d engines, sound engines (like softsynths, etc.)</li> </ul> <p>For embedded devices programming, assembly may still be useful, even if nowadays there are C++ compilers for small chips, like Atmel, etc.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/144670#144670 1 Answer by cblades for Is there a need to use assembly these days? cblades 2008-09-27T22:55:26Z 2008-09-27T22:55:26Z <p>Timers are universally written in assembly. And there are very few people who can write them well. </p> <p>Besides that bootstraps, embedded devices, and all the others that people have mentioned are good examples of occasions where, if assembly isn't necessary, it certainly has distinct advantages over higher-level languages.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/144678#144678 0 Answer by Uri for Is there a need to use assembly these days? Uri 2008-09-27T23:00:39Z 2008-09-27T23:00:39Z <p>I think a lot of proprietary hardware related software, embedded systems, and military applications use at least some assembly, they just have a lot less visibility compared to freely available Java programs. </p> <p>You could theoretically make the same argument that C isn't really used because so much code is written in C++/Java/C#/Web-oriented languages, so if you look at the craiglist job postings you will see relatively few C jobs. </p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/155150#155150 0 Answer by van_houtte for Is there a need to use assembly these days? van_houtte 2008-09-30T21:23:15Z 2008-09-30T21:23:15Z <p>(C++ , C , Java... ) Higher level -------translate----------> Lower Level (ASM, machine code, micro code, IL ...)</p> <p>As your knowledge of precisely how the translation from Higher to Lower is done , grows, the more you will find yourself substituting inefficient higher level code with lower level inlines (if possible)</p> <p>E.g. knowing how loops are unrolled by the compiler, knowing how register allocations are done by the compiler/runtime, How different storage types affect memory performance, cache usage, etc etc.</p> <p>If you don't know the 'translation' part or have no desire to learn it as it doesn't affect your particular usecase, then its of no real value to invest time learning asm.</p> <p>But consider this: Your &lt; high level code > crashed and all you may have is a crash dump that you need to analyze and fix the bug for some client/employer. What are you going to do?</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/155178#155178 1 Answer by Dan Hewett for Is there a need to use assembly these days? Dan Hewett 2008-09-30T21:30:26Z 2008-09-30T21:30:26Z <p>It is worthwhile to have an know assembly even if you don't use it. I helps in understanding what is going on in your higher level languages. I was amazed when I was in college at how many Java programmers had NO understanding of memory layout, code generation or any type of physical hardware comprehension. When you first realize that code and data are all just bits - do you want to execute them, or look at them as data - that really blows some people away. It's always worthwhile to understand what going on under the hood.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/155194#155194 1 Answer by MBCook for Is there a need to use assembly these days? MBCook 2008-09-30T21:33:47Z 2008-09-30T21:33:47Z <p>I agree with the general sentiment here. I think assembly is something very useful to know for various reasons, that said, most people should never need to use it.</p> <ul> <li>If you're writing a web app, there is no reason you should need to write assembly. The same goes for general applications (say Quicken, etc).</li> <li>Higher performance applications such as powerful games (i.e. Half-Life 2, Quake 4, etc... not Bejeweled), or computationally intensive work (i.e. some filters in Photoshop, some video editing/compression, etc) will use small bits, but the majority of the code is going to be in something higher level. I would even wager that many of those uses (not all, but many) may be avoidable if the compiler exposes some of the newer CPU instructions (SSE2/3, etc) that you are really trying to use (I think Intel's C compiler is supposed to do a good job with this) that normal code (i.e. a loop) won't just compile into.</li> <li>If you are doing anything involving direct attach hardware (graphics cards, sound cards, etc) you very well could need it. Some hardware (like USB) you can get by without.</li> <li>Embedded systems it's going to be commonly used (again, in small bits) to setup and access hardware, or on system (like some microcontrolers) where there is very little code space or you need to be operating at near max speed (you can't afford the inefficiencies of a cheap C compiler).</li> </ul> <p>It's useful. It would let you do those situations above where it's called for. It gives you a much <strong>much</strong> better idea what's going on in the hardware and how programs and hardware communicate. That said, I think it's perfectly reasonable that someone could go most/all of their career these days and not need to know assembly (especially if you work in a CLR language like Java or <em>whatever</em>.Net).</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/174329#174329 0 Answer by akalenuk for Is there a need to use assembly these days? akalenuk 2008-10-06T13:40:08Z 2008-10-06T13:40:08Z <p>I use MASM32 for making debugging tools, convertors and everything small, that I can write in an hour or two. Low level coding is very easy when the code itself is compact.</p> <p>Though it is not a matter of efficiency, just a personal habit.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/1091455#1091455 0 Answer by Nathan Fellman for Is there a need to use assembly these days? Nathan Fellman 2009-07-07T10:08:14Z 2009-07-07T10:08:14Z <p>My job is to validate the behavior of CPUs during their design. Most of my testing involves writing assembly tests to stress various aspects of the CPU.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/1091542#1091542 0 Answer by sneg for Is there a need to use assembly these days? sneg 2009-07-07T10:25:40Z 2009-07-07T10:25:40Z <p>For general purpose programming I would say, assembler is useful only in cases when:</p> <p>1) You know the platform you are writing software for very well. 2) You know capabilities of your compiler very well (including shortcomings/bugs).</p> <p>2 is very important because compilers are very clever these days and they handle a lot of optimisations for you. If you don't know what you are doing you can actually end up writing assembly code which compiler can't optimise and end up having a less efficient solution than you would otherwise in a higher-level language, simply because a compiler would unwrap your code in assembly in a more efficient manner.</p> <p>I experienced this sort of behaviour myself. I was learning SSE2 and tried implementing some vector operations using SSE2 instructions. Switching on SSE2 instruction set usage in Visual Studio project options and using only C++ yielded the same (if not better) performance.</p> <p>However, like I said, if you require efficiency where you know for a fact that a compiler fails to generate efficient code, you can unwrap that yourself. How likely is it that you encounter such situation? Hard to say. My guess is, only by accident. If you profile your application and find a performance bottleneck you might stumble upon something like that and choose an optimisation accordingly (which might include coding in assembly).</p> <p>Another reason you might want to use assembly for is code consistency. For example, you might be coding in a language which has X compilers which are used by large number of users. Each compiler interprets a certain code block in its own manner and as a result performance and stability varies. In this case you might want to consider using assembly (or a different more standardised language:)) to make sure your code is executed identically no matter what compiler is used.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/1091601#1091601 0 Answer by Thomas for Is there a need to use assembly these days? Thomas 2009-07-07T10:40:48Z 2009-07-07T10:40:48Z <p>The biggest gain in coding in assembler for most programmers (non-embedded etc.., you know what I mean) is when there is an assembler instruction to do exactly what you want, but the high-level language you use can't express that concept in a way that the compiler will understand that it should use that opcode.</p> <p>Examples:</p> <ul> <li>Some processors have built-in AES encryption functionality. How do you express that in C? (without it being added to the compiler)</li> <li>get first bit set (without a loop)</li> </ul> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/1601851#1601851 0 Answer by Konamiman for Is there a need to use assembly these days? Konamiman 2009-10-21T16:03:17Z 2009-10-21T16:03:17Z <p>I code for <a href="http://en.wikipedia.org/wiki/MSX" rel="nofollow">MSX computers</a> in Z80 assembler for fun. It is a machine with a relatively simple but complete architecture, that easily allows for programming 100% in assembler.</p> http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/1601921#1601921 0 Answer by Whoever for Is there a need to use assembly these days? Whoever 2009-10-21T16:16:16Z 2009-10-21T16:16:16Z <p>One very special reason to use assembler I didn't see mentioned here yet, is to have total control over the executed code. It is needed for smart cards to fight so called <a href="http://en.wikipedia.org/wiki/Side-channel%5Fattack" rel="nofollow">side channel attacks</a> that allow to break crypto algorithms using statistical methods to find small dependencies between the processed data (depending on few key bits) and for example the current consumption. Small changes in code like changing the order of few commands (when the order does not matter functionally) can make the difference between a secure and totally insecure implementation.</p>