Searched refs:InstTypePair (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Analysis/
H A DMemDepPrinter.cpp36 typedef PointerIntPair<const Instruction *, 2, DepType> InstTypePair; typedef in struct:__anon25692::MemDepPrinter
37 typedef std::pair<InstTypePair, const BasicBlock *> Dep;
63 static InstTypePair getInstTypePair(MemDepResult dep) {
65 return InstTypePair(dep.getInst(), Clobber);
67 return InstTypePair(dep.getInst(), Def);
69 return InstTypePair(dep.getInst(), NonFuncLocal);
71 return InstTypePair(dep.getInst(), Unknown);
73 static InstTypePair getInstTypePair(const Instruction* inst, DepType type) {
74 return InstTypePair(inst, type);

Completed in 353 milliseconds