Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:OS

19 void prettyPrintStackMap(OStreamT &OS, const StackMapParserT &SMP) {
21 OS << "LLVM StackMap Version: " << SMP.getVersion()
26 OS << "\n Function address: " << F.getFunctionAddress()
30 OS << "\nNum Constants: " << SMP.getNumConstants();
33 OS << "\n #" << ++ConstantIndex << ": " << C.getValue();
36 OS << "\nNum Records: " << SMP.getNumRecords();
38 OS << "\n Record ID: " << R.getID()
44 OS << "\n #" << ++LocationIndex << ": ";
47 OS << "Register R#" << Loc.getDwarfRegNum();
50 OS << "Direct R#" << Loc.getDwarfRegNum() << " + "
54 OS << "Indirect [R#" << Loc.getDwarfRegNum() << " + "
58 OS << "Constant " << Loc.getSmallConstant();
61 OS << "ConstantIndex #" << Loc.getConstantIndex() << " ("
67 OS << "\n " << R.getNumLiveOuts() << " live-outs: [ ";
69 OS << "R#" << LO.getDwarfRegNum() << " ("
71 OS << "]\n";
74 OS << "\n";