2010-10-08 04:17:24 +08: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-08-15 00:45:42 +08:00
|
|
|
#include "llvm/Transforms/Instrumentation.h"
|
2010-10-08 04:17:24 +08:00
|
|
|
#include "llvm-c/Initialization.h"
|
2015-08-15 00:45:42 +08:00
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
|
|
|
#include "llvm/InitializePasses.h"
|
2014-01-07 19:48:04 +08:00
|
|
|
#include "llvm/PassRegistry.h"
|
2010-10-08 04:17:24 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2015-08-15 00:45:42 +08:00
|
|
|
/// Moves I before IP. Returns new insert point.
|
|
|
|
static BasicBlock::iterator moveBeforeInsertPoint(BasicBlock::iterator I, BasicBlock::iterator IP) {
|
|
|
|
// If I is IP, move the insert point down.
|
|
|
|
if (I == IP)
|
|
|
|
return ++IP;
|
|
|
|
// Otherwise, move I before IP and return IP.
|
2015-10-14 01:39:10 +08:00
|
|
|
I->moveBefore(&*IP);
|
2015-08-15 00:45:42 +08:00
|
|
|
return IP;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Instrumentation passes often insert conditional checks into entry blocks.
|
|
|
|
/// Call this function before splitting the entry block to move instructions
|
|
|
|
/// that must remain in the entry block up before the split point. Static
|
|
|
|
/// allocas and llvm.localescape calls, for example, must remain in the entry
|
|
|
|
/// block.
|
|
|
|
BasicBlock::iterator llvm::PrepareToSplitEntryBlock(BasicBlock &BB,
|
|
|
|
BasicBlock::iterator IP) {
|
|
|
|
assert(&BB.getParent()->getEntryBlock() == &BB);
|
|
|
|
for (auto I = IP, E = BB.end(); I != E; ++I) {
|
|
|
|
bool KeepInEntry = false;
|
|
|
|
if (auto *AI = dyn_cast<AllocaInst>(I)) {
|
|
|
|
if (AI->isStaticAlloca())
|
|
|
|
KeepInEntry = true;
|
|
|
|
} else if (auto *II = dyn_cast<IntrinsicInst>(I)) {
|
|
|
|
if (II->getIntrinsicID() == llvm::Intrinsic::localescape)
|
|
|
|
KeepInEntry = true;
|
|
|
|
}
|
|
|
|
if (KeepInEntry)
|
|
|
|
IP = moveBeforeInsertPoint(I, IP);
|
|
|
|
}
|
|
|
|
return IP;
|
|
|
|
}
|
|
|
|
|
2010-10-08 04:17:24 +08:00
|
|
|
/// initializeInstrumentation - Initialize all passes in the TransformUtils
|
|
|
|
/// library.
|
|
|
|
void llvm::initializeInstrumentation(PassRegistry &Registry) {
|
2018-10-12 02:31:51 +08:00
|
|
|
initializeAddressSanitizerLegacyPassPass(Registry);
|
|
|
|
initializeAddressSanitizerModuleLegacyPassPass(Registry);
|
2017-11-14 09:30:04 +08:00
|
|
|
initializeBoundsCheckingLegacyPassPass(Registry);
|
2018-09-05 01:19:13 +08:00
|
|
|
initializeControlHeightReductionLegacyPassPass(Registry);
|
2016-06-05 11:40:03 +08:00
|
|
|
initializeGCOVProfilerLegacyPassPass(Registry);
|
2016-05-06 13:49:19 +08:00
|
|
|
initializePGOInstrumentationGenLegacyPassPass(Registry);
|
2016-05-07 13:39:12 +08:00
|
|
|
initializePGOInstrumentationUseLegacyPassPass(Registry);
|
2016-05-15 09:04:24 +08:00
|
|
|
initializePGOIndirectCallPromotionLegacyPassPass(Registry);
|
2017-04-05 00:42:20 +08:00
|
|
|
initializePGOMemOPSizeOptLegacyPassPass(Registry);
|
2016-04-19 01:47:38 +08:00
|
|
|
initializeInstrProfilingLegacyPassPass(Registry);
|
2012-11-29 17:57:20 +08:00
|
|
|
initializeMemorySanitizerPass(Registry);
|
2017-12-09 08:21:41 +08:00
|
|
|
initializeHWAddressSanitizerPass(Registry);
|
2012-02-14 06:50:51 +08:00
|
|
|
initializeThreadSanitizerPass(Registry);
|
2014-11-12 06:14:37 +08:00
|
|
|
initializeSanitizerCoverageModulePass(Registry);
|
2013-08-08 06:47:18 +08:00
|
|
|
initializeDataFlowSanitizerPass(Registry);
|
[esan] EfficiencySanitizer instrumentation pass
Summary:
Adds an instrumentation pass for the new EfficiencySanitizer ("esan")
performance tuning family of tools. Multiple tools will be supported
within the same framework. Preliminary support for a cache fragmentation
tool is included here.
The shared instrumentation includes:
+ Turn mem{set,cpy,move} instrinsics into library calls.
+ Slowpath instrumentation of loads and stores via callouts to
the runtime library.
+ Fastpath instrumentation will be per-tool.
+ Which memory accesses to ignore will be per-tool.
Reviewers: eugenis, vitalybuka, aizatsky, filcab
Subscribers: filcab, vkalintiris, pcc, silvas, llvm-commits, zhaoqin, kcc
Differential Revision: http://reviews.llvm.org/D19167
llvm-svn: 267058
2016-04-22 05:30:22 +08:00
|
|
|
initializeEfficiencySanitizerPass(Registry);
|
2010-10-08 04:17:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// LLVMInitializeInstrumentation - C binding for
|
|
|
|
/// initializeInstrumentation.
|
|
|
|
void LLVMInitializeInstrumentation(LLVMPassRegistryRef R) {
|
|
|
|
initializeInstrumentation(*unwrap(R));
|
|
|
|
}
|