Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | AMDGPU: Remove deprecated and unused elf definitions | Konstantin Zhuravlyov | 2017-06-05 | 1 | -26/+3 |
| | | | | | | Differential Revision: https://reviews.llvm.org/D33689 llvm-svn: 304737 | ||||
* | [yaml2obj] Remove --format option in favor of YAML tags | Chris Bieneman | 2016-06-27 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | Summary: Our YAML library's handling of tags isn't perfect, but it is good enough to get rid of the need for the --format argument to yaml2obj. This patch does exactly that. Instead of requiring --format, it infers the format based on the tags found in the object file. The supported tags are: !ELF !COFF !mach-o !fat-mach-o I have a corresponding patch that is quite large that fixes up all the in-tree test cases. Reviewers: rafael, Bigcheese, compnerd, silvas Subscribers: compnerd, llvm-commits Differential Revision: http://reviews.llvm.org/D21711 llvm-svn: 273915 | ||||
* | [llvm-readobj][ELF] Teach llvm-readobj to show arch specific ELF section's flags | Simon Atanasyan | 2016-01-20 | 1 | -0/+90 |
Some architecture specific ELF section flags might have the same value (for example SHF_X86_64_LARGE and SHF_HEX_GPREL) and we have to check machine architectures to select an appropriate set of possible flags. The patch selects architecture specific flags into separate arrays `ElfxxxSectionFlags` and combines `ElfSectionFlags` and `ElfxxxSectionFlags` before pass to the `StreamWriter::printFlags()` method. Differential Revision: http://reviews.llvm.org/D16269 llvm-svn: 258334 |