reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/obj2yaml/coff2yaml.cpp
   86     if (Obj.getDataDirectory(I++, DD))
   95   YAMLObj.Header.Machine = Obj.getMachine();
   96   YAMLObj.Header.Characteristics = Obj.getCharacteristics();
  140   initializeFileAndStringTable(Obj, SC);
  143   for (const auto &S : Obj.symbols()) {
  144     object::COFFSymbolRef Symbol = Obj.getCOFFSymbol(S);
  146     Obj.getSymbolName(Symbol, Name);
  154   for (const auto &ObjSection : Obj.sections()) {
  155     const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection);
  182       cantFail(Obj.getSectionContents(COFFSection, sectionData));
  198       const object::coff_relocation *reloc = Obj.getCOFFRelocation(Reloc);
  281   for (const auto &S : Obj.symbols()) {
  282     object::COFFSymbolRef Symbol = Obj.getCOFFSymbol(S);
  284     Obj.getSymbolName(Symbol, Sym.Name);
  293       ArrayRef<uint8_t> AuxData = Obj.getSymbolAuxData(Symbol);
  325                                  Obj.getSymbolTableEntrySize())