Mercurial > hg > CbC > CbC_llvm
view lib/Transforms/Instrumentation/Instrumentation.cpp @ 77:54457678186b LLVM3.6
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +0900 |
parents | 95c75e76d11b |
children | 60c9769439b8 |
line wrap: on
line source
//===-- 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" #include "llvm/PassRegistry.h" using namespace llvm; /// initializeInstrumentation - Initialize all passes in the TransformUtils /// library. void llvm::initializeInstrumentation(PassRegistry &Registry) { initializeAddressSanitizerPass(Registry); initializeAddressSanitizerModulePass(Registry); initializeBoundsCheckingPass(Registry); initializeGCOVProfilerPass(Registry); initializeMemorySanitizerPass(Registry); initializeThreadSanitizerPass(Registry); initializeDataFlowSanitizerPass(Registry); } /// LLVMInitializeInstrumentation - C binding for /// initializeInstrumentation. void LLVMInitializeInstrumentation(LLVMPassRegistryRef R) { initializeInstrumentation(*unwrap(R)); }