Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp90 DictScope DS(W, "FileHeader"); in printFileHeaders()
138 DictScope DS(W, "AuxiliaryHeader"); in printAuxiliaryHeader()
155 DictScope DS(W, "Loader Section"); in printLoaderSection()
181 DictScope DS(W, "Loader Section Header"); in printLoaderSectionHeader()
253 DictScope DS(W, "Symbol"); in printLoaderSectionSymbolsHelper()
268 DictScope DS(W, "Loader Section Symbols"); in printLoaderSectionSymbols()
315 DictScope DS(W, "Relocation"); in printLoaderSectionRelocationEntry()
399 DictScope DS(W, "Loader Section Relocations"); in printLoaderSectionRelocationEntries()
440 DictScope DS(W, "Exception section"); in printExceptionSectionEntries()
471 DictScope Group(W, "Relocation"); in printRelocation()
[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.cpp672 DictScope D(W, "ImageFileHeader"); in printFileHeaders()
697 DictScope D(W, "DOSHeader"); in printDOSHeader()
719 DictScope D(W, "ImageOptionalHeader"); in printPEHeader()
753 DictScope D(W, "DataDirectory"); in printPEHeader()
775 DictScope S(W, "DebugEntry"); in printCOFFDebugDirectory()
794 DictScope PDBScope(W, "PDBInfo"); in printCOFFDebugDirectory()
1262 DictScope S(W, "FrameData"); in printCodeViewSymbolSection()
1382 DictScope S(W, "FileChecksum"); in printCodeViewFileChecksums()
1402 DictScope S(W, "InlineeSourceLine"); in printCodeViewInlineeLines()
1517 DictScope D(W, "Section"); in printSectionHeaders()
[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.cpp802 std::unique_ptr<DictScope> FileScope;
2641 DictScope D(W, "HashTable"); in printHashTable()
2697 DictScope D(W, "GnuHashTable"); in printGnuHashTable()
2903 DictScope BA(W, "BuildAttributes"); in printAttributes()
3345 DictScope GS(W, "MIPS RegInfo"); in printMipsReginfo()
3394 DictScope GS(W, "MIPS Options"); in printMipsOptions()
3416 DictScope GS(W, Type); in printMipsOptions()
7021 DictScope D(W, "ElfHeader"); in printFileHeaders()
7023 DictScope D(W, "Ident"); in printFileHeaders()
7144 DictScope Lists(W, "Groups"); in printGroupSections()
[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()
/src/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()
/src/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()
838 DictScope EntryScope(W, ("Entry @ 0x" + Twine::utohexstr(EntryId)).str()); in dumpEntry()
846 DictScope NameScope(W, ("Name " + Twine(NTE.getIndex())).str()); in dumpName()
920 DictScope UnitScope(W, ("Name Index @ 0x" + Twine::utohexstr(Base)).str()); in dump()
/src/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() function
853 DictScope(ScopedPrinter &W, StringRef N) : DelimitedScope(W) { in DictScope() function
862 ~DictScope() { in ~DictScope() argument
/src/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp80 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange()
/src/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()