Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.h36 class ScopedPrinter; variable
67 ObjDumper(ScopedPrinter &Writer, StringRef ObjName);
191 ScopedPrinter &W;
205 ScopedPrinter &Writer);
208 ScopedPrinter &Writer);
211 ScopedPrinter &Writer);
214 ScopedPrinter &Writer);
217 ScopedPrinter &Writer);
220 ScopedPrinter &Writer);
222 void dumpCodeViewMergedTypes(ScopedPrinter &Writer,
H A DWindowsResourceDumper.h21 Dumper(WindowsResource *Res, ScopedPrinter &SW) : SW(SW), WinRes(Res) {} in Dumper()
26 ScopedPrinter &SW;
H A Dllvm-readobj.cpp343 createDumper(const ObjectFile &Obj, ScopedPrinter &Writer) { in createDumper()
364 static void dumpObject(ObjectFile &Obj, ScopedPrinter &Writer, in dumpObject()
545 static void dumpArchive(const Archive *Arc, ScopedPrinter &Writer) { in dumpArchive()
572 ScopedPrinter &Writer) { in dumpMachOUniversalBinary()
585 static void dumpCOFFObject(COFFObjectFile *Obj, ScopedPrinter &Writer) { in dumpCOFFObject()
602 ScopedPrinter &Printer) { in dumpWindowsResourceFile()
610 static void dumpInput(StringRef File, ScopedPrinter &Writer) { in dumpInput()
652 std::unique_ptr<ScopedPrinter> createWriter() { in createWriter()
656 return std::make_unique<ScopedPrinter>(fouts()); in createWriter()
719 std::unique_ptr<ScopedPrinter> Writer = createWriter(); in llvm_readobj_main()
H A DWin64EHDumper.h24 ScopedPrinter &SW;
56 Dumper(ScopedPrinter &SW) : SW(SW), OS(SW.getOStream()) {} in Dumper()
H A DCOFFImportDumper.cpp17 #include "llvm/Support/ScopedPrinter.h"
23 void dumpCOFFImportFile(const COFFImportFile *File, ScopedPrinter &Writer) { in dumpCOFFImportFile()
H A DARMWinEHPrinter.h25 ScopedPrinter &SW;
194 Decoder(ScopedPrinter &SW, bool isAArch64) : SW(SW), in Decoder()
H A DStackMapPrinter.h19 void prettyPrintStackMap(ScopedPrinter &W, const StackMapParserT &SMP) { in prettyPrintStackMap()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h25 class ScopedPrinter; variable
110 LLVM_ABI void dump(ScopedPrinter &W) const;
132 bool dumpName(ScopedPrinter &W, SmallVectorImpl<DWARFFormValue> &AtomForms,
405 LLVM_ABI void dump(ScopedPrinter &W) const;
434 LLVM_ABI void dump(ScopedPrinter &W) const;
505 void dump(ScopedPrinter &W) const;
506 void dumpParentIdx(ScopedPrinter &W, const DWARFFormValue &FormValue) const;
610 void dumpCUs(ScopedPrinter &W) const;
611 void dumpLocalTUs(ScopedPrinter &W) const;
612 void dumpForeignTUs(ScopedPrinter &W) const;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolDumper.h22 class ScopedPrinter; variable
30 CVSymbolDumper(ScopedPrinter &W, TypeCollection &Types, in CVSymbolDumper()
51 ScopedPrinter &W;
H A DTypeDumpVisitor.h19 class ScopedPrinter; variable
31 TypeDumpVisitor(TypeCollection &TpiTypes, ScopedPrinter *W, in TypeDumpVisitor()
77 ScopedPrinter *W;
H A DTypeIndex.h20 class ScopedPrinter; variable
288 LLVM_ABI void printTypeIndex(ScopedPrinter &Printer, StringRef FieldName,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DScopedPrinter.cpp14 void ScopedPrinter::printBinaryImpl(StringRef Label, StringRef Str, in printBinaryImpl()
42 : ScopedPrinter(OS, ScopedPrinter::ScopedPrinterKind::JSON), in JSONScopedPrinter()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DELFAttrParserExtended.h23 class ScopedPrinter; variable
27 ScopedPrinter *Sw;
50 ScopedPrinter *Sw, in ELFExtendedAttrParser()
H A DScopedPrinter.h110 class LLVM_ABI ScopedPrinter {
117 ScopedPrinter(raw_ostream &OS,
123 static bool classof(const ScopedPrinter *SP) { in classof()
127 virtual ~ScopedPrinter() = default;
547 ScopedPrinter::printHex<support::ulittle16_t>(StringRef Label,
553 DelimitedScope(ScopedPrinter &W) : W(&W) {} in DelimitedScope()
556 virtual void setPrinter(ScopedPrinter &W) = 0;
557 ScopedPrinter *W;
560 class JSONScopedPrinter : public ScopedPrinter {
589 static bool classof(const ScopedPrinter *SP) { in classof()
[all …]
H A DELFAttrParserCompact.h24 class ScopedPrinter; variable
34 ScopedPrinter *sw;
56 ELFCompactAttrParser(ScopedPrinter *sw, TagNameMap tagNameMap, in ELFCompactAttrParser()
H A DARMAttributeParser.h20 class ScopedPrinter; variable
77 ARMAttributeParser(ScopedPrinter *sw) in ARMAttributeParser()
H A DAArch64AttributeParser.h22 AArch64AttributeParser(ScopedPrinter *Sw) in AArch64AttributeParser()
H A DHexagonAttributeParser.h28 HexagonAttributeParser(ScopedPrinter *SP) in HexagonAttributeParser()
H A DRISCVAttributeParser.h31 RISCVAttributeParser(ScopedPrinter *sw) in RISCVAttributeParser()
H A DMSP430AttributeParser.h37 MSP430AttributeParser(ScopedPrinter *SW) in MSP430AttributeParser()
H A DCSKYAttributeParser.h36 CSKYAttributeParser(ScopedPrinter *sw) in CSKYAttributeParser()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp148 void AppleAcceleratorTable::Header::dump(ScopedPrinter &W) const { in dump()
175 bool AppleAcceleratorTable::dumpName(ScopedPrinter &W, in dumpName()
217 ScopedPrinter W(OS); in dump()
431 void DWARFDebugNames::Header::dump(ScopedPrinter &W) const { in dump()
479 void DWARFDebugNames::Abbrev::dump(ScopedPrinter &W) const { in dump()
705 ScopedPrinter &W, const DWARFFormValue &FormValue) const { in dumpParentIdx()
722 void DWARFDebugNames::Entry::dump(ScopedPrinter &W) const { in dump()
828 bool DWARFDebugNames::NameIndex::dumpEntry(ScopedPrinter &W, in dumpEntry()
843 void DWARFDebugNames::NameIndex::dumpName(ScopedPrinter &W, in dumpName()
858 void DWARFDebugNames::NameIndex::dumpCUs(ScopedPrinter &W) const { in dumpCUs()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/
H A DLVReaderHandler.h44 ScopedPrinter &W;
70 LVReaderHandler(ArgVector &Objects, ScopedPrinter &W, in LVReaderHandler()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h40 ScopedPrinter &W;
60 LVTypeVisitor(ScopedPrinter &W, LVLogicalVisitor *LogicalVisitor,
126 ScopedPrinter &W;
179 LVSymbolVisitor(LVCodeViewReader *Reader, ScopedPrinter &W,
234 ScopedPrinter &W;
284 LVLogicalVisitor(LVCodeViewReader *Reader, ScopedPrinter &W,
H A DLVCodeViewReader.h193 llvm::object::COFFObjectFile &Obj, ScopedPrinter &W,
198 llvm::pdb::PDBFile &Pdb, ScopedPrinter &W, StringRef ExePath)

12