Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / Objective C

Writing Great Code Vol 2: Thinking Low-Level, Writing High-Level

Rate me:
Please Sign up or sign in to vote.
4.71/5 (22 votes)
30 Dec 2009CPOL7 min read 55.5K   24   32
Review of Randall Hyde's Write Great Code Vol. 2

This article is in the Book Review chapter. Reviews are intended to provide you with information on books - both paid and free - that others consider useful and of value to developers. Read a good programming book? Write a review!

Introduction

Image of Write Great Code Vol. 2 Cover

I recently had the time to devote to reading a new book. I wanted to learn about Low Level Assembler and how it can be used with respect to performance tuning applications. I have heard that the book 'The Art of Assembly' is one of the best books on the topic of Assembler. While looking at other book's published by the same author; Randall Hyde, I found his newer series on 'Writing Great Code'.

The second book in the series focuses on exactly what I was looking for. A brief introduction to assembler and how it can be used to tune the performance of code.

The book is geared for the x86 and PowerPC Instruction sets. My background is in Java and C# .NET. Both are 4th level languages and use an optimizing JIT compiler on either OP Code (Java) or IL (.NET). I already had a working knowledge of both languages and intermediates. However I had no understanding of assembler (though I took assembler in college).

The books starts out by introducing the basic assembly code for both x86 and PowerPC. This was really forthcoming in explaining the similarities and differences between the two. Most notably is the way the x86 uses a small set of registers and PowerPC has an extended set. The Assembler covered is at a very simple level of understanding and does not make mention of anything but the most basic instructions of the languages. This is key in helping the reader more quickly pick up the basics without having to have domain knowledge of the languages and instruction sets. I would think it's much like the difference between skiing and snowboarding. Skiing is hard to learn at first and easier to master, and snowboarding is easy to learn and hard to master. Assembler is more like the latter if Randall's technique is used. The book makes mention of an online concordance for the languages and instruction sets however I did not make use of them while reading the book. This really forced me to use my mind to interpret the code.

Each example starts out with an introduction to the problem being covered. Then an example in a high level language is supplied with a corresponding disassembly of the code with and without the compilers optimizer applied. Several compilers are used against both x86 and PowerPC generalizations of the code. From this, I could quickly see how the GNU Compiler for the PowerPC seemed to provide the best optimizations.

The goal of the book is to show how to write code at the high level and understand what the compiler is doing to optimize the code. This can be very useful, I certainly learned more than I expected to learn about compiler optimizations. I also learned that the compiler is only doing what it was designed to do. So if I write code at a high level the compiler doesn't expect, then no optimizations will be applied. More importantly the book uncovers many situations where the Developer may invernly keep the compiler from making an optimization due to lack of understanding and dependency problems.

One reviewer for the book states that the section on Boolean logic is worth the cost of the book. I thought to myself: 'Well kind of', this underwhelming feeling could be due to me having a degree in Electronics Engineering. I found the sections on memory allocations, Iterators, and Branch Operators really interesting.

While reading the book, I came to a conclusion that the editor; who is said to have made the book easier to read, really didn't do a great job on the edit. I would have edited it differently, but I think the goal of the book is still true to the intended purpose and audience.

Chapter and Contents

Some basic statistics:

  • Cover price: $44.95 US / 58.95 CAN
  • Total number of pages: 587 + online appendicitis
  • Publisher: No Starch Press

Chapter 1: Thinking Low-Level, Writing High-Level

A brief 10 page introduction covering the outline of the book, how to read the book, and misconceptions about compiler quality.

Chapter 2: Shouldn't You Learn Assembly Language?

A 6 page synopsis on why Assembly Language is hard to learn and understand, how the book solves the initial learning curve problem of learning assembly, high level assembles and HAL (The author's personal Assembly language) and a little knowledge on the author's other book 'The Art of Assembler' and other great books on assembler.

Chapter 3: 80x86 Assembly for the HLL Programmer

An introduction to the x86 Assembly language geared for the high level programmer. Basic 80x86 Architecture is explained in 20 pages of detail followed up with a minimal instruction set listing. This chapter and the next chapter are written almost identically to allow for easy comparison between the two microprocessors covered in the book.

Chapter 4: PowerPC Assembly for the HLL Programmer

An introduction to the PowerPC family and its Assembly language geared for the high level programmer. Not as much detail here as seen for the 80x86 only 10 pages covering the Architecture and minimal instruction set. I found that after reading chapters 3 and 4, the editor could have made some notes on the similarities between the two. The book leaves making the connection between the two up to the reader, however the remainder of the book does do a great job in outlining the differences.

Chapter 5: Compiler Operation and Code Generation

This chapter is focused on introducing the compiler and covers basic compiler theory and the differences between languages, file types, and translation processes used by compilers. This information is a prerequisite to reading the rest of the book. It really does a good job of covering the whole process the compiler uses to produce an executable. The author uses 40 pages to cover this material in 10 sections.

Chapter 6: Tools for Analyzing Compiler Output

Gives the reader some knowledge on how to decompile and use other tools to help produce an Assembler listing from a high level language. 50 pages are given to cover this topic. Most of the book focuses on decompiling C language code on various compilers and architectures.

Chapter 7: Constants and High-Level Languages

A 40 page introduction to constants and how they are defined in assembler.

Chapter 8: Variables in a High-Level Language

This chapter covers more than just variables. It really focuses on variables and memory organization, life time, and consumption. 50 pages are given to cover this topic.

Chapter 9: Array Data Types

A 40 page overview of array types and how they are organized in memory. The chapter shows different methods of padding arrays in assembler and shows some mistakes made by programmers using arrays.

Chapter 10: String Data Types

The chapter covers basic strings and how they are represented in assembler. The author admits that a full working and understanding of strings in assembler is out of scope for the book. 30 pages cover this topic.

Chapter 11: Pointer Data Types

The question of 'What is a pointer?' is covered in this chapter. The pitfalls of pointers and arithmetic are covered (a common problem with using pointers).

Chapter 12: Record, Union, and Class Data Types

40 pages covering high level languages. This chapter does not really cover how the high level constructs covered translate into assembler, but it does show some problems the compiler runs into when trying to optimize the produced assembler.

Chapter 13: Arithmetic and Logical Expressions

The difference between stack based, accumulator, and register machines is covered. The section on optimizing arithmetic expressions is interesting from a high level understanding. 50 pages cover this topic.

Chapter 14: Control Structures and Programmatic Decisions

Flow control statements are covered. I found myself not really understanding the assembler statements in this section while reading. After reading other chapters, I got a better understanding of what the different 'jump' statements do and came back to this chapter and re-read it. I thought this to be one of the most interesting chapters of the book. 40 pages.

Chapter 15: Iterative Control Structures

This chapter helped to fill in the gaps in the previous chapter. Also very interesting. 40 pages.

Chapter 16: Functions and Procedures

30 pages on functions and problems the compiler runs into when different value or reference types are passed.

It seems the author wrote some chapters which covered the course of the book. Mostly on compiler theory, performance and dependency problems. Overall I would give the book a 4 of 5, and recommend it for anyone who is interested in writing better code and understanding how compilers optimize high level code.

History

  • First draft - December 2009

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO AW Proto-Code, Inc.
United States United States
I’m a self learned wiz kid turned Architect. Stared with an Apple IIe, using AppleSoft Basic, ProDos and Begal Basic at age 10.

Picked up LPC in college before the Dot Com Explosion. Wrote some Object C in the USAF for one of my instructors. Got a break from a booming computer manufacture testing server software. Left the Boom and went to work for a Dot Com built from the ashes of Sun Micro in CS. Mentoring in Java solidified me as a professional developer. Danced in the light of the sun for 13 years, before turning to the dark side. An evil MVP mentored me in the ways of C# .NET. I have not looked back since.

Interests include:

~ Windows Presentation Foundation and Silverlight
~ Parallel Programming
~ Instruction Set Simulation and Visualization
~ CPU to GPU code conversion
~ Performance Optimizations
~ Mathematics and Number Theory
~ Domain Specific Languages
~ Virtual Machine Design and Optimization
~ Graphics Development
~ Compiler Theory and Assembler Conversion Methodology
~ CUDA, OpenCL, Direct Compute, Quantum Mechanics

IEEE Associate Member 2000
This is a Organisation (No members)


Comments and Discussions

 
Suggestionx86 assembly online video course Pin
Member 111387798-Oct-14 7:28
Member 111387798-Oct-14 7:28 
GeneralRe: x86 assembly online video course Pin
Paul Conrad5-Sep-15 19:08
professionalPaul Conrad5-Sep-15 19:08 
What does this have to do with the book review?
"I've seen more information on a frickin' sticky note!" - Dave Kreskowiak

GeneralMinimal Instructionsets for 80x86 and PowerPC Pin
ProtoBytes27-Jan-10 7:33
ProtoBytes27-Jan-10 7:33 
Generalx86 registers Pin
Dan Neely26-Jan-10 11:04
Dan Neely26-Jan-10 11:04 
GeneralRe: x86 registers Pin
ProtoBytes26-Jan-10 11:16
ProtoBytes26-Jan-10 11:16 
GeneralRe: x86 registers Pin
Dan Neely27-Jan-10 2:43
Dan Neely27-Jan-10 2:43 
GeneralRe: x86 registers Pin
ProtoBytes27-Jan-10 3:50
ProtoBytes27-Jan-10 3:50 
GeneralRe: x86 registers Pin
Dan Neely27-Jan-10 4:15
Dan Neely27-Jan-10 4:15 
AnswerRe: x86 registers and PowerPC Registers Pin
ProtoBytes27-Jan-10 7:09
ProtoBytes27-Jan-10 7:09 
Generalcongratulation !!! Pin
m.moestl30-Dec-09 11:55
m.moestl30-Dec-09 11:55 
GeneralRe: congratulation !!! Pin
ProtoBytes30-Dec-09 12:56
ProtoBytes30-Dec-09 12:56 
GeneralI just bought the book today and can't wait to read it... Pin
m.moestl31-Dec-09 4:37
m.moestl31-Dec-09 4:37 
GeneralRe: I just bought the book today and can't wait to read it... Pin
ProtoBytes31-Dec-09 4:56
ProtoBytes31-Dec-09 4:56 
GeneralRe: I just bought the book today and can't wait to read it... Pin
m.moestl31-Dec-09 6:39
m.moestl31-Dec-09 6:39 
GeneralMy vote of 1 Pin
Panic2k330-Dec-09 11:40
Panic2k330-Dec-09 11:40 
GeneralRe: My vote of 1 Pin
ProtoBytes30-Dec-09 12:53
ProtoBytes30-Dec-09 12:53 
GeneralRe: My vote of 1 Pin
Paul Conrad26-Jan-10 10:17
professionalPaul Conrad26-Jan-10 10:17 
GeneralRe: My vote of 1 Pin
Luc Pattyn26-Jan-10 14:14
sitebuilderLuc Pattyn26-Jan-10 14:14 
GeneralRe: My vote of 1 Pin
ProtoBytes27-Jan-10 3:42
ProtoBytes27-Jan-10 3:42 
GeneralMy vote of 1 Pin
xliqz30-Dec-09 6:10
xliqz30-Dec-09 6:10 
RantRe: My vote of 1 Pin
ProtoBytes30-Dec-09 6:51
ProtoBytes30-Dec-09 6:51 
GeneralMessage Closed Pin
30-Dec-09 3:19
MumiPapa30-Dec-09 3:19 
GeneralRe: My vote of 1 Pin
ProtoBytes30-Dec-09 3:33
ProtoBytes30-Dec-09 3:33 
GeneralRe: My vote of 1 Pin
Pete O'Hanlon4-Jan-10 10:26
subeditorPete O'Hanlon4-Jan-10 10:26 
QuestionLink? Pin
Trollslayer30-Dec-09 1:13
mentorTrollslayer30-Dec-09 1:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.