1 //===-- Instrumentation.cpp - TransformUtils Infrastructure ---------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the common initialization infrastructure for the
11 // Instrumentation library.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/InitializePasses.h"
16 #include "llvm-c/Initialization.h"
17 #include "llvm/PassRegistry.h"
21 /// initializeInstrumentation - Initialize all passes in the TransformUtils
23 void llvm::initializeInstrumentation(PassRegistry &Registry) {
24 initializeAddressSanitizerPass(Registry);
25 initializeAddressSanitizerModulePass(Registry);
26 initializeBoundsCheckingPass(Registry);
27 initializeGCOVProfilerPass(Registry);
28 initializeMemorySanitizerPass(Registry);
29 initializeThreadSanitizerPass(Registry);
30 initializeDataFlowSanitizerPass(Registry);
33 /// LLVMInitializeInstrumentation - C binding for
34 /// initializeInstrumentation.
35 void LLVMInitializeInstrumentation(LLVMPassRegistryRef R) {
36 initializeInstrumentation(*unwrap(R));