Lines Matching refs:OS
55 static void printDebugLoc(const DebugLoc &DL, formatted_raw_ostream &OS) {
56 OS << DL.getLine() << ":" << DL.getCol();
60 OS << "@";
61 printDebugLoc(IDL,OS);
68 formatted_raw_ostream &OS) {
69 OS << "; [#uses=" << F->getNumUses() << ']'; // Output # uses
70 OS << '\n';
72 void printInfoComment(const Value &V, formatted_raw_ostream &OS) {
75 OS.PadToColumn(50);
77 OS << "; [#uses=" << V.getNumUses() << " type=" << *V.getType() << "]"; // Output # uses and type
83 OS.PadToColumn(50);
85 OS << ";";
87 OS << " [debug line = ";
88 printDebugLoc(DL,OS);
89 OS << "]";
94 OS.PadToColumn(50);
96 OS << ";";
98 OS << " [debug variable = " << Var.getName() << "]";
103 OS.PadToColumn(50);
105 OS << ";";
107 OS << " [debug variable = " << Var.getName() << "]";
179 M->print(Out->os(), Annotator.get());