Home | History | Annotate | Download | only in MC

Lines Matching defs:FileNo

208   virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
210 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
771 bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
775 return EmitDwarfFileDirective(FileNo, "", Filename);
779 return EmitDwarfFileDirective(FileNo, "", FullPathName);
783 OS << "\t.file\t" << FileNo << ' ';
791 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename);
794 void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
799 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
804 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;