Searched defs:MemDepPrinter (Results 1 – 1 of 1) sorted by relevance
25 struct MemDepPrinter : public FunctionPass { struct26 const Function *F;28 enum DepType {35 static const char *const DepTypeStr[];37 typedef PointerIntPair<const Instruction *, 2, DepType> InstTypePair;38 typedef std::pair<InstTypePair, const BasicBlock *> Dep;39 typedef SmallSetVector<Dep, 4> DepSet;40 typedef DenseMap<const Instruction *, DepSet> DepSetMap;41 DepSetMap Deps;43 static char ID; // Pass identifcation, replacement for typeid[all …]