Lines Matching refs:FileNo

63   void printDwarfFileDirective(unsigned FileNo, StringRef Directory,
262 Expected<unsigned> tryEmitDwarfFileDirective(unsigned FileNo,
272 void emitDwarfLocDirective(unsigned FileNo, unsigned Line, unsigned Column,
278 bool emitCVFileDirective(unsigned FileNo, StringRef Filename,
285 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
317 void emitCVFileChecksumOffsetDirective(unsigned FileNo) override;
1509 unsigned FileNo, StringRef Directory, StringRef Filename, in printDwarfFileDirective() argument
1525 OS << "\t.file\t" << FileNo << ' '; in printDwarfFileDirective()
1540 unsigned FileNo, StringRef Directory, StringRef Filename, in tryEmitDwarfFileDirective() argument
1548 getContext().getDwarfVersion(), FileNo); in tryEmitDwarfFileDirective()
1551 FileNo = FileNoOrErr.get(); in tryEmitDwarfFileDirective()
1557 return FileNo; in tryEmitDwarfFileDirective()
1561 printDwarfFileDirective(FileNo, Directory, Filename, Checksum, Source, in tryEmitDwarfFileDirective()
1569 return FileNo; in tryEmitDwarfFileDirective()
1600 void MCAsmStreamer::emitDwarfLocDirective(unsigned FileNo, unsigned Line, in emitDwarfLocDirective() argument
1610 this->MCStreamer::emitDwarfLocDirective(FileNo, Line, Column, Flags, Isa, in emitDwarfLocDirective()
1615 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column; in emitDwarfLocDirective()
1646 this->MCStreamer::emitDwarfLocDirective(FileNo, Line, Column, Flags, Isa, in emitDwarfLocDirective()
1656 bool MCAsmStreamer::emitCVFileDirective(unsigned FileNo, StringRef Filename, in emitCVFileDirective() argument
1659 if (!getContext().getCVContext().addFile(*this, FileNo, Filename, Checksum, in emitCVFileDirective()
1663 OS << "\t.cv_file\t" << FileNo << ' '; in emitCVFileDirective()
1695 void MCAsmStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
1700 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective()
1703 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in emitCVLocDirective()
1803 void MCAsmStreamer::emitCVFileChecksumOffsetDirective(unsigned FileNo) { in emitCVFileChecksumOffsetDirective() argument
1804 OS << "\t.cv_filechecksumoffset\t" << FileNo; in emitCVFileChecksumOffsetDirective()