Searched defs:MemDepPrinter (Results 1 – 1 of 1) sorted by relevance
25 struct MemDepPrinter : public FunctionPass { struct26 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 typeid35 MemDepPrinter() : FunctionPass(ID) { in MemDepPrinter() function43 virtual void getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()[all …]