Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [llvm-readobj] Change -t to --symbols in tests. NFC | Fangrui Song | 2019-05-01 | 1 | -1/+1 |
| | | | | | | | | | | -t is --symbols in llvm-readobj but --section-details (unimplemented) in readelf. The confusing option should not be used since we aim for improving compatibility. Keep just one llvm-readobj -t use case in test/tools/llvm-readobj/symbols.test llvm-svn: 359661 | ||||
* | Don't constrain the section order in tests that don't depend on it. | Rafael Espindola | 2015-04-29 | 1 | -2/+2 |
| | | | | llvm-svn: 236102 | ||||
* | ELFObjectWriter: deduplicate suffices in strtab | Hans Wennborg | 2014-04-30 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | We already do this for shstrtab, so might as well do it for strtab. This extracts the string table building code into a separate class. The idea is to use it for other object formats too. I mostly wanted to do this for the general principle, but it does save a little bit on object file size. I tried this on a clang bootstrap and saved 0.54% on the sum of object file sizes (1.14 MB out of 212 MB for a release build). Differential Revision: http://reviews.llvm.org/D3533 llvm-svn: 207670 | ||||
* | Teach llvm-readobj to print human friendly description of reserved sections. | Rafael Espindola | 2014-03-24 | 1 | -2/+2 |
| | | | | llvm-svn: 204584 | ||||
* | Move the STT_FILE symbols out of the normal symbol table processing for | Joerg Sonnenberger | 2013-10-29 | 1 | -0/+47 |
ELF. They can overlap with the other symbols, e.g. if a source file "foo.c" contains a function "foo" with a static variable "c". llvm-svn: 193569 |