2010-10-07 20:17:24 +00:00
|
|
|
//===-- Instrumentation.cpp - TransformUtils Infrastructure ---------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the common initialization infrastructure for the
|
|
|
|
// Instrumentation library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/InitializePasses.h"
|
|
|
|
#include "llvm-c/Initialization.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
/// initializeInstrumentation - Initialize all passes in the TransformUtils
|
|
|
|
/// library.
|
|
|
|
void llvm::initializeInstrumentation(PassRegistry &Registry) {
|
2012-07-22 05:19:32 +00:00
|
|
|
initializeAddressSanitizerPass(Registry);
|
2012-11-28 10:31:36 +00:00
|
|
|
initializeAddressSanitizerModulePass(Registry);
|
2012-07-22 05:19:32 +00:00
|
|
|
initializeBoundsCheckingPass(Registry);
|
2010-10-07 20:17:24 +00:00
|
|
|
initializeEdgeProfilerPass(Registry);
|
2012-07-22 05:19:32 +00:00
|
|
|
initializeGCOVProfilerPass(Registry);
|
2010-10-07 20:17:24 +00:00
|
|
|
initializeOptimalEdgeProfilerPass(Registry);
|
2011-01-29 01:09:53 +00:00
|
|
|
initializePathProfilerPass(Registry);
|
2012-11-29 09:57:20 +00:00
|
|
|
initializeMemorySanitizerPass(Registry);
|
2012-02-13 22:50:51 +00:00
|
|
|
initializeThreadSanitizerPass(Registry);
|
2010-10-07 20:17:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// LLVMInitializeInstrumentation - C binding for
|
|
|
|
/// initializeInstrumentation.
|
|
|
|
void LLVMInitializeInstrumentation(LLVMPassRegistryRef R) {
|
|
|
|
initializeInstrumentation(*unwrap(R));
|
|
|
|
}
|