学习汇编语言值得吗?

学习 ASM还值得吗?

我只知道一点点,但是我并没有真正地使用它或者正确地学习它,因为我在汇编程序中学到的所有东西,我用 C 或 C + + 这样的语言所花费的时间只有它的十分之一。那么,我真的应该学习和使用 ASM 吗?这对我的职业生涯有帮助吗?这会增加我的机智吗?简而言之,这会让我成为一个更好的程序员吗?

注意: 我说的是像 FASMNASM这样的低级汇编,而不是像 HLA(高级汇编)这样的东西。

90651 次浏览

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.

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.

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.

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

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.

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.

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.