Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a good book on how modern microprocessors are designed and work as I would like to increase my understanding of what makes them tick. Something that covers pipelines, superscalar architectures, caches etc. A book that is suitable for a programmer with several years of experience and has done and understands assembly programming and machine language, so basically not "CPUs for Dummies" or anything such.

What books do people who design today's processors read for instance?

share|improve this question

closed as not constructive by Bill the Lizard Aug 7 '12 at 2:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

up vote 11 down vote accepted

This is a good entry level text:

http://www.amazon.com/Computer-Architecture-Quantitative-Approach-Kaufmann/dp/1558605967

Also known to CPU architects as "Hennessy and Patterson" (the authors of the original).

share|improve this answer
Looks really good, thanks! – David Holm Jan 26 '09 at 16:03
I learnt from this - was going to put exactly the same thing :) – ShuggyCoUk Jan 26 '09 at 16:04
This is the reference for design of modern CPU architecture. I don't think it's "suitable for a programmer with several years of experience and has done and understands assembly programming and machine language" - it's going to be a hard read for you, but if you push through it you'll get it. – Adam Davis Jan 26 '09 at 17:05
I used this is in an advanced processor design course. It's pretty good. :) David Patterson also has some of his course lectures on the Berkeley Webcast. – BobbyShaftoe Jan 26 '09 at 23:04
My friends always laugh at me when they see that book in my bookshelves... I think they're more or less right, it's too basic. – fortran Mar 19 '10 at 17:52
show 2 more comments

Inside the Machine

This is an excellent book with fantastic illustrations. It covers in detail all three of the areas that you mention.

From their site:

Inside the Machine, from the co-founder of the highly respected Ars Technica website, explains how microprocessors operate—what they do and how they do it. The book uses analogies, full-color diagrams, and clear language to convey the ideas that form the basis of modern computing. After discussing computers in the abstract, the book examines specific microprocessors from Intel, IBM, and Motorola, from the original models up through today's leading processors. It contains the most comprehensive and up-to-date information available (online or in print) on Intel’s latest processors: the Pentium M, Core, and Core 2 Duo. Inside the Machine also explains technology terms and concepts that readers often hear but may not fully understand, such as "pipelining," "L1 cache," "main memory," "superscalar processing," and "out-of-order execution."

share|improve this answer

The only book I've read on the subject is Computer Organization and Architecture. It's a difficult read in some areas (any book on the subject likely is), but I believe it covers everything that you're looking for.

share|improve this answer
That's the book we used in school (an earlier edition though), and I agree on both points. It's difficult but thorough. – Bill the Lizard Mar 19 '10 at 19:16
Very comprehensive book but probably a little outdated now. Good bedtime reading! – mdm Mar 22 '10 at 11:54

Stokes Inside the Machine is a good basic-level text that should be accessible to anyone with a bit of computing knowledge. Hennesey & Patterson's Computer Architecture is indeed the bible of this field, as noted by other respondents. I'll also recommend Computer Systems: A Programmer's Perspective by Bryant and O'Hallaron. It approaches the material from the point of view of writing software to make the most effective use of available hardware.

share|improve this answer

The Hennessey and Patterson book is used heavily also.

share|improve this answer

Advanced Computer Architecture

If I remember well, this was a good one. Maybe a little bit dated (1992), but very dense and it covers advanced topics.

share|improve this answer

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