Home | History | Annotate | Download | only in dsymutil

Lines Matching refs:MS

378   MCStreamer *MS;     // Owned by AsmPrinter
513 MS = TheTarget->createMCObjectStreamer(TheTriple, *MC, *MAB, *OutFile, MCE,
516 if (!MS)
524 Asm.reset(TheTarget->createAsmPrinter(*TM, std::unique_ptr<MCStreamer>(MS)));
536 MS->Finish();
543 MS->SwitchSection(MOFI->getDwarfInfoSection());
575 MS->SwitchSection(MOFI->getDwarfAbbrevSection());
581 MS->SwitchSection(MOFI->getDwarfInfoSection());
603 MS->SwitchSection(MC->getObjectFileInfo()->getDwarfRangesSection());
621 MS->EmitIntValue(Range.StartAddress + PcOffset, AddressSize);
622 MS->EmitIntValue(Range.EndAddress + PcOffset, AddressSize);
627 MS->EmitIntValue(0, AddressSize);
628 MS->EmitIntValue(0, AddressSize);
655 MS->SwitchSection(MC->getObjectFileInfo()->getDwarfARangesSection());
682 MS->EmitIntValue(RangeStart, AddressSize);
685 MS->EmitIntValue(Range->second - RangeStart, AddressSize);
697 MS->SwitchSection(MC->getObjectFileInfo()->getDwarfRangesSection());
702 MS->EmitIntValue(Range->first + PcOffset, AddressSize);
705 MS->EmitIntValue(Range->second + PcOffset, AddressSize);
710 MS->EmitIntValue(0, AddressSize);
711 MS->EmitIntValue(0, AddressSize);
725 MS->SwitchSection(MC->getObjectFileInfo()->getDwarfLocSection());
771 MS->SwitchSection(MC->getObjectFileInfo()->getDwarfLineSection());
780 MS->EmitBytes(PrologueBytes);
790 MS->EmitBytes(EncodingOS.str());
792 MS->EmitLabel(LineEndSym);
811 MS->EmitIntValue(dwarf::DW_LNS_extended_op, 1);
812 MS->EmitULEB128IntValue(PointerSize + 1);
813 MS->EmitIntValue(dwarf::DW_LNE_set_address, 1);
814 MS->EmitIntValue(Row.Address, PointerSize);
829 MS->EmitIntValue(dwarf::DW_LNS_set_file, 1);
830 MS->EmitULEB128IntValue(FileNum);
835 MS->EmitIntValue(dwarf::DW_LNS_set_column, 1);
836 MS->EmitULEB128IntValue(Column);
845 MS->EmitIntValue(dwarf::DW_LNS_set_isa, 1);
846 MS->EmitULEB128IntValue(Isa);
851 MS->EmitIntValue(dwarf::DW_LNS_negate_stmt, 1);
855 MS->EmitIntValue(dwarf::DW_LNS_set_basic_block, 1);
860 MS->EmitIntValue(dwarf::DW_LNS_set_prologue_end, 1);
865 MS->EmitIntValue(dwarf::DW_LNS_set_epilogue_begin, 1);
872 MS->EmitBytes(EncodingOS.str());
881 MS->EmitIntValue(dwarf::DW_LNS_advance_line, 1);
882 MS->EmitSLEB128IntValue(LineDelta);
886 MS->EmitIntValue(dwarf::DW_LNS_advance_pc, 1);
887 MS->EmitULEB128IntValue(AddressDelta);
891 MS->EmitBytes(EncodingOS.str());
903 MS->EmitBytes(EncodingOS.str());
909 MS->EmitLabel(LineEndSym);