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
|
|
|
|
|
2012-12-03 19:09:26 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2004-09-30 20:13:55 +00:00
|
|
|
class ModulePass;
|
2012-02-13 22:50:51 +00:00
|
|
|
class FunctionPass;
|
2004-09-30 20:13:55 +00:00
|
|
|
|
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();
|
|
|
|
|
2011-01-29 01:09:53 +00:00
|
|
|
// Insert path profiling instrumentation
|
|
|
|
ModulePass *createPathProfilerPass();
|
|
|
|
|
2011-04-16 01:20:23 +00:00
|
|
|
// Insert GCOV profiling instrumentation
|
2011-05-17 23:05:13 +00:00
|
|
|
ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true,
|
2011-12-06 00:29:13 +00:00
|
|
|
bool Use402Format = false,
|
2012-12-10 19:46:49 +00:00
|
|
|
bool UseExtraChecksum = false,
|
|
|
|
bool NoRedZone = false);
|
2011-04-12 01:06:09 +00:00
|
|
|
|
2011-11-16 01:35:23 +00:00
|
|
|
// Insert AddressSanitizer (address sanity checking) instrumentation
|
2012-11-29 18:14:24 +00:00
|
|
|
FunctionPass *createAddressSanitizerFunctionPass(
|
|
|
|
bool CheckInitOrder = false, bool CheckUseAfterReturn = false,
|
2013-01-17 11:12:32 +00:00
|
|
|
bool CheckLifetime = false, StringRef BlacklistFile = StringRef(),
|
|
|
|
bool ZeroBaseShadow = false);
|
2012-12-03 19:09:26 +00:00
|
|
|
ModulePass *createAddressSanitizerModulePass(
|
2013-01-17 11:12:32 +00:00
|
|
|
bool CheckInitOrder = false, StringRef BlacklistFile = StringRef(),
|
|
|
|
bool ZeroBaseShadow = false);
|
2012-12-10 19:46:49 +00:00
|
|
|
|
2012-11-29 09:57:20 +00:00
|
|
|
// Insert MemorySanitizer instrumentation (detection of uninitialized reads)
|
2012-12-28 09:30:44 +00:00
|
|
|
FunctionPass *createMemorySanitizerPass(bool TrackOrigins = false,
|
|
|
|
StringRef BlacklistFile = StringRef());
|
2012-12-10 19:46:49 +00:00
|
|
|
|
2012-02-13 22:50:51 +00:00
|
|
|
// Insert ThreadSanitizer (race detection) instrumentation
|
2012-12-28 09:30:44 +00:00
|
|
|
FunctionPass *createThreadSanitizerPass(StringRef BlacklistFile = StringRef());
|
2011-11-16 01:35:23 +00:00
|
|
|
|
2012-07-20 22:39:33 +00:00
|
|
|
|
|
|
|
// BoundsChecking - This pass instruments the code to perform run-time bounds
|
|
|
|
// checking on loads, stores, and other memory intrinsics.
|
2012-11-23 10:47:35 +00:00
|
|
|
FunctionPass *createBoundsCheckingPass();
|
2012-07-20 22:39:33 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-01-14 22:37:41 +00:00
|
|
|
#endif
|