Home
last modified time | relevance | path

Searched defs:MemDepPrinter (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/Analysis/
DMemDepPrinter.cpp25 struct MemDepPrinter : public FunctionPass { struct
26 const Function *F;
28 typedef PointerIntPair<const Instruction *, 1> InstAndClobberFlag;
29 typedef std::pair<InstAndClobberFlag, const BasicBlock *> Dep;
30 typedef SmallSetVector<Dep, 4> DepSet;
31 typedef DenseMap<const Instruction *, DepSet> DepSetMap;
32 DepSetMap Deps;
34 static char ID; // Pass identifcation, replacement for typeid
35 MemDepPrinter() : FunctionPass(ID) { in MemDepPrinter() function
43 virtual void getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
[all …]