[PATCH] D17671: [sancov] do not instrument nodes that are full post-dominators
Mike Aizatsky via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 26 18:15:04 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL262103: [sancov] do not instrument nodes that are full pre-dominators (authored by aizatsky).
Changed prior to commit:
http://reviews.llvm.org/D17671?vs=49276&id=49277#toc
Repository:
rL LLVM
http://reviews.llvm.org/D17671
Files:
llvm/trunk/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
Index: llvm/trunk/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
+++ llvm/trunk/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
@@ -31,6 +31,7 @@
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Analysis/EHPersonalities.h"
+#include "llvm/Analysis/PostDominators.h"
#include "llvm/IR/CFG.h"
#include "llvm/IR/CallSite.h"
#include "llvm/IR/DataLayout.h"
@@ -159,8 +160,12 @@
const char *getPassName() const override {
return "SanitizerCoverageModule";
}
+ void getAnalysisUsage(AnalysisUsage &AU) const override {
+ AU.addRequired<DominatorTreeWrapperPass>();
+ AU.addRequired<PostDominatorTreeWrapperPass>();
+ }
- private:
+private:
void InjectCoverageForIndirectCalls(Function &F,
ArrayRef<Instruction *> IndirCalls);
void InjectTraceForCmp(Function &F, ArrayRef<Instruction *> CmpTraceTargets);
@@ -305,20 +310,24 @@
return true;
}
-static bool shouldInstrumentBlock(const BasicBlock *BB,
- const DominatorTree *DT) {
+static bool shouldInstrumentBlock(const BasicBlock *BB, const DominatorTree *DT,
+ const PostDominatorTree *PDT) {
if (!ClPruneBlocks)
return true;
- if (succ_begin(BB) == succ_end(BB))
- return true;
// Check if BB dominates all its successors.
+ bool DominatesAll = succ_begin(BB) != succ_end(BB);
for (const BasicBlock *SUCC : make_range(succ_begin(BB), succ_end(BB))) {
- if (!DT->dominates(BB, SUCC))
- return true;
+ DominatesAll &= DT->dominates(BB, SUCC);
}
- return false;
+ // Check if BB pre-dominates all predecessors.
+ bool PreDominatesAll = pred_begin(BB) != pred_end(BB);
+ for (const BasicBlock *PRED : make_range(pred_begin(BB), pred_end(BB))) {
+ PreDominatesAll &= PDT->dominates(BB, PRED);
+ }
+
+ return !(DominatesAll || PreDominatesAll);
}
bool SanitizerCoverageModule::runOnFunction(Function &F) {
@@ -338,10 +347,12 @@
SmallVector<Instruction*, 8> CmpTraceTargets;
SmallVector<Instruction*, 8> SwitchTraceTargets;
- DominatorTree DT;
- DT.recalculate(F);
+ DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
+ PostDominatorTree *PDT =
+ &getAnalysis<PostDominatorTreeWrapperPass>(F).getPostDomTree();
+
for (auto &BB : F) {
- if (shouldInstrumentBlock(&BB, &DT))
+ if (shouldInstrumentBlock(&BB, DT, PDT))
BlocksToInstrument.push_back(&BB);
for (auto &Inst : BB) {
if (Options.IndirectCalls) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D17671.49277.patch
Type: text/x-patch
Size: 2684 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160227/12a61082/attachment.bin>
More information about the llvm-commits
mailing list