Please explain/exemplify your answers. If yes, what architecture do you recommend to get started with?
feedback
|
|
If you DO choose to learn assembly, I'd argue that the best way to start would be to write code in C, compile it, and then run gdb on the result. you can disassemble particular functions (disas func4), check the state of registers (info registers) etc. That said, you may want to drop the optimization level some so that you can understand it. Which brings me to my main point, learning Assembly for optimization reasons is largely a waste of time. GCC and other C compilers will almost always optimize circles around you. And these optimizations won't break anything. (This whole paragraph can be attributed to my 213 prof's (Randy Bryant) lecture yesterday; I opted to tone the message down a bit, because we're all friends here :) ) | ||||
|
feedback
|
|
I did alright in Java. I hated C++ because I never truly understood what the pointers were doing. THEN I took Assembly. The pointers then made sense! I actually started to enjoy programming once I learned assembly. I very much recommend learning it so you understand more of the basics of how the computer works. It was a real eye-opener for me! | ||||
|
feedback
|
|
Oddly enough I've just asked myself the same question when I started learning what assembly language is and what it does (as of last week). When learning Assembly Language, you are (along side learning the languages itself) learning how the processor works in conjunction with the rest of the computer. If programming low level programs (in machine language; Binary, Hex), you will really need to learn how processors work. Virtual Machines need low level programming in order to emulate the processor, so if you're going to program VMs, then low level would probably be a really good thing to learn. However, if the field you want to go into requires you to have knowledge of High Level (C++, Java?) then knowing low level would we worthwhile to learn, as you'll be learning how to think in efficient code writing. I'm probably missing out a lot here, but that's because I just started myself. If you want examples, then looks at Squadette's post, which provides some examples from Intel and AMD | ||||
|
feedback
|
|
It can do some pretty cool stuff, but I wouldn't say it's worth it anymore. The only exception would be if you work in a shop that needs someone to maintain it, then you may become a very valuable person. I was told all through college that Cobol was dead, mainframes were dead.. Now, it's almost ten years later and I've been a mainframer since I got out of school, and no end in sight. | ||||
|
feedback
|
|
In university, I had a course in 68k assembly in first year. We wrote extremely simple programs that complemented our "Introduction to Programming" course in Java and which allowed us to play with low level concepts like learning about addressing and low-level data representation. In second year, we built a small 68k board by wire-wrapping and used the 68k skills from 1st year to write a really simple "operating system" for it. I haven't worked that close to the machine since, but the experience of doing those courses has undoubtedly made me a better coder. It filled the gap between hardware and high-level programming and definitely made C++ make a lot more sense. ;) I would advise you to learn assembly to improve the depth of your technical knowledge. If you never envisage using it professionally, just pick the easiest architecture you can find and play with that. Getting your head around the concepts used at that level of abstraction is much more important than the language itself. Once you start getting bored, get a reference for another architecture and compare how that architecture does things or write a small, simple virtual machine and play with that or pull up the source code for a free operating system and see how it interacts with the machine. Just jump in and let your curiosity guide you. | ||||
|
feedback
|
|
Only if you don't plan using it ;-) It's not bad to know assembly, as it will teach you how the CPU actually works (often not as newbie expects it to work) and it will teach you what kind of instructions an interpreter or compiler has to generate form your code (which will give you some insight, why certain code runs faster than other code). However, if you plan to actually use assembly language nowadays, you are doing something wrong. If you are a Linux kernel core developer trying to implement better IRQ handling for PCIe cards, that may count as an excuse, but in most other cases, everything that assembler can do can be done in high level programming language as well, and not necessarily slower (GCC generated machine code will most likely beat any hand optimized assembly code a newbie produces). I know PPC and x86 assembly (both Intel and AT&T style notation). If you want a tip from me: I personally think PPC assembly is much more complicated, even though it has less instructions than most x86 CPUs. And even though AT&T style notation is much more logically, it's harder to read IMHO. I'd get a book about 386 Intel assembly programming and start with that. Even the latest Intel CPU still supports all these instructions (just a lot more got added, but you already get pretty far with 386 assembly only). | ||||
|
feedback
|
|
To answer the question of whether it is worth learning assembly, is subject to where you are in life. I found it beneficial to learn assembly when I was working on a Commodore 64, trying to take advantage of the various capabilities that were mapped out in a book called, "Mapping the C64". I later moved on to a PC and used Borland's Turbo C++ to try to write my own graphic's library in C and assembler - I wanted to have the same "Sprites" capabilities that the C64 had, to use in my C programming projects. That was during my teen-age years. You have to have a innate need to know more about what goes on "behind the scenes" of a computer's inner workings, and the workings of the software that runs on one, to maintain an interest in assembler. The best reason to learn assembler would be to fulfill this need to learn more about the core of what runs all the software we use today. Another reason might be to improve the performance of a C function that isn't running fast enough or lacks capabilities that you need. The worth of learning assembler may not translate well into material gains, especially when there are so many high level languages that build assembler code, built on the shoulders of knowledge of the thousands who have coded it before us. Also, you should consider that PC's are able to run the most inefficient assembly code, much faster than ever before, so there may be little sense in re-writing such code, unless you're working for NASA and there's a need for high speed, real-time decision making code embedded into the chips used in a rocket, a space probe, or radio-signal receiver/transmitter. I would learn assembler for personal satisfaction, but not do so as a sole career choice, unless of course you truly feel that its your calling in life - then go for it. | ||||
|
feedback
|
|
Most modern processors comes with a parallelized vector instruction set. If you ever need to write optimized vector routines, then no compiler would understand your intentions from high level code and generate vector instructions. (You shouldn't consider compiler intrinsic instructions high level). But there are plenty of libraries which have done the hard work for you though. | ||||
|
feedback
|
|
definitely yes! I'd a brush with assembly language during my masters. It is really fun to know how all the stuff like x++ or if(true == ???) is executed by machine. As you have to think in terms of registers and stacks you get very close view of the real hardware works. I think x86 is good thing to start with. You can use nasm assembler. There is a really good book by Peter Able but you will have to use Microsoft assembler with it. | ||||
|
feedback
|
|
At least read this "Under the Hood" article: http://www.microsoft.com/msj/0298/hood0298.aspx | ||||
|
feedback
|
|
In short, yes. Understanding assembly will make you understand the output from a C compiler. You get a better handle on what the computer is actually doing at a very low-level. This helps you write faster and more robust software. | ||||
|
feedback
|
|
Absolutely. If you haven't debugged assembly, you haven't debugged enough. Take a quick look at Assembly And The Art Of Debugging and see what you are missing. | ||||
|
feedback
|
|
I think assembly language is something that one should learn while understanding the internal workings of a computer's registers and data flow. Otherwise merely learning the syntax wouldn't benefit enough. | ||||
|
feedback
|
|
Yes, it is. You learn how stuff REALLY works and become a better high level language developer that way. I really encourage you to learn assembler. :-) | ||||
|
feedback
|
|
I wrote IBM 360 BAL (Assembler Language) as a full-time job in the 70's. It was lots of fun, but terribly inefficient in terms of programmer productivity. It prepared me to understand C pointers. However, it was of little use for learning Intel x86 assembler. The problem is that if you want to be even modestly skilled, you have to spend a lot of time writing assembler. Just reading it is not enough. I wish I had time to learn Intel x86 assembler. I guess it's like fly fishing: there's nothing wrong with enjoying it as a hobby, but there are easier ways to put food on the table. Only a specialized subset of fishing guides can make a living at it. | ||||
|
feedback
|