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"
|
|
|
|
|
2014-02-13 21:21:09 +00:00
|
|
|
#if defined(__GNUC__) && defined(__linux__) && !defined(ANDROID)
|
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
|
|
|
|
2014-12-08 18:02:35 +00:00
|
|
|
/// Options for the frontend instrumentation based profiling pass.
|
|
|
|
struct InstrProfOptions {
|
|
|
|
InstrProfOptions() : NoRedZone(false) {}
|
|
|
|
|
|
|
|
// Add the 'noredzone' attribute to added runtime library calls.
|
|
|
|
bool NoRedZone;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Insert frontend instrumentation based profiling.
|
|
|
|
ModulePass *createInstrProfilingPass(
|
|
|
|
const InstrProfOptions &Options = InstrProfOptions());
|
|
|
|
|
2011-11-16 01:35:23 +00:00
|
|
|
// Insert AddressSanitizer (address sanity checking) instrumentation
|
2014-06-13 17:53:44 +00:00
|
|
|
FunctionPass *createAddressSanitizerFunctionPass();
|
2014-07-08 00:50:49 +00:00
|
|
|
ModulePass *createAddressSanitizerModulePass();
|
2012-12-10 19:46:49 +00:00
|
|
|
|
2012-11-29 09:57:20 +00:00
|
|
|
// Insert MemorySanitizer instrumentation (detection of uninitialized reads)
|
2014-06-02 18:08:27 +00:00
|
|
|
FunctionPass *createMemorySanitizerPass(int TrackOrigins = 0);
|
2012-12-10 19:46:49 +00:00
|
|
|
|
2012-02-13 22:50:51 +00:00
|
|
|
// Insert ThreadSanitizer (race detection) instrumentation
|
2014-06-02 18:08:27 +00:00
|
|
|
FunctionPass *createThreadSanitizerPass();
|
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(),
|
2014-04-25 05:29:35 +00:00
|
|
|
void *(*getArgTLS)() = nullptr,
|
|
|
|
void *(*getRetValTLS)() = nullptr);
|
2013-08-07 22:47:18 +00:00
|
|
|
|
2014-11-11 22:14:37 +00:00
|
|
|
// Insert SanitizerCoverage instrumentation.
|
|
|
|
ModulePass *createSanitizerCoverageModulePass(int CoverageLevel);
|
|
|
|
|
2014-02-13 21:21:09 +00:00
|
|
|
#if defined(__GNUC__) && defined(__linux__) && !defined(ANDROID)
|
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
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-01-14 22:37:41 +00:00
|
|
|
#endif
|