llvm-6502/tools/obj2yaml
Rafael Espindola e8f07a7eb3 Remove Elf_Sym_Iter.
It was a fairly broken concept for an ELF only class.

An ELF file can have two symbol tables, but they have exactly the same
format. There is no concept of a dynamic or a static symbol. Storing this
on the iterator also makes us do more work per symbol than necessary. To fetch
a name we would:

* Find if we had a static or a dynamic symbol.
* Look at the corresponding symbol table and find the string table section.
* Look at the string table section to fetch its contents.
* Compute the name as a substring of the string table.

All but the last step can be done per symbol table instead of per symbol. This
is a step in that direction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240939 91177308-0d34-0410-b5e6-96231b3b80d8
2015-06-29 12:38:31 +00:00
..
CMakeLists.txt
coff2yaml.cpp Remove object_error::success and use std::error_code() instead 2015-06-09 15:20:42 +00:00
elf2yaml.cpp Remove Elf_Sym_Iter. 2015-06-29 12:38:31 +00:00
Error.cpp
Error.h
Makefile
obj2yaml.cpp
obj2yaml.h