vote up 10 vote down star
1

Is assembly language programming taught just for the sake of history ?

Do compilers generate better assembly code than the one written by a novice programmer?

DEFINE better -> from the point of the execution time of the assembly program

flag
show 4 more comments

36 Answers

prev 1 2
vote up 9 vote down

Do compilers generate better assembly code than the one written by a novice programmer ?

Yes.

Is assembly language programming taught just for the sake of history ?

I'd guess it's taught so that you understand what instructions are seen and executed by the CPU, and understand what a compiler is doing.

DEFINE better -> from the point of the execution time of the assembly program

"Better" meaning:

  • Easier (cheaper) to write
  • And, more likely to run correctly
  • And, probably, quicker (faster to execute): Michael Abrash's book titled Zen of Code Optimization, for example, shows something of using assembly to optimize the efficiency of code ... and it is an interesting read ... but one of the take-aways, I thought, was that by the time you get to writing for the Pentium (whose performance is complicated) then it's so difficult and time-consuming to optimize the assembly that, unless you really have to (which is rare), you're usually better off letting the compiler (and the people who write compilers) do it.
link|flag
vote up 1 vote down

Yes to the first, no to the second. An expert programmer will be able to write more optimal assembly than a compiler.

However, these days hand written assembly is generally relegated to performance critical sections (think 3d-engines in games) or low power hardware (embedded systems).

link|flag
vote up 5 vote down

Do compilers generate better assembly code than the one written by a novice programmer?

Yes. Almost always. (Unless you're one hell of a novice) In general a human will write code that is meant to be read easily, one that highlights the logic. Compilers will tend to write code that accomplishes the given task as minimally as possible, at the expense of readability if needed. This almost always produces "better" results.

link|flag
show 3 more comments
vote up 8 vote down

Better than Novice programmers? Possibly. Almost certainly.

But Assembly still has it's place, for example in Operating System Development, in Device Drivers and embedded hardware, and in algorithms (i.e. games and scientific stuff). Sure, Novice Programmers may not write good assembly code at first, but that applies to every language.

Assembly (and even "higher languages" like C and C++) rapidly lose their importance in normal Business and Web Applications, but there are areas where they are simply not replaceable (yet?).

link|flag
vote up 6 vote down

Paraphrasing wildly, quis compilet ipsos compilatores?

(No, not valid Latin. Which is useful in a similar way to assembly, though much less).

link|flag
show 1 more comment
vote up 29 vote down

If assembly language isn't taught - who will write the compilers?

link|flag
1  
If you don't learn assembly, you'll never really catch on to what a bus error, segmentation violation, or a pointer dereference really are. – Barry Brown Jan 4 '09 at 19:36
1  
There will always be enthusiasts in any field. Why teach anything? – slim Jan 4 '09 at 20:34
show 1 more comment
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.