Searched refs:DwarfFile (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfFile.cpp | 1 //===- llvm/CodeGen/DwarfFile.cpp - Dwarf Debug Framework -----------------===// 9 #include "DwarfFile.h" 20 DwarfFile::DwarfFile(AsmPrinter *AP, StringRef Pref, BumpPtrAllocator &DA) in DwarfFile() function in DwarfFile 23 void DwarfFile::addUnit(std::unique_ptr<DwarfCompileUnit> U) { in addUnit() 29 void DwarfFile::emitUnits(bool UseOffsets) { in emitUnits() 34 void DwarfFile::emitUnit(DwarfUnit *TheU, bool UseOffsets) { in emitUnit() 57 void DwarfFile::computeSizeAndOffsets() { in computeSizeAndOffsets() 80 unsigned DwarfFile::computeSizeAndOffsetsForUnit(DwarfUnit *TheU) { in computeSizeAndOffsetsForUnit() 92 unsigned DwarfFile [all...] |
H A D | DwarfFile.h | 1 //===- llvm/CodeGen/DwarfFile.h - Dwarf Debug Framework ---------*- C++ -*-===// 50 class DwarfFile { 100 DwarfFile(AsmPrinter *AP, StringRef Pref, BumpPtrAllocator &DA);
|
H A D | DwarfUnit.h | 56 DwarfFile *DU; 77 DwarfDebug *DW, DwarfFile *DWU, unsigned UniqueID = 0); 386 DwarfFile *DWU, unsigned UniqueID,
|
H A D | DwarfDebug.h | 19 #include "DwarfFile.h" 396 DwarfFile InfoHolder; 488 DwarfFile SkeletonHolder; 616 void emitDebugRangesImpl(const DwarfFile &Holder, MCSection *Section);
|
H A D | DwarfCompileUnit.h | 37 class DwarfFile; variable 144 DwarfDebug *DW, DwarfFile *DWU,
|
H A D | DwarfDebug.cpp | 1177 DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; in beginModule() 2372 DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; in emitDebugInfo() 2378 DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; in emitAbbreviations() 2384 DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; in emitStringOffsetsTableHeader() 2587 DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; in emitDebugStr() 2784 const DwarfFile &Holder) { in emitRnglistsTableHeader() 3152 void DwarfDebug::emitDebugRangesImpl(const DwarfFile &Holder, MCSection *Section) { in emitDebugRangesImpl() 3563 DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; in addAccelNameImpl()
|
H A D | DwarfUnit.cpp | 84 AsmPrinter *A, DwarfDebug *DW, DwarfFile *DWU, in DwarfUnit() 90 DwarfDebug *DW, DwarfFile *DWU, unsigned UniqueID, in DwarfTypeUnit()
|
H A D | DwarfCompileUnit.cpp | 75 DwarfFile *DWU, UnitKind Kind) in DwarfCompileUnit()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCDwarf.cpp | 394 static void emitOneV5FileEntry(MCStreamer *MCOS, const MCDwarfFile &DwarfFile, in emitOneV5FileEntry() argument 397 assert(!DwarfFile.Name.empty()); in emitOneV5FileEntry() 399 LineStr->emitRef(MCOS, DwarfFile.Name); in emitOneV5FileEntry() 401 MCOS->emitBytes(DwarfFile.Name); // FileName and... in emitOneV5FileEntry() 404 MCOS->emitULEB128IntValue(DwarfFile.DirIndex); // Directory number. in emitOneV5FileEntry() 406 const MD5::MD5Result &Cksum = *DwarfFile.Checksum; in emitOneV5FileEntry() 412 LineStr->emitRef(MCOS, DwarfFile.Source.value_or(StringRef())); in emitOneV5FileEntry() 414 MCOS->emitBytes(DwarfFile.Source.value_or(StringRef())); // Source and... in emitOneV5FileEntry()
|
/freebsd/lib/clang/libllvm/ |
H A D | Makefile | 206 SRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp
|