| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCAsmStreamer.cpp | 227 Expected<unsigned> tryEmitDwarfFileDirective(unsigned FileNo, 237 void EmitDwarfLocDirective(unsigned FileNo, unsigned Line, 243 bool EmitCVFileDirective(unsigned FileNo, StringRef Filename, 1173 OS << "\t.file\t" << FileNo << ' '; in printDwarfFileDirective() 1188 unsigned FileNo, StringRef Directory, StringRef Filename, in tryEmitDwarfFileDirective() argument 1198 FileNo = FileNoOrErr.get(); in tryEmitDwarfFileDirective() 1200 return FileNo; in tryEmitDwarfFileDirective() 1212 return FileNo; in tryEmitDwarfFileDirective() 1292 OS << "\t.cv_file\t" << FileNo << ' '; in EmitCVFileDirective() 1329 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in EmitCVLocDirective() [all …]
|
| H A D | MCObjectStreamer.cpp | 395 void MCObjectStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, in EmitDwarfLocDirective() argument 404 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags, in EmitDwarfLocDirective() 463 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument 468 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in EmitCVLocDirective() 475 FileNo, Line, Column, PrologueEnd, in EmitCVLocDirective() 515 void MCObjectStreamer::EmitCVFileChecksumOffsetDirective(unsigned FileNo) { in EmitCVFileChecksumOffsetDirective() argument 516 getContext().getCVContext().emitFileChecksumOffset(*this, FileNo); in EmitCVFileChecksumOffsetDirective()
|
| H A D | MCStreamer.cpp | 206 MCStreamer::tryEmitDwarfFileDirective(unsigned FileNo, StringRef Directory, in tryEmitDwarfFileDirective() argument 211 return getContext().getDwarfFile(Directory, Filename, FileNo, Checksum, in tryEmitDwarfFileDirective() 231 void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, in EmitDwarfLocDirective() argument 236 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa, in EmitDwarfLocDirective() 264 bool MCStreamer::EmitCVFileDirective(unsigned FileNo, StringRef Filename, in EmitCVFileDirective() argument 267 return getContext().getCVContext().addFile(*this, FileNo, Filename, Checksum, in EmitCVFileDirective() 289 void MCStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument 294 bool MCStreamer::checkCVLocSection(unsigned FuncId, unsigned FileNo, in checkCVLocSection() argument
|
| H A D | MCCodeView.cpp | 132 unsigned FunctionId, unsigned FileNo, in recordCVLoc() argument 136 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc() 249 unsigned FileNo) { in emitFileChecksumOffset() argument 250 unsigned Idx = FileNo - 1; in emitFileChecksumOffset()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCStreamer.h | 233 bool checkCVLocSection(unsigned FuncId, unsigned FileNo, SMLoc Loc); 783 unsigned EmitDwarfFileDirective(unsigned FileNo, StringRef Directory, 789 tryEmitDwarfFileDirective(FileNo, Directory, Filename, Checksum, 799 unsigned FileNo, StringRef Directory, StringRef Filename, 813 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line, 821 virtual bool EmitCVFileDirective(unsigned FileNo, StringRef Filename, 835 virtual void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, 867 virtual void EmitCVFileChecksumOffsetDirective(unsigned FileNo) {} in EmitCVFileChecksumOffsetDirective() argument
|
| H A D | MCObjectStreamer.h | 141 void EmitDwarfLocDirective(unsigned FileNo, unsigned Line, 150 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line, 165 void EmitCVFileChecksumOffsetDirective(unsigned FileNo) override;
|
| H A D | MCCodeView.h | 167 unsigned FileNo, unsigned Line, unsigned Column, 211 void emitFileChecksumOffset(MCObjectStreamer &OS, unsigned FileNo);
|
| /freebsd-12.1/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-port.h | 2471 inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); } 2475 inline int FileNo(FILE* file) { return _fileno(file); } 2487 inline int FileNo(FILE* file) { return fileno(file); }
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.cpp | 1651 unsigned FileNo = 1; in recordSourceLine() local 1660 FileNo = static_cast<DwarfCompileUnit &>(*InfoHolder.getUnits()[CUID]) in recordSourceLine() 1663 Asm->OutStreamer->EmitDwarfLocDirective(FileNo, Line, Col, Flags, 0, in recordSourceLine()
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 3866 int64_t FileNo; in parseDirectiveCVFileChecksumOffset() local 3867 if (parseIntToken(FileNo, "expected identifier in directive")) in parseDirectiveCVFileChecksumOffset() 3871 getStreamer().EmitCVFileChecksumOffsetDirective(FileNo); in parseDirectiveCVFileChecksumOffset()
|
| /freebsd-12.1/contrib/googletest/googletest/src/ |
| H A D | gtest.cc | 3062 ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); in ColoredPrintf()
|