Is it worthwile to learn assembly language?

Programming LanguagesAssemblyNasm

Programming Languages Problem Overview


Is it still worthwhile to learn ASM?

I know a little of it, but I haven't really used it or learned it properly because everything I learn to do in assembler I can do in 1/10th the time with some language like C or C++. So, should I really learn and use ASM? Will it do me any good professionally? Will it increase my resourcefulness? In short, would it make me a better programmer?

Note: I am talking about low-level assembly like FASM or NASM and not something like HLA (High-Level Assembler).

Programming Languages Solutions


Solution 1 - Programming Languages

I learned from Kip Irvine's book. If you ignore the (fair) criticisms of his (irrelevant) libraries, I can recommend it as a good introduction to the language itself -- although for the really interesting stuff you have to hunt out obsessives on the net.

I think it's useful to understand what happens at the lower levels. As you research assembler you will learn about cpu pipelining, branch prediction, cache alignment, SIMD, instruction reordering and so on. Knowledge of these will help you write better high-level code.

Furthermore, the conventional wisdom is to not try to hand-optimise assembly most of the time but let the compiler worry about it. When you see some examples of the twisted things that compilers generate, you will better understand why the conventional wisdom holds.

Example: LFSRs run fast with the rotate-with-carry instruction, for specific cases like this it's just as easy to write the assembler version as it is to discover whether or not the compiler is smart enough to figure it out. Sometimes you just know something that the compiler doesn't.

It also increases you understanding of security issues -- write-or-execute, stack overruns, etc.

Some concurrency issues only become apparent when you are aware of what is happening at the per-instruction level.

It can be useful sometimes when debugging if you don't have the complete source code.

There's the curiousity value. How are virtual functions implemented anyway? Ever try to write DirectX or COM programs in assembler? How do large structures get returned, does the calling function offer a space for them or vice-versa?

Then there are special assembly languages for graphics hardware, although shader languages went high-level a few years ago, anything which lets you think about a problem a different way is good.

Solution 2 - Programming Languages

I find it interesting that so many people jump to say that yes, you need/should learn assembly. To me the question is how much assembly do you need to know? I don't think you have to know assembly like a programming language, that is I don't believe that everyone should be able to write a program in assembly, but on the other hand, being able to read it and understand what it actually means (which might require more knowledge of the architecture than the assembler) is enough.

I for sure cannot write assembly (i.e. write any non trivial piece of code in assembly), but I can read it and that together with knowledge of the actual hardware architecture, and the calling conventions that are being used is enough to analyze performance, and identify what piece of C++ code was the source of that assembly.

Solution 3 - Programming Languages

Yes - the primary reason to learn assembly for C and C++ developers is it helps understanding what's going on under the hood of C and C++ code. It's not that you will actually write code in assembly, but you will be able to look at code disassembly to assess its efficiency and you will understand how different C and C++ features work much better.

Solution 4 - Programming Languages

It's worthwhile to learn lots of different languages, from lots of different paradigms. Learning Java, C++, C#, and Python doesn't count, since they are all instances of the same paradigm.

As assembly is at the root (well, close to the root) of all languages, I for one say that it is worthwhile to learn assembly.

Then again, it's worthwhile to learn a functional programming language, logic programming, scripting languages, math-based languages. You only have so much time, so you do have to pick and choose.

Solution 5 - Programming Languages

Knowing ASM is also useful when debugging, as sometimes all you have is "ASM dump of the error".

Solution 6 - Programming Languages

Depend of which programming level you wish to reach. If you need to work with debuggers then YES. If you need to know how compilers works then YES. Any assembler/debugger is CPU dependent, so there is a lot of work, just check x86 family how big and old is it.

Solution 7 - Programming Languages

Do you have any use for it in what you plan to do? is it going to aid you in any way in what you currently do or plan to do? those are the two questions you should ask yourself, the answer to those is the answer to your question.

In a more general sense, yes, I'd say in my opinion is well worth learning asm (something like x86 or arm), how well it serves you depends on what you programming and how your debugging it.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionApprenticeHackerView Question on Stackoverflow
Solution 1 - Programming LanguagesspraffView Answer on Stackoverflow
Solution 2 - Programming LanguagesDavid Rodríguez - dribeasView Answer on Stackoverflow
Solution 3 - Programming LanguagessharptoothView Answer on Stackoverflow
Solution 4 - Programming LanguagesDavid HammenView Answer on Stackoverflow
Solution 5 - Programming LanguagesainView Answer on Stackoverflow
Solution 6 - Programming LanguagesGJ.View Answer on Stackoverflow
Solution 7 - Programming LanguagesNecrolisView Answer on Stackoverflow