Lines Matching refs:Depth

610     unsigned Depth) const {  in printChecks()
615 OS.indent(Depth) << "Check " << N++ << ":\n"; in printChecks()
617 OS.indent(Depth + 2) << "Comparing group (" << Check.first << "):\n"; in printChecks()
619 OS.indent(Depth + 2) << *Pointers[First[K]].PointerValue << "\n"; in printChecks()
621 OS.indent(Depth + 2) << "Against group (" << Check.second << "):\n"; in printChecks()
623 OS.indent(Depth + 2) << *Pointers[Second[K]].PointerValue << "\n"; in printChecks()
627 void RuntimePointerChecking::print(raw_ostream &OS, unsigned Depth) const { in print()
629 OS.indent(Depth) << "Run-time memory checks:\n"; in print()
630 printChecks(OS, Checks, Depth); in print()
632 OS.indent(Depth) << "Grouped accesses:\n"; in print()
636 OS.indent(Depth + 2) << "Group " << &CG << ":\n"; in print()
637 OS.indent(Depth + 4) << "(Low: " << *CG.Low << " High: " << *CG.High in print()
640 OS.indent(Depth + 6) << "Member: " << *Pointers[CG.Members[J]].Expr in print()
892 unsigned Depth) { in findForkedSCEVs() argument
899 !isa<Instruction>(Ptr) || Depth == 0) { in findForkedSCEVs()
904 Depth--; in findForkedSCEVs()
935 findForkedSCEVs(SE, L, I->getOperand(0), BaseScevs, Depth); in findForkedSCEVs()
936 findForkedSCEVs(SE, L, I->getOperand(1), OffsetScevs, Depth); in findForkedSCEVs()
979 findForkedSCEVs(SE, L, I->getOperand(1), ChildScevs, Depth); in findForkedSCEVs()
980 findForkedSCEVs(SE, L, I->getOperand(2), ChildScevs, Depth); in findForkedSCEVs()
994 findForkedSCEVs(SE, L, I->getOperand(0), ChildScevs, Depth); in findForkedSCEVs()
995 findForkedSCEVs(SE, L, I->getOperand(1), ChildScevs, Depth); in findForkedSCEVs()
1008 findForkedSCEVs(SE, L, I->getOperand(0), LScevs, Depth); in findForkedSCEVs()
1009 findForkedSCEVs(SE, L, I->getOperand(1), RScevs, Depth); in findForkedSCEVs()
2271 raw_ostream &OS, unsigned Depth, in print() argument
2273 OS.indent(Depth) << DepName[Type] << ":\n"; in print()
2274 OS.indent(Depth + 2) << *Instrs[Source] << " -> \n"; in print()
2275 OS.indent(Depth + 2) << *Instrs[Destination] << "\n"; in print()
2957 void LoopAccessInfo::print(raw_ostream &OS, unsigned Depth) const { in print()
2959 OS.indent(Depth) << "Memory dependences are safe"; in print()
2970 OS.indent(Depth) << "Has convergent operation in loop\n"; in print()
2973 OS.indent(Depth) << "Report: " << Report->getMsg() << "\n"; in print()
2976 OS.indent(Depth) << "Dependences:\n"; in print()
2978 Dep.print(OS, Depth + 2, DepChecker->getMemoryInstructions()); in print()
2982 OS.indent(Depth) << "Too many dependences, not recorded\n"; in print()
2985 PtrRtChecking->print(OS, Depth); in print()
2988 OS.indent(Depth) << "Non vectorizable stores to invariant address were " in print()
2992 OS.indent(Depth) << "SCEV assumptions:\n"; in print()
2993 PSE->getPredicate().print(OS, Depth); in print()
2997 OS.indent(Depth) << "Expressions re-written:\n"; in print()
2998 PSE->print(OS, Depth); in print()