[llvm-commits] CVS: llvm/include/llvm/Transforms/Instrumentation.h LinkAllPasses.h

Andrew Lenharth alenhar2 at cs.uiuc.edu
Sun Nov 27 16:58:22 PST 2005



Changes in directory llvm/include/llvm/Transforms:

Instrumentation.h updated: 1.8 -> 1.9
LinkAllPasses.h updated: 1.25 -> 1.26
---
Log message:

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.



---
Diffs of the changes:  (+12 -0)

 Instrumentation.h |    7 +++++++
 LinkAllPasses.h   |    5 +++++
 2 files changed, 12 insertions(+)


Index: llvm/include/llvm/Transforms/Instrumentation.h
diff -u llvm/include/llvm/Transforms/Instrumentation.h:1.8 llvm/include/llvm/Transforms/Instrumentation.h:1.9
--- llvm/include/llvm/Transforms/Instrumentation.h:1.8	Thu Apr 21 15:57:32 2005
+++ llvm/include/llvm/Transforms/Instrumentation.h	Sun Nov 27 18:58:09 2005
@@ -43,6 +43,13 @@
 // Reoptimizer support pass: insert counting of execute paths instrumentation
 FunctionPass *createProfilePathsPass();
 
+// Random Sampling Profiling Framework
+ModulePass* createBlockProfilerRSPass();
+ModulePass* createFunctionProfilerRSPass();
+ModulePass* createNullProfilerRSPass();
+FunctionPass* createRSProfilingPass();
+
+
 //===----------------------------------------------------------------------===//
 // Support for inserting LLVM code to print values at basic block and function
 // exits.


Index: llvm/include/llvm/Transforms/LinkAllPasses.h
diff -u llvm/include/llvm/Transforms/LinkAllPasses.h:1.25 llvm/include/llvm/Transforms/LinkAllPasses.h:1.26
--- llvm/include/llvm/Transforms/LinkAllPasses.h:1.25	Wed Nov  9 20:07:45 2005
+++ llvm/include/llvm/Transforms/LinkAllPasses.h	Sun Nov 27 18:58:09 2005
@@ -106,6 +106,11 @@
       (void) llvm::createTraceValuesPassForFunction();
       (void) llvm::createUnifyFunctionExitNodesPass();
       (void) llvm::createCondPropagationPass();
+      (void) llvm::createBlockProfilerRSPass();
+      (void) llvm::createFunctionProfilerRSPass();
+      (void) llvm::createNullProfilerRSPass();
+      (void) llvm::createRSProfilingPass();
+
     }
   } ForcePassLinking;
 };






More information about the llvm-commits mailing list