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

References

lib/Transforms/Vectorize/VPlan.cpp
  546   OS << Indent << getUID(Tail) << " -> " << getUID(Head);
  572   OS << Indent << getUID(BasicBlock) << " [label =\n";
  574   OS << Indent << "\"" << DOT::EscapeString(BasicBlock->getName()) << ":\\n\"";
  580     OS << " +\n" << Indent << " \"BlockPredicate: ";
  590     Recipe.print(OS, Indent);
  595     OS << " +\n" << Indent << " \"CondBit: ";
  606   OS << "\n" << Indent << "]\n";
  611   OS << Indent << "subgraph " << getUID(Region) << " {\n";
  613   OS << Indent << "fontname=Courier\n"
  614      << Indent << "label=\""
  622   OS << Indent << "}\n";
lib/Transforms/Vectorize/VPlan.h
 1279   void bumpIndent(int b) { Indent = std::string((Depth += b) * TabWidth, ' '); }