Skip to content
  1. Jul 11, 2019
  2. Jul 09, 2019
  3. Jun 21, 2019
  4. Jun 19, 2019
  5. 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
  6. Jun 14, 2019
  7. Jun 12, 2019
  8. Jun 10, 2019
  9. 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
  10. May 30, 2019
  11. May 29, 2019
  12. May 28, 2019
  13. May 24, 2019
  14. May 20, 2019
  15. May 17, 2019
    • Ben Dunbobbin's avatar
      [ELF] Implement Dependent Libraries Feature · 1d16515f
      Ben Dunbobbin authored
      This patch implements a limited form of autolinking primarily designed to allow
      either the --dependent-library compiler option, or "comment lib" pragmas (
      https://docs.microsoft.com/en-us/cpp/preprocessor/comment-c-cpp?view=vs-2017) in
      C/C++ e.g. #pragma comment(lib, "foo"), to cause an ELF linker to automatically
      add the specified library to the link when processing the input file generated
      by the compiler.
      
      Currently this extension is unique to LLVM and LLD. However, care has been taken
      to design this feature so that it could be supported by other ELF linkers.
      
      The design goals were to provide:
      
      - A simple linking model for developers to reason about.
      - The ability to to override autolinking from the linker command line.
      - Source code compatibility, where possible, with "comment lib" pragmas in other
        environments (MSVC in particular).
      
      Dependent library support is implemented differently for ELF platforms than on
      the other platforms. Primarily this difference is that on ELF we pass the
      dependent library specifiers directly to the linker without manipulating them.
      This is in contrast to other platforms where they are mapped to a specific
      linker option by the compiler. This difference is a result of the greater
      variety of ELF linkers and the fact that ELF linkers tend to handle libraries in
      a more complicated fashion than on other platforms. This forces us to defer
      handling the specifiers to the linker.
      
      In order to achieve a level of source code compatibility with other platforms
      we have restricted this feature to work with libraries that meet the following
      "reasonable" requirements:
      
      1. There are no competing defined symbols in a given set of libraries, or
         if they exist, the program owner doesn't care which is linked to their
         program.
      2. There may be circular dependencies between libraries.
      
      The binary representation is a mergeable string section (SHF_MERGE,
      SHF_STRINGS), called .deplibs, with custom type SHT_LLVM_DEPENDENT_LIBRARIES
      (0x6fff4c04). The compiler forms this section by concatenating the arguments of
      the "comment lib" pragmas and --dependent-library options in the order they are
      encountered. Partial (-r, -Ur) links are handled by concatenating .deplibs
      sections with the normal mergeable string section rules. As an example, #pragma
      comment(lib, "foo") would result in:
      
      .section ".deplibs","MS",@llvm_dependent_libraries,1
               .asciz "foo"
      
      For LTO, equivalent information to the contents of a the .deplibs section can be
      retrieved by the LLD for bitcode input files.
      
      LLD processes the dependent library specifiers in the following way:
      
      1. Dependent libraries which are found from the specifiers in .deplibs sections
         of relocatable object files are added when the linker decides to include that
         file (which could itself be in a library) in the link. Dependent libraries
         behave as if they were appended to the command line after all other options. As
         a consequence the set of dependent libraries are searched last to resolve
         symbols.
      2. It is an error if a file cannot be found for a given specifier.
      3. Any command line options in effect at the end of the command line parsing apply
         to the dependent libraries, e.g. --whole-archive.
      4. The linker tries to add a library or relocatable object file from each of the
         strings in a .deplibs section by; first, handling the string as if it was
         specified on the command line; second, by looking for the string in each of the
         library search paths in turn; third, by looking for a lib<string>.a or
         lib<string>.so (depending on the current mode of the linker) in each of the
         library search paths.
      5. A new command line option --no-dependent-libraries tells LLD to ignore the
         dependent libraries.
      
      Rationale for the above points:
      
      1. Adding the dependent libraries last makes the process simple to understand
         from a developers perspective. All linkers are able to implement this scheme.
      2. Error-ing for libraries that are not found seems like better behavior than
         failing the link during symbol resolution.
      3. It seems useful for the user to be able to apply command line options which
         will affect all of the dependent libraries. There is a potential problem of
         surprise for developers, who might not realize that these options would apply
         to these "invisible" input files; however, despite the potential for surprise,
         this is easy for developers to reason about and gives developers the control
         that they may require.
      4. This algorithm takes into account all of the different ways that ELF linkers
         find input files. The different search methods are tried by the linker in most
         obvious to least obvious order.
      5. I considered adding finer grained control over which dependent libraries were
         ignored (e.g. MSVC has /nodefaultlib:<library>); however, I concluded that this
         is not necessary: if finer control is required developers can fall back to using
         the command line directly.
      
      RFC thread: http://lists.llvm.org/pipermail/llvm-dev/2019-March/131004.html.
      
      Differential Revision: https://reviews.llvm.org/D60274
      
      llvm-svn: 360984
      1d16515f
  16. May 16, 2019
  17. May 14, 2019
  18. May 10, 2019
  19. May 03, 2019
  20. May 02, 2019
  21. May 01, 2019
    • Fangrui Song's avatar
      [llvm-readobj] Change -long-option to --long-option in tests. NFC · e29e30b1
      Fangrui Song authored
      We use both -long-option and --long-option in tests. Switch to --long-option for consistency.
      
      In the "llvm-readelf" mode, -long-option is discouraged as it conflicts with grouped short options and it is not accepted by GNU readelf.
      
      While updating the tests, change llvm-readobj -s to llvm-readobj -S to reduce confusion ("s" is --section-headers in llvm-readobj but --symbols in llvm-readelf).
      
      llvm-svn: 359649
      e29e30b1
  22. Apr 30, 2019
Loading