Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMemDepPrinter.cpp26 struct MemDepPrinter : public FunctionPass { struct
27 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 …]