Home
last modified time | relevance | path

Searched refs:DictScope (Results 1 – 16 of 16) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp89 DictScope DS(W, "FileHeader"); in printFileHeaders()
137 DictScope DS(W, "AuxiliaryHeader"); in printAuxiliaryHeader()
154 DictScope DS(W, "Loader Section"); in printLoaderSection()
180 DictScope DS(W, "Loader Section Header"); in printLoaderSectionHeader()
252 DictScope DS(W, "Symbol"); in printLoaderSectionSymbolsHelper()
313 DictScope DS(W, "Relocation"); in printLoaderSectionRelocationEntry()
436 DictScope DS(W, "Exception section"); in printExceptionSectionEntries()
467 DictScope Group(W, "Relocation"); in printRelocation()
746 DictScope SymDs(W, "Symbol"); in printSymbol()
913 DictScope DS(W, "StringTable"); in printStringTable()
[all …]
H A DWasmDumper.cpp98 DictScope Group(W, "Relocation"); in printRelocation()
158 DictScope SectionD(W, "Section"); in printSectionHeaders()
178 DictScope Group(W, "Segment"); in printSectionHeaders()
199 DictScope Group(W, "Memory"); in printSectionHeaders()
221 DictScope D(W, "Symbol"); in printSymbol()
H A DMachODumper.cpp423 DictScope H(W, "MachHeader"); in printFileHeaders()
483 DictScope SectionD(W, "Section"); in printSectionHeaders()
577 DictScope Group(W, "Relocation"); in printRelocation()
688 DictScope D(W, "Symbol"); in printSymbol()
776 DictScope D(W, "CGProfileEntry"); in printCGProfile()
817 DictScope Group(W, "DataInCode"); in printMachODataInCode()
825 DictScope Group(W, "Entry"); in printMachODataInCode()
858 DictScope Group(W, "MinVersion"); in printMachOVersionMin()
902 DictScope Group(W, "Dysymtab"); in printMachODysymtab()
930 DictScope Group(W, "Segment"); in printMachOSegment()
[all …]
H A DCOFFDumper.cpp696 DictScope D(W, "DOSHeader"); in printDOSHeader()
752 DictScope D(W, "DataDirectory"); in printPEHeader()
774 DictScope S(W, "DebugEntry"); in printCOFFDebugDirectory()
1379 DictScope S(W, "FileChecksum"); in printCodeViewFileChecksums()
1514 DictScope D(W, "Section"); in printSectionHeaders()
1637 DictScope D(W, "Symbol"); in printSymbol()
1813 DictScope Import(W, "Import"); in printDelayImportedSymbols()
1833 DictScope Import(W, "Import"); in printCOFFImports()
1876 DictScope Export(W, "Export"); in printCOFFExports()
1939 DictScope Import(W, "Entry"); in printCOFFBaseReloc()
[all …]
H A DDwarfCFIEHPrinter.h97 DictScope L(W, "EHFrameHeader"); in printEHFrameHdr()
119 DictScope D(W, "Header"); in printEHFrameHdr()
156 DictScope D(W, std::string("entry ") + std::to_string(NumEntries)); in printEHFrameHdr()
H A DWin64EHDumper.cpp316 DictScope UIS(SW, "UnwindInfo"); in printUnwindInfo()
352 DictScope CS(SW, "Chained"); in printUnwindInfo()
362 DictScope RFS(SW, "RuntimeFunction"); in printRuntimeFunction()
H A DELFDumper.cpp2666 DictScope D(W, "HashTable"); in printHashTable()
3440 DictScope GS(W, Type); in printMipsOptions()
6987 DictScope D(W, "Group"); in printGroupSections()
7233 DictScope D(W, "Symbol"); in printSymbol()
7355 DictScope S(W, "Symbol"); in printVersionSymbolSection()
7594 DictScope L(W); in printBBAddrMaps()
7770 DictScope D2(W, "Note"); in printNotes()
7904 DictScope D(W, "Entry"); in printStackSizeEntry()
7978 DictScope GS(W, "PLT GOT"); in printMipsPLT()
8085 DictScope Group(this->W); in printRelocationSectionInfo()
[all …]
H A DARMEHABIPrinter.h543 DictScope E(SW, "Entry"); in PrintIndexTable()
625 DictScope UI(SW, "UnwindInformation"); in PrintUnwindInformation()
630 DictScope UIT(SW, "UnwindIndexTable"); in PrintUnwindInformation()
H A DARMWinEHPrinter.cpp1047 DictScope XRS(SW, "ExceptionData"); in dumpXDataRecord()
1086 DictScope ESES(SW, "EpilogueScope"); in dumpXDataRecord()
1446 DictScope RFS(SW, "RuntimeFunction"); in dumpProcedureDataEntry()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DELFAttributeParser.cpp43 DictScope scope(*sw, "Attribute"); in integerAttribute()
59 DictScope scope(*sw, "Attribute"); in stringAttribute()
75 DictScope as(*sw, "Attribute"); in printAttribute()
180 DictScope scope(*sw, scopeName); in parseSubsection()
H A DARMAttributeParser.cpp78 DictScope scope(*sw, "Attribute"); in stringAttribute()
290 DictScope scope(*sw, "Attribute"); in compatibility()
448 DictScope scope(*sw, "Attribute"); in also_compatible_with()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp149 DictScope HeaderScope(W, "Header"); in dump()
187 DictScope NameScope(W, ("Name@0x" + Twine::utohexstr(NameOffset)).str()); in dumpName()
229 DictScope AtomScope(W, ("Atom " + Twine(i++)).str()); in dump()
432 DictScope HeaderScope(W, "Header"); in dump()
480 DictScope AbbrevScope(W, ("Abbreviation 0x" + Twine::utohexstr(Code)).str()); in dump()
762 DictScope EntryScope(W, ("Entry @ 0x" + Twine::utohexstr(EntryId)).str()); in dumpEntry()
770 DictScope NameScope(W, ("Name " + Twine(NTE.getIndex())).str()); in dumpName()
838 DictScope UnitScope(W, ("Name Index @ 0x" + Twine::utohexstr(Base)).str()); in dump()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DScopedPrinter.h849 struct DictScope : DelimitedScope { struct
850 explicit DictScope() = default;
851 explicit DictScope(ScopedPrinter &W) : DelimitedScope(W) { W.objectBegin(); } in DictScope() argument
853 DictScope(ScopedPrinter &W, StringRef N) : DelimitedScope(W) { in DictScope() function
862 ~DictScope() { in ~DictScope() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp80 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp253 DictScope S(W, "InlineeSourceLine"); in collectInlineeInfo()
H A DLVCodeViewVisitor.cpp710 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange()