Lines Matching refs:Depth
455 unsigned Depth) const { in printChecks()
460 OS.indent(Depth) << "Check " << N++ << ":\n"; in printChecks()
462 OS.indent(Depth + 2) << "Comparing group (" << Check.first << "):\n"; in printChecks()
464 OS.indent(Depth + 2) << *Pointers[First[K]].PointerValue << "\n"; in printChecks()
466 OS.indent(Depth + 2) << "Against group (" << Check.second << "):\n"; in printChecks()
468 OS.indent(Depth + 2) << *Pointers[Second[K]].PointerValue << "\n"; in printChecks()
472 void RuntimePointerChecking::print(raw_ostream &OS, unsigned Depth) const { in print()
474 OS.indent(Depth) << "Run-time memory checks:\n"; in print()
475 printChecks(OS, Checks, Depth); in print()
477 OS.indent(Depth) << "Grouped accesses:\n"; in print()
481 OS.indent(Depth + 2) << "Group " << &CG << ":\n"; in print()
482 OS.indent(Depth + 4) << "(Low: " << *CG.Low << " High: " << *CG.High in print()
485 OS.indent(Depth + 6) << "Member: " << *Pointers[CG.Members[J]].Expr in print()
1709 raw_ostream &OS, unsigned Depth, in print() argument
1711 OS.indent(Depth) << DepName[Type] << ":\n"; in print()
1712 OS.indent(Depth + 2) << *Instrs[Source] << " -> \n"; in print()
1713 OS.indent(Depth + 2) << *Instrs[Destination] << "\n"; in print()
2295 void LoopAccessInfo::print(raw_ostream &OS, unsigned Depth) const { in print()
2297 OS.indent(Depth) << "Memory dependences are safe"; in print()
2307 OS.indent(Depth) << "Report: " << Report->getMsg() << "\n"; in print()
2310 OS.indent(Depth) << "Dependences:\n"; in print()
2312 Dep.print(OS, Depth + 2, DepChecker->getMemoryInstructions()); in print()
2316 OS.indent(Depth) << "Too many dependences, not recorded\n"; in print()
2319 PtrRtChecking->print(OS, Depth); in print()
2322 OS.indent(Depth) << "Non vectorizable stores to invariant address were " in print()
2326 OS.indent(Depth) << "SCEV assumptions:\n"; in print()
2327 PSE->getUnionPredicate().print(OS, Depth); in print()
2331 OS.indent(Depth) << "Expressions re-written:\n"; in print()
2332 PSE->print(OS, Depth); in print()