Remove the now dead VarArgsIncompatible variable.
[oota-llvm.git] / include / llvm / Transforms / Instrumentation.h
index f6aff42d682b5021b8c9935b0ed77a74ed0567ef..4b0c448acfceb209cbd425190559f1d93a71d4cc 100644 (file)
@@ -1,13 +1,13 @@
 //===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
 //===----------------------------------------------------------------------===//
 //
-// This files defines constructor functions for instrumentation passes.
+// This file defines constructor functions for instrumentation passes.
 //
 //===----------------------------------------------------------------------===//
 
@@ -19,40 +19,31 @@ namespace llvm {
 class ModulePass;
 class FunctionPass;
 
-// Reoptimizer support pass: add instrumentation calls to back-edges of loops
-FunctionPass *createLoopInstrumentationPass ();
-
-// Reoptimizer support pass: combine multiple back-edges w/ same target into one
-FunctionPass *createCombineBranchesPass();
+// Insert edge profiling instrumentation
+ModulePass *createEdgeProfilerPass();
 
-// Reoptimizer support pass: emit table of global functions
-ModulePass *createEmitFunctionTablePass ();
+// Insert optimal edge profiling instrumentation
+ModulePass *createOptimalEdgeProfilerPass();
 
-// Reoptimizer support pass: insert function profiling instrumentation
-ModulePass *createFunctionProfilerPass();
+// Insert path profiling instrumentation
+ModulePass *createPathProfilerPass();
 
-// Reoptimizer support pass: insert block profiling instrumentation
-ModulePass *createBlockProfilerPass();
+// Insert GCOV profiling instrumentation
+ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true,
+                                   bool Use402Format = false,
+                                   bool UseExtraChecksum = false);
 
-// Reoptimizer support pass: insert edge profiling instrumentation
-ModulePass *createEdgeProfilerPass();
+// Insert AddressSanitizer (address sanity checking) instrumentation
+ModulePass *createAddressSanitizerPass();
+// Insert ThreadSanitizer (race detection) instrumentation
+FunctionPass *createThreadSanitizerPass();
 
-// Reoptimizer support pass: insert basic block tracing instrumentation
-ModulePass *createTraceBasicBlockPass();
 
-// Reoptimizer support pass: insert counting of execute paths instrumentation
-FunctionPass *createProfilePathsPass();
-
-//===----------------------------------------------------------------------===//
-// Support for inserting LLVM code to print values at basic block and function
-// exits.
+// BoundsChecking - This pass instruments the code to perform run-time bounds
+// checking on loads, stores, and other memory intrinsics.
+// Penalty is the maximum run-time that is acceptable for the user.
 //
-
-// Just trace function entry/exit
-FunctionPass *createTraceValuesPassForBasicBlocks();
-
-// Trace BB's and methods
-FunctionPass *createTraceValuesPassForFunction();
+FunctionPass *createBoundsCheckingPass(unsigned Penalty = 5);
 
 } // End llvm namespace