// read_binary_objdump uses this state to store information from previous runs // and use it to display more useful information. struct ObjdumpState {
std::vector<Reloc> code_relocations;
std::vector<Reloc> data_relocations;
ObjdumpNames type_names;
ObjdumpNames function_names;
ObjdumpNames global_names;
ObjdumpNames section_names;
ObjdumpNames tag_names;
ObjdumpNames segment_names;
ObjdumpNames table_names;
ObjdumpLocalNames local_names;
std::vector<ObjdumpSymbol> symtab;
std::map<Index, Index> function_param_counts;
std::map<Index, Index> function_types;
};
Result ReadBinaryObjdump(const uint8_t* data,
size_t size,
ObjdumpOptions* options,
ObjdumpState* state);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.