Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:indent

533 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
536 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
538 dbgs() << "\n" << std::string(indent+2, ' ')
542 dbgs().indent(indent);
566 static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
572 OS.indent(indent);
598 DumpNodesr(OS, child, indent+2, G, once);
614 unsigned indent) {
618 OS.indent(indent);
630 printrWithDepthHelper(OS, N->getOperand(i).getNode(), G, depth-1, indent+2);