Searched defs:MDep (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp336 bool processMemCpyMemCpyDependence(MemCpyInst *M, MemCpyInst *MDep,
733 /// memory dependence of memcpy 'M' is the memcpy 'MDep'. Try to simplify M to
734 /// copy from MDep's input if we can. MSize is the size of M's copy.
736 bool MemCpyOpt::processMemCpyMemCpyDependence(MemCpyInst *M, MemCpyInst *MDep, argument
740 if (M->getSource() != MDep->getDest() || MDep->isVolatile())
745 // ignore the input and let someone else zap MDep. This handles cases like:
748 if (M->getSource() == MDep->getSource())
753 ConstantInt *MDepLen = dyn_cast<ConstantInt>(MDep->getLength());
767 // TODO: If the code between M and MDep i
[all...]

Completed in 274 milliseconds