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