2003-01-14 22:37:41 +00:00
|
|
|
//===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
|
2005-04-21 20:59:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:59:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-01-14 22:37:41 +00:00
|
|
|
//
|
2008-03-06 10:36:00 +00:00
|
|
|
// This file defines constructor functions for instrumentation passes.
|
2003-01-14 22:37:41 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TRANSFORMS_INSTRUMENTATION_H
|
|
|
|
#define LLVM_TRANSFORMS_INSTRUMENTATION_H
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2004-09-30 20:13:55 +00:00
|
|
|
class ModulePass;
|
|
|
|
class FunctionPass;
|
|
|
|
|
2007-02-20 05:31:35 +00:00
|
|
|
// Insert edge profiling instrumentation
|
2005-01-07 06:57:28 +00:00
|
|
|
ModulePass *createEdgeProfilerPass();
|
|
|
|
|
2009-09-01 19:05:58 +00:00
|
|
|
// Insert optimal edge profiling instrumentation
|
|
|
|
ModulePass *createOptimalEdgeProfilerPass();
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-01-14 22:37:41 +00:00
|
|
|
#endif
|