What is meant by the term "Instrumentation"?

barry picture barry · Jan 6, 2012 · Viewed 21.1k times · Source

As the title suggests. Many explanations are really vague, can anyone provide a more solid definition?

The term is used a lot in Android testing, but I don't think it's restricted to that platform.

Answer

Krazy Glew picture Krazy Glew · Jan 6, 2012

Some performance measurement tools add instrumentation to the code. E.g. they may binary translate, and add instructions to read the timers at the beginning and end of functions. Or this instrumentation, this reading of the timers, may be added to assembly, or C code, by an automated tool, or a programmer.

Other performance measurement tools do not change the code that is being measured. E.g. UNIX prof sampling runs special code that is invoked at the timer interrupt, which generates a histogram of the instruction at which the interrupt is received.

Some tools are hybrid: e.g. UNIX gprof combines prof-style interrupt sampling with mcount instrumentation added by the compiler with the -pg option to count which functions call each other.

All performance measurement has overhead, but instrumentation tends to have more overhead than interrupt based sampling. On the other hand, instrumentation can measure more stuff.