Home
last modified time | relevance | path

Searched refs:FileNo (Results 1 – 25 of 43) sorted by relevance

12

/external/llvm/lib/MC/
DMCAsmStreamer.cpp209 unsigned EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
212 void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
218 unsigned EmitCVFileDirective(unsigned FileNo, StringRef Filename) override;
219 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
989 unsigned MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, in EmitDwarfFileDirective() argument
997 FileNo = Table.getFile(Directory, Filename, FileNo); in EmitDwarfFileDirective()
998 if (FileNo == 0) in EmitDwarfFileDirective()
1001 return FileNo; in EmitDwarfFileDirective()
1016 OS << "\t.file\t" << FileNo << ' '; in EmitDwarfFileDirective()
1024 return FileNo; in EmitDwarfFileDirective()
[all …]
DMCStreamer.cpp160 unsigned MCStreamer::EmitDwarfFileDirective(unsigned FileNo, in EmitDwarfFileDirective() argument
163 return getContext().getDwarfFile(Directory, Filename, FileNo, CUID); in EmitDwarfFileDirective()
166 void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, in EmitDwarfLocDirective() argument
171 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa, in EmitDwarfLocDirective()
202 unsigned MCStreamer::EmitCVFileDirective(unsigned FileNo, StringRef Filename) { in EmitCVFileDirective() argument
203 return getContext().getCVFile(Filename, FileNo); in EmitCVFileDirective()
206 void MCStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
210 getContext().setCurrentCVLoc(FunctionId, FileNo, Line, Column, PrologueEnd, in EmitCVLocDirective()
DMCObjectStreamer.cpp300 void MCObjectStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, in EmitDwarfLocDirective() argument
309 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags, in EmitDwarfLocDirective()
368 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
376 this->MCStreamer::EmitCVLocDirective(FunctionId, FileNo, Line, Column, in EmitCVLocDirective()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCAsmStreamer.cpp231 Expected<unsigned> tryEmitDwarfFileDirective(unsigned FileNo,
241 void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
247 bool EmitCVFileDirective(unsigned FileNo, StringRef Filename,
254 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
286 void EmitCVFileChecksumOffsetDirective(unsigned FileNo) override;
1213 static void printDwarfFileDirective(unsigned FileNo, StringRef Directory, in printDwarfFileDirective() argument
1232 OS << "\t.file\t" << FileNo << ' '; in printDwarfFileDirective()
1247 unsigned FileNo, StringRef Directory, StringRef Filename, in tryEmitDwarfFileDirective() argument
1255 getContext().getDwarfVersion(), FileNo); in tryEmitDwarfFileDirective()
1258 FileNo = FileNoOrErr.get(); in tryEmitDwarfFileDirective()
[all …]
DMCObjectStreamer.cpp446 void MCObjectStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, in EmitDwarfLocDirective() argument
455 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags, in EmitDwarfLocDirective()
514 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
519 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in EmitCVLocDirective()
526 FileNo, Line, Column, PrologueEnd, in EmitCVLocDirective()
566 void MCObjectStreamer::EmitCVFileChecksumOffsetDirective(unsigned FileNo) { in EmitCVFileChecksumOffsetDirective() argument
567 getContext().getCVContext().emitFileChecksumOffset(*this, FileNo); in EmitCVFileChecksumOffsetDirective()
DMCStreamer.cpp213 MCStreamer::tryEmitDwarfFileDirective(unsigned FileNo, StringRef Directory, in tryEmitDwarfFileDirective() argument
218 return getContext().getDwarfFile(Directory, Filename, FileNo, Checksum, in tryEmitDwarfFileDirective()
238 void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, in EmitDwarfLocDirective() argument
243 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa, in EmitDwarfLocDirective()
271 bool MCStreamer::EmitCVFileDirective(unsigned FileNo, StringRef Filename, in EmitCVFileDirective() argument
274 return getContext().getCVContext().addFile(*this, FileNo, Filename, Checksum, in EmitCVFileDirective()
296 void MCStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
301 bool MCStreamer::checkCVLocSection(unsigned FuncId, unsigned FileNo, in checkCVLocSection() argument
DMCCodeView.cpp131 unsigned FunctionId, unsigned FileNo, in recordCVLoc() argument
135 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc()
248 unsigned FileNo) { in emitFileChecksumOffset() argument
249 unsigned Idx = FileNo - 1; in emitFileChecksumOffset()
/external/llvm-project/llvm/lib/MC/
DMCAsmStreamer.cpp246 Expected<unsigned> tryEmitDwarfFileDirective(unsigned FileNo,
256 void emitDwarfLocDirective(unsigned FileNo, unsigned Line, unsigned Column,
262 bool EmitCVFileDirective(unsigned FileNo, StringRef Filename,
269 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
301 void emitCVFileChecksumOffsetDirective(unsigned FileNo) override;
1371 static void printDwarfFileDirective(unsigned FileNo, StringRef Directory, in printDwarfFileDirective() argument
1390 OS << "\t.file\t" << FileNo << ' '; in printDwarfFileDirective()
1405 unsigned FileNo, StringRef Directory, StringRef Filename, in tryEmitDwarfFileDirective() argument
1413 getContext().getDwarfVersion(), FileNo); in tryEmitDwarfFileDirective()
1416 FileNo = FileNoOrErr.get(); in tryEmitDwarfFileDirective()
[all …]
DMCObjectStreamer.cpp451 void MCObjectStreamer::emitDwarfLocDirective(unsigned FileNo, unsigned Line, in emitDwarfLocDirective() argument
460 this->MCStreamer::emitDwarfLocDirective(FileNo, Line, Column, Flags, Isa, in emitDwarfLocDirective()
519 void MCObjectStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
524 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective()
531 FileNo, Line, Column, PrologueEnd, in emitCVLocDirective()
571 void MCObjectStreamer::emitCVFileChecksumOffsetDirective(unsigned FileNo) { in emitCVFileChecksumOffsetDirective() argument
572 getContext().getCVContext().emitFileChecksumOffset(*this, FileNo); in emitCVFileChecksumOffsetDirective()
DMCStreamer.cpp227 MCStreamer::tryEmitDwarfFileDirective(unsigned FileNo, StringRef Directory, in tryEmitDwarfFileDirective() argument
232 return getContext().getDwarfFile(Directory, Filename, FileNo, Checksum, in tryEmitDwarfFileDirective()
252 void MCStreamer::emitDwarfLocDirective(unsigned FileNo, unsigned Line, in emitDwarfLocDirective() argument
256 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa, in emitDwarfLocDirective()
284 bool MCStreamer::EmitCVFileDirective(unsigned FileNo, StringRef Filename, in EmitCVFileDirective() argument
287 return getContext().getCVContext().addFile(*this, FileNo, Filename, Checksum, in EmitCVFileDirective()
309 void MCStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
314 bool MCStreamer::checkCVLocSection(unsigned FuncId, unsigned FileNo, in checkCVLocSection() argument
DMCCodeView.cpp131 unsigned FunctionId, unsigned FileNo, in recordCVLoc() argument
135 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc()
248 unsigned FileNo) { in emitFileChecksumOffset() argument
249 unsigned Idx = FileNo - 1; in emitFileChecksumOffset()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCStreamer.h248 bool checkCVLocSection(unsigned FuncId, unsigned FileNo, SMLoc Loc);
817 unsigned EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
823 tryEmitDwarfFileDirective(FileNo, Directory, Filename, Checksum,
833 unsigned FileNo, StringRef Directory, StringRef Filename,
847 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
855 virtual bool EmitCVFileDirective(unsigned FileNo, StringRef Filename,
869 virtual void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo,
917 virtual void EmitCVFileChecksumOffsetDirective(unsigned FileNo) {} in EmitCVFileChecksumOffsetDirective() argument
DMCObjectStreamer.h143 void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
152 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
167 void EmitCVFileChecksumOffsetDirective(unsigned FileNo) override;
DMCCodeView.h166 unsigned FileNo, unsigned Line, unsigned Column,
210 void emitFileChecksumOffset(MCObjectStreamer &OS, unsigned FileNo);
/external/llvm-project/llvm/include/llvm/MC/
DMCStreamer.h255 bool checkCVLocSection(unsigned FuncId, unsigned FileNo, SMLoc Loc);
862 unsigned emitDwarfFileDirective(unsigned FileNo, StringRef Directory,
868 tryEmitDwarfFileDirective(FileNo, Directory, Filename, Checksum,
878 unsigned FileNo, StringRef Directory, StringRef Filename,
892 virtual void emitDwarfLocDirective(unsigned FileNo, unsigned Line,
900 virtual bool EmitCVFileDirective(unsigned FileNo, StringRef Filename,
914 virtual void emitCVLocDirective(unsigned FunctionId, unsigned FileNo,
962 virtual void emitCVFileChecksumOffsetDirective(unsigned FileNo) {} in emitCVFileChecksumOffsetDirective() argument
DMCObjectStreamer.h144 void emitDwarfLocDirective(unsigned FileNo, unsigned Line, unsigned Column,
152 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
167 void emitCVFileChecksumOffsetDirective(unsigned FileNo) override;
DMCCodeView.h166 unsigned FileNo, unsigned Line, unsigned Column,
208 void emitFileChecksumOffset(MCObjectStreamer &OS, unsigned FileNo);
/external/llvm/include/llvm/MC/
DMCObjectStreamer.h116 void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
125 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
DMCStreamer.h672 virtual unsigned EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
678 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
685 virtual unsigned EmitCVFileDirective(unsigned FileNo, StringRef Filename);
688 virtual void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo,
DMCContext.h548 void setCurrentCVLoc(unsigned FunctionId, unsigned FileNo, unsigned Line, in setCurrentCVLoc() argument
551 CurrentCVLoc.setFileNum(FileNo); in setCurrentCVLoc()
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1586 inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
1590 inline int FileNo(FILE* file) { return _fileno(file); }
1602 inline int FileNo(FILE* file) { return fileno(file); }
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
Dgtest-port.h1959 inline int FileNo(FILE *file) { return reinterpret_cast<int>(_fileno(file)); }
1963 inline int FileNo(FILE *file) { return _fileno(file); }
1972 inline int FileNo(FILE *file) { return fileno(file); }
1989 inline int FileNo(FILE *file) { return fileno(file); }
/external/googletest/googletest/include/gtest/internal/
Dgtest-port.h2008 inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
2012 inline int FileNo(FILE* file) { return _fileno(file); }
2023 inline int FileNo(FILE* file) { return fileno(file); }
2040 inline int FileNo(FILE* file) { return fileno(file); }
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-port.h1984 inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
1988 inline int FileNo(FILE* file) { return _fileno(file); }
2000 inline int FileNo(FILE* file) { return fileno(file); }
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/
Dgtest-port.h2045 inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
2049 inline int FileNo(FILE* file) { return _fileno(file); }
2061 inline int FileNo(FILE* file) { return fileno(file); }

12