reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/DependenceAnalysis.cpp
 3466   for (unsigned P = 0; P < Pairs; ++P) {
 3466   for (unsigned P = 0; P < Pairs; ++P) {
 3467     Pair[P].Loops.resize(MaxLevels + 1);
 3468     Pair[P].GroupLoops.resize(MaxLevels + 1);
 3469     Pair[P].Group.resize(Pairs);
 3470     removeMatchingExtensions(&Pair[P]);
 3471     Pair[P].Classification =
 3472       classifyPair(Pair[P].Src, LI->getLoopFor(Src->getParent()),
 3473                    Pair[P].Dst, LI->getLoopFor(Dst->getParent()),
 3474                    Pair[P].Loops);
 3475     Pair[P].GroupLoops = Pair[P].Loops;
 3475     Pair[P].GroupLoops = Pair[P].Loops;
 3476     Pair[P].Group.set(P);
 3476     Pair[P].Group.set(P);
 3477     LLVM_DEBUG(dbgs() << "    subscript " << P << "\n");
 3478     LLVM_DEBUG(dbgs() << "\tsrc = " << *Pair[P].Src << "\n");
 3479     LLVM_DEBUG(dbgs() << "\tdst = " << *Pair[P].Dst << "\n");
 3480     LLVM_DEBUG(dbgs() << "\tclass = " << Pair[P].Classification << "\n");
 3482     LLVM_DEBUG(dumpSmallBitVector(Pair[P].Loops));