Home | History | Annotate | Download | only in MC

Lines Matching defs:FileNo

203   virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
205 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
756 bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
760 return EmitDwarfFileDirective(FileNo, "", Filename);
764 return EmitDwarfFileDirective(FileNo, "", FullPathName);
768 OS << "\t.file\t" << FileNo << ' ';
776 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename);
779 void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
784 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
789 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;