| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCAsmStreamer.cpp | 262 Expected<unsigned> tryEmitDwarfFileDirective(unsigned FileNo, 278 bool emitCVFileDirective(unsigned FileNo, StringRef Filename, 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 1551 FileNo = FileNoOrErr.get(); in tryEmitDwarfFileDirective() 1557 return FileNo; in tryEmitDwarfFileDirective() 1569 return FileNo; in tryEmitDwarfFileDirective() 1663 OS << "\t.cv_file\t" << FileNo << ' '; in emitCVFileDirective() 1700 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective() [all …]
|
| H A D | MCObjectStreamer.cpp | 495 void MCObjectStreamer::emitDwarfLocDirective(unsigned FileNo, unsigned Line, in emitDwarfLocDirective() argument 504 this->MCStreamer::emitDwarfLocDirective(FileNo, Line, Column, Flags, Isa, in emitDwarfLocDirective() 581 void MCObjectStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument 586 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective() 593 FileNo, Line, Column, PrologueEnd, in emitCVLocDirective() 633 void MCObjectStreamer::emitCVFileChecksumOffsetDirective(unsigned FileNo) { in emitCVFileChecksumOffsetDirective() argument 634 getContext().getCVContext().emitFileChecksumOffset(*this, FileNo); in emitCVFileChecksumOffsetDirective()
|
| H A D | MCStreamer.cpp | 230 MCStreamer::tryEmitDwarfFileDirective(unsigned FileNo, StringRef Directory, in tryEmitDwarfFileDirective() argument 235 return getContext().getDwarfFile(Directory, Filename, FileNo, Checksum, in tryEmitDwarfFileDirective() 262 void MCStreamer::emitDwarfLocDirective(unsigned FileNo, unsigned Line, in emitDwarfLocDirective() argument 266 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa, in emitDwarfLocDirective() 294 bool MCStreamer::emitCVFileDirective(unsigned FileNo, StringRef Filename, in emitCVFileDirective() argument 297 return getContext().getCVContext().addFile(*this, FileNo, Filename, Checksum, in emitCVFileDirective() 319 void MCStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument 324 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()
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCStreamer.h | 270 bool checkCVLocSection(unsigned FuncId, unsigned FileNo, SMLoc Loc); 902 unsigned emitDwarfFileDirective(unsigned FileNo, StringRef Directory, 908 tryEmitDwarfFileDirective(FileNo, Directory, Filename, Checksum, 918 unsigned FileNo, StringRef Directory, StringRef Filename, 933 virtual void emitDwarfLocDirective(unsigned FileNo, unsigned Line, 941 virtual bool emitCVFileDirective(unsigned FileNo, StringRef Filename, 955 virtual void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, 1003 virtual void emitCVFileChecksumOffsetDirective(unsigned FileNo) {} in emitCVFileChecksumOffsetDirective() argument
|
| H A D | MCObjectStreamer.h | 162 void emitDwarfLocDirective(unsigned FileNo, unsigned Line, unsigned Column, 172 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line, 187 void emitCVFileChecksumOffsetDirective(unsigned FileNo) override;
|
| H A D | MCCodeView.h | 173 unsigned FileNo, unsigned Line, unsigned Column, 215 void emitFileChecksumOffset(MCObjectStreamer &OS, unsigned FileNo);
|
| /llvm-project-15.0.7/clang/tools/clang-format/ |
| H A D | ClangFormat.cpp | 624 unsigned FileNo = 1; in main() local 627 errs() << "Formatting [" << FileNo++ << "/" << FileNames.size() << "] " in main()
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-port.h | 1988 inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); } 1992 inline int FileNo(FILE* file) { return _fileno(file); } 2004 inline int FileNo(FILE* file) { return fileno(file); }
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.cpp | 2109 unsigned FileNo = 1; in recordSourceLine() local 2117 FileNo = static_cast<DwarfCompileUnit &>(*DCUs[CUID]) in recordSourceLine() 2120 Asm.OutStreamer->emitDwarfLocDirective(FileNo, Line, Col, Flags, 0, in recordSourceLine()
|
| /llvm-project-15.0.7/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 4144 int64_t FileNo; in parseDirectiveCVFileChecksumOffset() local 4145 if (parseIntToken(FileNo, "expected identifier in directive")) in parseDirectiveCVFileChecksumOffset() 4149 getStreamer().emitCVFileChecksumOffsetDirective(FileNo); in parseDirectiveCVFileChecksumOffset()
|
| H A D | MasmParser.cpp | 5435 int64_t FileNo; in parseDirectiveCVFileChecksumOffset() local 5436 if (parseIntToken(FileNo, "expected identifier in directive")) in parseDirectiveCVFileChecksumOffset() 5440 getStreamer().emitCVFileChecksumOffsetDirective(FileNo); in parseDirectiveCVFileChecksumOffset()
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/src/ |
| H A D | gtest.cc | 3039 ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); in ColoredPrintf()
|