Home | History | Annotate | Download | only in llvm-readobj

Lines Matching defs:Dumper

323 /// @brief Creates an format-specific object file dumper.
343 std::unique_ptr<ObjDumper> Dumper;
344 if (std::error_code EC = createDumper(Obj, Writer, Dumper))
354 Dumper->printLoadName();
358 Dumper->printFileHeaders();
360 Dumper->printSections();
362 Dumper->printRelocations();
364 Dumper->printDynamicRelocations();
366 Dumper->printSymbols();
368 Dumper->printDynamicSymbols();
370 Dumper->printUnwindInfo();
372 Dumper->printDynamicTable();
374 Dumper->printNeededLibraries();
376 Dumper->printProgramHeaders();
378 Dumper->printHashTable();
380 Dumper->printGnuHashTable();
382 Dumper->printVersionInfo();
386 Dumper->printAttributes();
389 Dumper->printMipsPLTGOT();
391 Dumper->printMipsABIFlags();
393 Dumper->printMipsReginfo();
395 Dumper->printMipsOptions();
398 Dumper->printGroupSections();
400 Dumper->printHashHistogram();
404 Dumper->printCOFFImports();
406 Dumper->printCOFFExports();
408 Dumper->printCOFFDirectives();
410 Dumper->printCOFFBaseReloc();
412 Dumper->printCOFFDebugDirectory();
414 Dumper->printCodeViewDebugInfo();
416 Dumper->mergeCodeViewTypes(CVTypes);
420 Dumper->printMachODataInCode();
422 Dumper->printMachOIndirectSymbols();
424 Dumper->printMachOLinkerOptions();
426 Dumper->printMachOSegment();
428 Dumper->printMachOVersionMin();
430 Dumper->printMachODysymtab();
433 Dumper->printStackMap();