What are the most highly regarded books on optimization / performance tuning of C/C++ code?

link|improve this question
2  
That should be a community wiki – lothar Jun 3 '09 at 17:39
@lothar: Why? This looks like it is programming related – the_drow Jun 6 '09 at 23:29
3  
insert reactionary <WHY ARE YOU OPTIMIZING YOUR CODE?> "answer" here – harto Jun 17 '09 at 6:34
You might be interested in my answer here: stackoverflow.com/questions/653980/c-optimization-techniques/… – ShaChris23 Oct 13 '10 at 22:29
1  
show 1 more comment
feedback

19 Answers

They are usually titled 'Algorithms', 'Data Structures' etc. Misleading, indeed ;-)

link|improve this answer
feedback

Agner Fog has some PDFs on optimization you can download for free.

link|improve this answer
1  
+1, the best resource IMO. – Bastien Léonard Jun 20 '09 at 16:47
feedback

One of the books you should check out is is Hacker's Delight by Henry S. Warren

link|improve this answer
1  
+1, amazing book if you like bit twiddling. – Bastien Léonard Jun 20 '09 at 17:29
feedback

It wouldn't do any harm to read Ulrich Drepper's 114-page article "What Every Programmer Should Know About Memory".

link|improve this answer
feedback

I'd recommend "Effective C++: 55 Specific Ways to Improve Your Programs and Designs" by Scott Meyers.

It's not solely about "optimization" (whatever that is), but it's about writing code well. In general, writing code well tends to lead to better-performing code.

link|improve this answer
feedback

One of the best books from "back in the day" was Zen of Code Optimization by Michael Abrash. I see used copies of it still available from Amazaon and other sellers.

While it's a bit dated in terms of CPU (386, 486, Pentiums) and compilers, it's so well written and informative that you can probably still learn a lot.

link|improve this answer
At the very least it is an amazing read. – peterchen Mar 29 '09 at 21:13
feedback

A classic book on the subject is Jon Bentley's Writing Efficient Code, which seems to be out of print. His 'Programming Pearls' and 'More Programming Pearls' also cover efficiency to some extent, though their scope is far wider than just efficiency.

Understanding and using the correct algorithms is another key factor in program efficiency.

link|improve this answer
feedback

Well, It's not seemly to toot my own horn, but I tried to put a lot of that stuff in my book, which is now out of print. I've tried to say a lot of that stuff in my SO postings. The main points in a nutshell, which I know are useless without practice, are

  • Have an interest in information theory, both Shannon and algorithmic styles, and think about how it applies to software.

  • For performance tuning, there is a very simple and effective method, that some programmers know gets to the heart of the problem much faster than "measuring", and which, BTW, Jon Bentley concurs with.

  • If you do that, you come to see what in current practice makes software slow, and it is slavish over-design and galloping generality adhering to what are regarded as untempered "good design practices" leading to massive over-use of data structure.

  • If you look at the writing and maintaining of programs as a process in itself, with efficiency, you come to see the central role of domain specific languages and code generation. This correlates with, not against, run-time efficiency.

  • There is a methodology for analyzing any problem so that you can identify the range of solutions to it, each with pros and cons, and make intelligent choices with tradeoffs.

Hope that helps, Neil.

link|improve this answer
feedback

This is a category where old books should be approached with healthy skepticism. Compiler and chip technology both have come a long way in the last 10-15 years; you don't want to spend your time worrying about details that modern compilers will take care of, or worrying about numbers of processor instructions when it's I/O that matters now.

link|improve this answer
+1 - things change fast - even in the last 5 years micro-optimisation techniques that used to be worth considering are now either not applicable (and may even be counter-productive) or are being handled by a decent compiler. As with many disciplines, the general principles are more important, and survive much longer than the low level detailed stuff. – Paul R Mar 7 '10 at 10:58
feedback

The following are the only things you need to do to get high performance out of computers:

  • Care about performance
  • Properly understand how computers and programming languages work
  • Measure, measure, measure, measure

If you're absolutely determined to do super-micro-optimised C/C++, then you should probably start by learning assembly language.

link|improve this answer
feedback

Write Great Code

A Solid Foundation in Software Engineering for Programmers

The production of high-performance personal computers over the past two decades has enabled the creation of some amazing software products. However, a common complaint users have with modern software is "despite the fact that machines have gotten faster, software seems to be getting slower." A large part of this problem is that programmers are no longer challenged to produce quality applications. High-performance computer systems allow programmers to get away with writing sloppy code and still achieve an acceptable performance level.

write great code (book cover)

link|improve this answer
feedback

The Software Optimization Cookbook. High-Performance Recipes for IA-32 Platforms. Second Edition, by Richard Gerber, Aart J.C. Bik, Kevin B. Smith, Xinmin Tian. Intel Press, 2006. P. 404. http://www.intel.com/intelpress/sum_swcb2.htm

alt text

Lots of examples. Lots of explanations on every microarchitecture's features.

There are two chapters and contents are free to download.

link|improve this answer
feedback

You may want to check out Efficient C++: Performance Programming Techniques

link|improve this answer
feedback

First, you need to have knowledge on how the language features are implemented on a common machine. Second, you need to study about OS and architecture specific optimization. It's impossible to make some code max optimized if you don't take account a specific compiler and machine.

link|improve this answer
feedback

zen of assembly and pretty much anything else by Michael Abrash.

link|improve this answer
feedback

Code Complete

This isn't exactly a book on optimization; however, it contains many good general coding guidelines which could potentially lead to performance gains.

link|improve this answer
feedback

Here is a great blog of several microoptimizations especially when writing codecs or similar.

But beware! Most tricks can make your code almost unreadable (are you ready for IOCCC!), some optimisations may be known by the compiler itself so you do not have to do it manually.

As usual, use a profiler to find out hot spots and only try to optimize them (and only them).

link|improve this answer
feedback

There is also this book: The Art of Computer Systems Performance Analysis

link|improve this answer
feedback

The correct answer for "optimization", of course, is to design the program to have the needed performance properties: this will involve the general software architecture as well as choosing the right algorithms.

However, if you need micro-optimization to squeeze out the last few cycles of performance, Hacker's Delight, published by Addison-Wesley in 2003, is an excellent book.

link|improve this answer
I just noticed that this book was already mentioned. Sorry for the duplication. – Dale Hagglund Jun 20 '09 at 16:46
feedback

Your Answer

 
or
required, but never shown