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"
|
|
|
|
|
2013-08-07 23:29:46 +00:00
|
|
|
#if defined(__GNUC__) && defined(__linux__)
|
2013-08-07 22:47:18 +00:00
|
|
|
inline void *getDFSanArgTLSPtrForJIT() {
|
|
|
|
extern __thread __attribute__((tls_model("initial-exec")))
|
|
|
|
void *__dfsan_arg_tls;
|
|
|
|
return (void *)&__dfsan_arg_tls;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void *getDFSanRetValTLSPtrForJIT() {
|
|
|
|
extern __thread __attribute__((tls_model("initial-exec")))
|
|
|
|
void *__dfsan_retval_tls;
|
|
|
|
return (void *)&__dfsan_retval_tls;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2011-04-16 01:20:23 +00:00
|
|
|
// Insert GCOV profiling instrumentation
|
2013-03-14 05:13:26 +00:00
|
|
|
struct GCOVOptions {
|
|
|
|
static GCOVOptions getDefault();
|
|
|
|
|
|
|
|
// Specify whether to emit .gcno files.
|
|
|
|
bool EmitNotes;
|
|
|
|
|
|
|
|
// Specify whether to modify the program to emit .gcda files when run.
|
|
|
|
bool EmitData;
|
|
|
|
|
|
|
|
// A four-byte version string. The meaning of a version string is described in
|
|
|
|
// gcc's gcov-io.h
|
|
|
|
char Version[4];
|
|
|
|
|
|
|
|
// Emit a "cfg checksum" that follows the "line number checksum" of a
|
|
|
|
// function. This affects both .gcno and .gcda files.
|
|
|
|
bool UseCfgChecksum;
|
|
|
|
|
|
|
|
// Add the 'noredzone' attribute to added runtime library calls.
|
|
|
|
bool NoRedZone;
|
|
|
|
|
|
|
|
// Emit the name of the function in the .gcda files. This is redundant, as
|
|
|
|
// the function identifier can be used to find the name from the .gcno file.
|
|
|
|
bool FunctionNamesInData;
|
|
|
|
};
|
|
|
|
ModulePass *createGCOVProfilerPass(const GCOVOptions &Options =
|
|
|
|
GCOVOptions::getDefault());
|
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(
|
2013-03-14 12:38:58 +00:00
|
|
|
bool CheckInitOrder = true, 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-03-14 12:38:58 +00:00
|
|
|
bool CheckInitOrder = true, StringRef BlacklistFile = StringRef(),
|
2013-01-17 11:12:32 +00:00
|
|
|
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
|
|
|
|
2013-08-07 22:47:18 +00:00
|
|
|
// Insert DataFlowSanitizer (dynamic data flow analysis) instrumentation
|
2013-08-14 18:54:12 +00:00
|
|
|
ModulePass *createDataFlowSanitizerPass(StringRef ABIListFile = StringRef(),
|
|
|
|
void *(*getArgTLS)() = 0,
|
2013-08-07 22:47:18 +00:00
|
|
|
void *(*getRetValTLS)() = 0);
|
|
|
|
|
2013-08-07 23:41:13 +00:00
|
|
|
#if defined(__GNUC__) && defined(__linux__)
|
2013-08-14 18:54:12 +00:00
|
|
|
inline ModulePass *createDataFlowSanitizerPassForJIT(StringRef ABIListFile =
|
|
|
|
StringRef()) {
|
|
|
|
return createDataFlowSanitizerPass(ABIListFile, getDFSanArgTLSPtrForJIT,
|
2013-08-07 22:47:18 +00:00
|
|
|
getDFSanRetValTLSPtrForJIT);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2013-06-28 19:05:23 +00:00
|
|
|
/// createDebugIRPass - Enable interactive stepping through LLVM IR in LLDB (or
|
|
|
|
/// GDB) and generate a file with the LLVM IR to be
|
|
|
|
/// displayed in the debugger.
|
|
|
|
///
|
|
|
|
/// Existing debug metadata is preserved (but may be modified) in order to allow
|
|
|
|
/// accessing variables in the original source. The line table and file
|
|
|
|
/// information is modified to correspond to the lines in the LLVM IR. If
|
|
|
|
/// Filename and Directory are empty, a file name is generated based on existing
|
|
|
|
/// debug information. If no debug information is available, a temporary file
|
|
|
|
/// name is generated.
|
|
|
|
///
|
|
|
|
/// @param HideDebugIntrinsics Omit debug intrinsics in emitted IR source file.
|
|
|
|
/// @param HideDebugMetadata Omit debug metadata in emitted IR source file.
|
|
|
|
/// @param Directory Embed this directory in the debug information.
|
2013-07-30 16:16:11 +00:00
|
|
|
/// @param Filename Embed this file name in the debug information.
|
2013-06-28 19:05:23 +00:00
|
|
|
ModulePass *createDebugIRPass(bool HideDebugIntrinsics,
|
|
|
|
bool HideDebugMetadata,
|
2013-07-30 16:16:11 +00:00
|
|
|
StringRef Directory = StringRef(),
|
|
|
|
StringRef Filename = StringRef());
|
2013-06-28 19:05:23 +00:00
|
|
|
|
|
|
|
/// createDebugIRPass - Enable interactive stepping through LLVM IR in LLDB
|
|
|
|
/// (or GDB) with an existing IR file on disk. When creating
|
|
|
|
/// a DebugIR pass with this function, no source file is
|
|
|
|
/// output to disk and the existing one is unmodified. Debug
|
|
|
|
/// metadata in the Module is created/updated to point to
|
|
|
|
/// the existing textual IR file on disk.
|
|
|
|
/// NOTE: If the IR file to be debugged is not on disk, use the version of this
|
|
|
|
/// function with parameters in order to generate the file that will be
|
|
|
|
/// seen by the debugger.
|
|
|
|
ModulePass *createDebugIRPass();
|
2013-05-08 20:44:14 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-01-14 22:37:41 +00:00
|
|
|
#endif
|