Please explain/exemplify your answers. If yes, what architecture do you recommend to get started with?
|
11
|
|
|
|
|
|
For embedded software development on uProcessors and DSPs assembly language is still widely used, e.g. to speed up certain tasks with inline assembly (instruction within C code) or on some targets because a C compiler is just not available. Also, when using a JTAG debugger you can step through the instructions on an assembly level. Only there you can determine whether some tasks are atomic, i.e. use only one instruction (e.g. Variable++) or need to be protected against preemption by other interrupts. In these situations in comes in very handy to be able to understand assembly language. For the target specific instructions (where there are plenty of usually) you always have to the reference manual of the processor/cross-compiler, but the basic principles of assembly language should still apply. To get started you can use the assembler included in the GNU compiler set. |
|||
|
|
|
|
It depends on what you plan for your future and what you like to program. On modern CPUs there are very much possibilities to improve program performance, which I think are to complex to learn, and current compilers do a pretty good job on optimizing code for specific CPU types. However learning assembly might help you to get a better understandig of the used CPU, which might be a good idea to learn programming on small embedded CPUs (like the AVR architecture, or PICs). However even on these embedded systems modern (C) compilers do a pretty good job, so that in the most cases you will not get any better performance when you use assembly. On the other side the assembly language is a nice low level programming concept which might help you get a different perspective to computer programming problems. If you decide to learn the assembly language the architecture you choose depends mostly on your plans what you want to realise. But it might be a good idea to choose an architecture which has a good simulator or at least realtime debugging interface, so that you can see what your code does (and so that you can see the contents of the used processor registers). |
|||
|
|
|
|
No, unless you have a specific need (ie, embedded programming, etc.). Bertrand Meyer called the C language "portable assembly". I tend to agree with him, and think that learning C will get you close enough to the metal to gain an understanding of what you're program is really doing. The extra effort to learn assembly language won't provide enough benefit in terms of making you a better programmer to justify the effort. Learn C, and then use the time you would have spent on Assembly Language to learn how DB internals really work. Unless you are interested in embedded programming. Then you'll want to learn assembly for the microcontroller you are most interested in. |
|||
|
|
|
|
Yes. It helps you to understand in details how the machine works in the very low level. Also then when you use high-level language like Java and C++ you have in mind what is "under" the code, at machine instruction level, which helps you to optimize the code for CPU, memory e.t.c. I would suggest to start with Motorolla 68000, because it has relatively small number of instructions which is perfect for understanding the principles. Then you can compare with x86 and then advance to something more modern if you are still interested :) |
|||
|
|
|
|
If you are/will be working with other close-to-hardware languages and techniques (read: C/C++), then absolutely, Yes. Mostly this pays off when you're debugging. Some problems (this even happens in GUI code) are just too wicked to be found by other means than looking at how compiler understood your code and tracking back from there. Other than that, it is "just" worth learning. In the same way as Lisp is: it will give you another useful perspective on things. |
|||
|
|
|
|
Unfortunately there is no definitive answer. If you're writing big business applications (some call them "enterprise", but it may have negative connotations) then of course not. However, when involved with operating systems, low-level C stuff, compilers, hypervisors, language VMs (like JVM, or V8) or even other stuff reasonably close to the machine, it's nice to know how the CPU is doing job internally. There is also a third choice. I had a course on university called basically "Architecture of a computer" which didn't teach you assembler, but how does CPU operate, how extensions like MMX, SSE, etc. work, what's good and fast in low level perspective and what's not, etc. Memory latency, disk latency, caches on the way... you can gain many advantages of learning assembly by learning these things. For the rest, you would have to see for yourself. You asked about architecture... Well, I would say x86. Most popular. ;-P |
|||
|
|
If you are student then start with 8051 or ARM. If you are professional then start with ARM or 8086. |
|||
|
|
|
|
I think learning assembly language is an important part of really understanding your computer. I think it is worth the effort. Assembly language is very easy, but writing programms in assembly language isn't. You might want to read The Art of Computer Programming by Donald E. Knuth. It's the best book series I ever read! |
|||
|
|
|
|
Learning is always worth the effort. Learning assembler enables you to better understand low-level optimizations. Moreover, it allows for understanding the complexity of your application. Having said that, assembler knowledge will rarely come into today's high level programming practice. If you want to learn assembly, i would suggest going over the principles and not focus on a specific architecture and all of its instructions. |
|||
|
|
