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
|
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 |
|||
|
|
|
|
Yes.
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.
"Better" meaning:
|
|||
|
|
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|
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?). |
|||
|
|
|
|
Paraphrasing wildly, quis compilet ipsos compilatores? (No, not valid Latin. Which is useful in a similar way to assembly, though much less). |
|||
|
|
If assembly language isn't taught - who will write the compilers? |
||||||||
|