Lines Matching refs:Depth
472 unsigned Depth) const { in printChecks()
477 OS.indent(Depth) << "Check " << N++ << ":\n"; in printChecks()
479 OS.indent(Depth + 2) << "Comparing group (" << Check.first << "):\n"; in printChecks()
481 OS.indent(Depth + 2) << *Pointers[First[K]].PointerValue << "\n"; in printChecks()
483 OS.indent(Depth + 2) << "Against group (" << Check.second << "):\n"; in printChecks()
485 OS.indent(Depth + 2) << *Pointers[Second[K]].PointerValue << "\n"; in printChecks()
489 void RuntimePointerChecking::print(raw_ostream &OS, unsigned Depth) const { in print()
491 OS.indent(Depth) << "Run-time memory checks:\n"; in print()
492 printChecks(OS, Checks, Depth); in print()
494 OS.indent(Depth) << "Grouped accesses:\n"; in print()
498 OS.indent(Depth + 2) << "Group " << &CG << ":\n"; in print()
499 OS.indent(Depth + 4) << "(Low: " << *CG.Low << " High: " << *CG.High in print()
502 OS.indent(Depth + 6) << "Member: " << *Pointers[CG.Members[J]].Expr in print()
1759 raw_ostream &OS, unsigned Depth, in print() argument
1761 OS.indent(Depth) << DepName[Type] << ":\n"; in print()
1762 OS.indent(Depth + 2) << *Instrs[Source] << " -> \n"; in print()
1763 OS.indent(Depth + 2) << *Instrs[Destination] << "\n"; in print()
2204 void LoopAccessInfo::print(raw_ostream &OS, unsigned Depth) const { in print()
2206 OS.indent(Depth) << "Memory dependences are safe"; in print()
2216 OS.indent(Depth) << "Has convergent operation in loop\n"; in print()
2219 OS.indent(Depth) << "Report: " << Report->getMsg() << "\n"; in print()
2222 OS.indent(Depth) << "Dependences:\n"; in print()
2224 Dep.print(OS, Depth + 2, DepChecker->getMemoryInstructions()); in print()
2228 OS.indent(Depth) << "Too many dependences, not recorded\n"; in print()
2231 PtrRtChecking->print(OS, Depth); in print()
2234 OS.indent(Depth) << "Non vectorizable stores to invariant address were " in print()
2238 OS.indent(Depth) << "SCEV assumptions:\n"; in print()
2239 PSE->getUnionPredicate().print(OS, Depth); in print()
2243 OS.indent(Depth) << "Expressions re-written:\n"; in print()
2244 PSE->print(OS, Depth); in print()