Chapter 7. Optimize Hot Statements
The idea is there, locked inside, and all you have to do is remove the excess stone.
Michelangelo di Lodovico Buonarroti Simoni (1475â1564), in response to the question, âHow do you create your masterpieces?â
Optimizing at the statement level can be modeled as a process of removing instructions from the stream of execution, in a manner similar to how Michelangelo described the process of sculpting his masterpieces. The problem with Michelangeloâs advice is that it doesnât address which part of the stone is excess, and which part is the masterpiece.
The problem with optimizing at the statement level is that, aside from function calls, no C++ statement consumes more than a handful of machine instructions. Focusing on such small-scale optimizations doesnât generally produce enough improvement to make them worth the effort unless the developer can find factors that magnify the cost of the statement, making it hot enough to be worth optimizing. These factors include:
- Loops
-
The cost of statements within a loop is multiplied by the number of times they are repeated. Loops must be identified by the developer. The profiler may point to a function containing a hot loop, but it wonât say which loop in the function is hot. It may point to a function that is hot because it is called from inside one or more loops, but it wonât say which call sites are hot. Since the profiler does not point directly to the loop, the developer must inspect ...
Get Optimized C++ now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.