Random sampling (aka Arnold and Ryder) profiling. This is still preliminary, but...
authorAndrew Lenharth <andrewl@lenharth.org>
Mon, 28 Nov 2005 00:58:09 +0000 (00:58 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Mon, 28 Nov 2005 00:58:09 +0000 (00:58 +0000)
commit701f5ac73c782da45d5007f72f7d3dc514166acd
tree2b319ecd63bc0bc13a384d99d8f0001547db20df
parent01595c52b32b8e40b87dd9d36753f8e972ab6f74
Random sampling (aka Arnold and Ryder) profiling.  This is still preliminary, but it works on spec on x86 and alpha.  The idea is to allow profiling passes to remember what profiling they inserted, then a random sampling framework is inserted which consists of duplicated basic blocks (without profiling), such that at each backedge in the program and entry into every function, the framework chooses whether to use the instrumented code or the instrumentation free code.  The goal of such a framework is to make it reasonably cheap to do random sampling of very expensive profiling products (such as load-value profiling).

The code is organized into 3 parts (2 passes)
1) a linked set of profiling passes, which implement an analysis group (linked, like alias analysis are).  These insert profiling into the program, and remember what they inserted, so that at a later time they can be queried about any instruction.

2) a pass that handles inserting the random sampling framework.  This also has options to control how random samples are choosen.  Currently implemented are Global counters, register allocated global counters, and read cycle counter (see? there was a reason for it).

The profiling passes are almost identical to the existing ones (block, function, and null profiling is supported right now), and they are valid passes without the sampling framework (hence the existing passes can be unified with the new ones, not done yet).

Some things are a bit ugly still, but that should be fixed up soon enough.

Other todo? making the counter values not "magic 2^16 -1" values, but dynamically choosable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24493 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Transforms/Instrumentation.h
include/llvm/Transforms/LinkAllPasses.h
lib/Transforms/Instrumentation/RSProfiling.cpp [new file with mode: 0644]
lib/Transforms/Instrumentation/RSProfiling.h [new file with mode: 0644]