Skip to content
  1. Aug 13, 2019
  2. Aug 12, 2019
  3. Aug 09, 2019
  4. Aug 08, 2019
    • George Rimar's avatar
      [llvm-readobj/libObject] - Introduce a custom warning handler for `ELFFile<ELFT>` methods. · 67ea32a0
      George Rimar authored
      Currently, we have a code duplication in llvm-readobj which was introduced in D63266.
      The duplication was introduced to allow llvm-readobj to dump the partially
      broken object. Methods in ELFFile<ELFT> perform a strict validation of the inputs,
      what is itself good, but not for dumper tools, that might want to dump the information,
      even if some pieces are broken/unexpected.
      
      This patch introduces a warning handler which can be passed to ELFFile<ELFT> methods
      and can allow skipping the non-critical errors when needed/possible.
      
      For demonstration, I removed the duplication from llvm-readobj and implemented a warning using
      the new custom warning handler. It also deduplicates the strings printed, making the output less verbose.
      
      Differential revision: https://reviews.llvm.org/D65515
      
      llvm-svn: 368260
      67ea32a0
  5. Aug 07, 2019
  6. Aug 06, 2019
  7. Aug 05, 2019
  8. Jul 19, 2019
  9. Jul 18, 2019
  10. Jul 16, 2019
  11. Jul 11, 2019
  12. Jul 09, 2019
  13. Jun 21, 2019
  14. Jun 19, 2019
  15. Jun 18, 2019
    • Reid Kleckner's avatar
      [PDB] Ignore .debug$S subsections with high bit set · a702f073
      Reid Kleckner authored
      Some versions of the Visual C++ 2015 runtime have line tables with the
      subsection kind of 0x800000F2. In cvinfo.h, 0x80000000 is documented to
      be DEBUG_S_IGNORE. This appears to implement the intended behavior.
      
      llvm-svn: 363724
      a702f073
    • Fangrui Song's avatar
      [llvm-readobj] Allow --hex-dump/--string-dump to dump multiple sections · 67742399
      Fangrui Song authored
      1) `-x foo` currently dumps one `foo`. This change makes it dump all `foo`.
      2) `-x foo -x foo` currently dumps `foo` twice. This change makes it dump `foo` once.
         In addition, if foo has section index 9, `-x foo -x 9` dumps `foo` once.
      3) Give a warning instead of an error if `foo` does not exist.
      
      The new behaviors match GNU readelf.
      
      Also, print a new line as a separator between two section dumps.
      GNU readelf uses two lines, but one seems good enough.
      
      Reviewed By: grimar, jhenderson
      
      Differential Revision: https://reviews.llvm.org/D63475
      
      llvm-svn: 363683
      67742399
  16. Jun 14, 2019
  17. Jun 12, 2019
  18. Jun 10, 2019
  19. Jun 04, 2019
    • Peter Smith's avatar
      [AArch64][ELF][llvm-readobj] Add support for BTI and PAC dynamic tags · 49d7221f
      Peter Smith authored
      ELF for the 64-bit Arm Architecture defines two processor-specific dynamic
      tags:
      DT_AARCH64_BTI_PLT 0x70000001, d_val
      DT_AARCH64_PAC_PLT 0x70000003, d_val
      
      These presence of these tags indicate that PLT sequences have been
      protected using Branch Target Identification and Pointer Authentication
      respectively. The presence of both indicates that the PLT sequences have
      been protected with both Branch Target Identification and Pointer
      Authentication.
      
      This patch adds the tags and tests for llvm-readobj and yaml2obj.
      
      As some of the processor specific dynamic tags overlap, this patch splits
      them up, keeping their original default value if they were not previously
      mentioned explicitly in a switch case.
      
      Differential Revision: https://reviews.llvm.org/D62596
      
      llvm-svn: 362493
      49d7221f
    • Peter Smith's avatar
      [AARCH64][ELF][llvm-readobj] Support for AArch64 .note.gnu.property · 580c6d31
      Peter Smith authored
          
      ELF for the 64-bit Arm Architecture defines a processor specific property
      type GNU_PROPERTY_AARCH64_FEATURE_1_AND as GNU_PROPERTY_LOPROC. This
      property works in a similar way to the existing X86 processor specific
      property GNU_PROPERTY_GNU_X86_FEATURE_1_AND.
      
      Two feature bits are defined for GNU_PROPERTY_AARCH64_FEATURE_1_AND:
      - GNU_PROPERTY_AARCH64_FEATURE_1_BTI 0x1
      - GNU_PROPERTY_AARCH64_FEATURE_1_PAC 0x2
      
      This patch defines the property, feature bits and implements support for
      printing in llvm-readobj.
      
      Differential Revision: https://reviews.llvm.org/D62595
      
      llvm-svn: 362490
      580c6d31
  20. May 30, 2019
  21. May 29, 2019
  22. May 28, 2019
  23. May 24, 2019
    • Simon Atanasyan's avatar
      [llvm-readobj] Implement GNU-style output for dynamic table · 8362cbe1
      Simon Atanasyan authored
      GNU readelf tool prints slightly different dynamic table "header" and
      surrounds dynamic tag names by brackets. This patch implements the same
      formatting for GNU-style output of the `llvm-readobj`.
      
      LLVM
      ```
      DynamicSection [ (13 entries)
        Tag        Type                 Name/Value
        0x00000006 SYMTAB               0x168
        ...
      ]
      ```
      
      GNU
      ```
      Dynamic section at offset 0x1d0 contains 13 entries:
        Tag        Type                 Name/Value
        0x00000006 (SYMTAB)             0x168
        ...
      ```
      
      Differential Revision: https://reviews.llvm.org/D62256
      
      llvm-svn: 361633
      8362cbe1
Loading