• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/AsmPrinter/

Lines Matching defs:OS

552   raw_svector_ostream OS(Str);
553 OS << '\t' << AP.MAI->getCommentString() << "DEBUG_VALUE: ";
558 OS << DISubprogram(V.getContext()).getDisplayName() << ":";
559 OS << V.getName() << " <- ";
565 OS << (double)APF.convertToFloat();
567 OS << APF.convertToDouble();
574 OS << "(long double) " << APF.convertToDouble();
577 OS << MI->getOperand(0).getImm();
579 MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/);
584 OS << "undef";
586 AP.OutStreamer.EmitRawText(OS.str());
589 OS << AP.TM.getRegisterInfo()->getName(MI->getOperand(0).getReg());
592 OS << '+' << MI->getOperand(1).getImm();
594 AP.OutStreamer.EmitRawText(OS.str());
1466 raw_string_ostream OS(S);
1467 OS << "Unsupported expression in static initializer: ";
1468 WriteAsOperand(OS, CE, /*PrintType=*/false,
1470 report_fatal_error(OS.str());
1929 void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const {
1931 OS << '+' << Offset;
1933 OS << Offset;
2006 static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
2009 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
2010 OS.indent(Loop->getLoopDepth()*2)
2019 static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
2023 OS.indent((*CL)->getLoopDepth()*2)
2027 PrintChildLoopComment(OS, *CL, FunctionNumber);
2054 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
2056 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
2058 OS << "=>";
2059 OS.indent(Loop->getLoopDepth()*2-2);
2061 OS << "This ";
2063 OS << "Inner ";
2064 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
2066 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());