Skip to content
  1. Feb 01, 2019
    • Matt Davis's avatar
      [llvm-readobj] Add a flag to dump just the section-to-segment mapping. · 50ca8edb
      Matt Davis authored
      Summary:
      The following patch introduces a new function `printSectionMapping` which is responsible for dumping just the section-to-segment mapping.
      This patch also introduces a n option `-section-mapping` that outputs that mapping without the program headers.
      
      Previously, this functionality was controlled by `printProgramHeaders`, and the output from `-program-headers` has not been changed.  I am happy to change the option name, I copied  the name that was displayed when outputting the mapping table.
      
      Reviewers: khemant, jhenderson, grimar, rupprecht
      
      Reviewed By: jhenderson, grimar, rupprecht
      
      Subscribers: rupprecht, jhenderson, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D57365
      
      llvm-svn: 352896
      50ca8edb
  2. Jan 30, 2019
    • George Rimar's avatar
      [llvm-readobj] - Few minor cleanups. NFC. · 1206f5a8
      George Rimar authored
      Minor code simplifications, relocations,
      renamings (to match LLVM style).
      
      llvm-svn: 352630
      1206f5a8
    • George Rimar's avatar
      [llvm-readobj] - Simplify the code. · 4b4899b0
      George Rimar authored
      We have a Field struct which has a StringRef member Str.
      
      The code needs to create and keep alive the temporarily
      std::string variables because of that.
      That is not convenient and makes the code be more complicated
      than it could be.
      
      There seems to be no reason to keep Str be StringRef.
      The patch changes it to be std::string and
      rearranges the code around slightly.
      
      Differential revision: https://reviews.llvm.org/D57447
      
      llvm-svn: 352623
      4b4899b0
  3. Jan 23, 2019
    • James Henderson's avatar
      [llvm-readelf] Don't suppress static symbol table with --dyn-symbols + --symbols · 21ed8683
      James Henderson authored
      In r287786, a bug was introduced into llvm-readelf where it didn't print
      the static symbol table if both --symbols and --dyn-symbols were
      specified, even if there was no dynamic symbol table. This is obviously
      incorrect.
      
      This patch fixes this issue, by delegating the decision of which symbol
      tables should be printed to the final dumper, rather than trying to
      decide in the command-line option handling layer. The decision was made
      to follow the approach taken in this patch because the LLVM style dumper
      uses a different order to the original GNU style behaviour (and GNU
      readelf) for ELF output. Other approaches resulted in behaviour changes
      for other dumpers which felt wrong. In particular, I wanted to avoid
      changing the order of the output for --symbols --dyn-symbols for LLVM
      style, keep what is emitted by --symbols unchanged for all dumpers, and
      avoid having different orders of .dynsym and .symtab dumping for GNU
      "--symbols" and "--symbols --dyn-symbols".
      
      Reviewed by: grimar, rupprecht
      
      Differential Revision: https://reviews.llvm.org/D57016
      
      llvm-svn: 351960
      21ed8683
  4. Jan 22, 2019
    • James Henderson's avatar
      [llvm-readelf]Revert --dyn-symbols behaviour to make it GNU compatible, and... · 5fc812f1
      James Henderson authored
      [llvm-readelf]Revert --dyn-symbols behaviour to make it GNU compatible, and add new --hash-symbols switch for old behaviour
      
      In r287786, the behaviour of --dyn-symbols in llvm-readelf (but not
      llvm-readobj) was changed to print the dynamic symbols as derived from
      the hash table, rather than to print the dynamic symbol table contents
      directly. The original change was initially submitted without review,
      and some comments were made on the commit mailing list implying that the
      new behavious is GNU compatible. I argue that it is not:
      
        1) It does not include a null symbol.
        2) It prints the symbols based on an order derived from the hash
           table.
        3) It prints an extra column indicating which bucket it came from.
           This could break parsers that expect a fixed number of columns,
           with the first column being the symbol index.
        4) If the input happens to have both .hash and .gnu.hash section, it
           prints interpretations of them both, resulting in most symbols
           being printed twice.
        5) There is no way of just printing the raw dynamic symbol table,
           because --symbols also prints the static symbol table.
      
      This patch reverts the --dyn-symbols behaviour back to its old behaviour
      of just printing the contents of the dynamic symbol table, similar to
      what is printed by --symbols. As the hashed interpretation is still
      desirable to validate the hash table, it puts it under a new switch
      "--hash-symbols". This is a no-op on all output forms except for GNU
      output style for ELF. If there is no hash table, it does nothing,
      unlike the previous behaviour which printed the raw dynamic symbol
      table, since the raw dynsym is available under --dyn-symbols.
      
      The yaml input for the test is based on that in
      test/tools/llvm-readobj/demangle.test, but stripped down to the bare
      minimum to provide a valid dynamic symbol.
      
      Note: some LLD tests needed updating. I will commit a separate patch for
      those.
      
      Reviewed by: grimar, rupprecht
      
      Differential Revision: https://reviews.llvm.org/D56910
      
      llvm-svn: 351789
      5fc812f1
  5. Jan 19, 2019
    • Chandler Carruth's avatar
      Update the file headers across all of the LLVM projects in the monorepo · 2946cd70
      Chandler Carruth authored
      to reflect the new license.
      
      We understand that people may be surprised that we're moving the header
      entirely to discuss the new license. We checked this carefully with the
      Foundation's lawyer and we believe this is the correct approach.
      
      Essentially, all code in the project is now made available by the LLVM
      project under our new license, so you will see that the license headers
      include that license only. Some of our contributors have contributed
      code under our old license, and accordingly, we have retained a copy of
      our old license notice in the top-level files in each project and
      repository.
      
      llvm-svn: 351636
      2946cd70
  6. Jan 17, 2019
  7. Jan 16, 2019
  8. Jan 15, 2019
    • Jordan Rupprecht's avatar
      [llvm-readelf] Allow single-letter flags to be merged. · 58aac950
      Jordan Rupprecht authored
      Summary:
      This patch adds support for merged arguments (e.g. -SW == -S -W) for llvm-readelf.
      
      No changes are intended for llvm-readobj. There are a few short flags (-sd, -sr, -st, -dt) that would conflict with grouped single letter flags, and having only some grouped flags might be confusing. So, allow merged flags for readelf compatibility, but force separate args for llvm-readobj. From what I can tell, these two-letter flags are only used with llvm-readobj, not llvm-readelf.
      
      This fixes PR40064.
      
      Reviewers: jhenderson, kristina, echristo, phosek
      
      Reviewed By: jhenderson
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D56629
      
      llvm-svn: 351205
      58aac950
  9. Jan 08, 2019
  10. Jan 07, 2019
  11. Jan 03, 2019
  12. Dec 20, 2018
  13. Dec 18, 2018
    • Luke Cheeseman's avatar
      [AArch64] - Return address signing dwarf support · f57d7d82
      Luke Cheeseman authored
      - Reapply changes intially introduced in r343089
      - The archtecture info is no longer loaded whenever a DWARFContext is created
      - The runtimes libraries (santiziers) make use of the dwarf context classes but
        do not intialise the target info
      - The architecture of the object can be obtained without loading the target info
      - Adding a method to the dwarf context to get this information and multiplex the
        string printing later on
      
      Differential Revision: https://reviews.llvm.org/D55774
      
      llvm-svn: 349472
      f57d7d82
  14. Dec 12, 2018
  15. Dec 11, 2018
  16. Dec 08, 2018
    • Xing GUO's avatar
      [llvm-readobj] Little clean up inside `parseDynamicTable` · fe5a6c31
      Xing GUO authored
      Summary:
      This anoymous function actually has same logic with `Obj->toMappedAddr`.
      
      Besides, I have a question on resolving illegal value. `gnu-readelf`, `gnu-objdump` and `llvm-objdump` could parse the test file 'test/tools/llvm-objdump/Inputs/private-headers-x86_64.elf', but `llvm-readobj` will fail when parse `DT_RELR` segment. Because, the value is 0x87654321 which is illegal. So, shall we do this clean up rather then remove the checking statements inside anoymous function?
      
      ```
      if (Delta >= Phdr.p_filesz)
          return createError("Virtual address is not in any segment");
      ```
      
      Reviewers: rupprecht, jhenderson
      
      Reviewed By: jhenderson
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D55329
      
      llvm-svn: 348701
      fe5a6c31
  17. Dec 01, 2018
  18. Nov 23, 2018
  19. Nov 14, 2018
    • Heejin Ahn's avatar
      [WebAssembly] Add support for the event section · da419bdb
      Heejin Ahn authored
      Summary:
      This adds support for the 'event section' specified in the exception
      handling proposal. (This was named 'exception section' first, but later
      renamed to 'event section' to take possibilities of other kinds of
      events into consideration. But currently we only store exception info in
      this section.)
      
      The event section is added between the global section and the export
      section. This is for ease of validation per request of the V8 team.
      
      This patch:
      - Creates the event symbol type, which is a weak symbol
      - Makes 'throw' instruction take the event symbol '__cpp_exception'
      - Adds relocation support for events
      - Adds WasmObjectWriter / WasmObjectFile (Reader) support
      - Adds obj2yaml / yaml2obj support
      - Adds '.eventtype' printing support
      
      Reviewers: dschuff, sbc100, aardappel
      
      Subscribers: jgravelle-google, sunfish, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54096
      
      llvm-svn: 346825
      da419bdb
  20. Nov 13, 2018
  21. Nov 12, 2018
    • Jordan Rupprecht's avatar
      [llvm-readelf] Make llvm-readelf more compatible with GNU readelf. · dbf552c4
      Jordan Rupprecht authored
      Summary:
      This change adds a bunch of options that GNU readelf supports. There is one breaking change when invoked as `llvm-readobj`, and three breaking changes when invoked as `llvm-readelf`:
       - Add --all (implies --file-header, --program-headers, etc.)
       - [Breaking] -a is --all instead of --arm-attributes
       - Add --file-header as an alias for --file-headers
       - Replace --sections with --sections-headers, keeping --sections as an alias for it
       - Add --relocs as an alias for --relocations
       - Add --dynamic as an alias for --dynamic-table
       - Add --segments as an alias for --program-headers
       - Add --section-groups as an alias for --elf-section-groups
       - Add --dyn-syms as an alias for --dyn-symbols
       - Add --syms as an alias for --symbols
       - Add --histogram as an alias for --elf-hash-histogram
       - [Breaking] When invoked as `llvm-readelf`, -s is --symbols instead of --sections
       - [Breaking] When invoked as `llvm-readelf`, -t is no longer an alias for --symbols
      
      Reviewers: MaskRay, phosek, mcgrathr, jhenderson
      
      Reviewed By: MaskRay, jhenderson
      
      Subscribers: sbc100, aheejin, edd, jhenderson, silvas, echristo, compnerd, kristina, javed.absar, kristof.beyls, llvm-commits, Bigcheese
      
      Differential Revision: https://reviews.llvm.org/D54124
      
      llvm-svn: 346685
      dbf552c4
  22. Nov 11, 2018
  23. Nov 08, 2018
  24. Nov 05, 2018
  25. Nov 02, 2018
  26. Oct 27, 2018
    • Ryan Prichard's avatar
      [llvm-readobj] Fix bugs with unrecognized types in switch statements · 0c20b5be
      Ryan Prichard authored
      Summary:
      Add missing breaks. Several functions used nested switch statements,
      where the outer switch branches based on the architecture, and the inner
      switch handles architecture-specific types. If the type isn't
      architecture-specific, break out to the generic types rather than fall
      through.
      
      getElfPtType: For GNU-style output, llvm-readobj prints
      "<unknown>: 0xnnnnnnnn" for an unrecognized segment type, unless the
      architecture is EM_ARM, EM_MIPS, or EM_MIPS_RS3_LE, in which case it
      prints "". This behavior appears accidental, so instead, always print
      the "<unknown>: 0xnnnnnnnn" string.
      
      Reviewers: pcc, grimar
      
      Reviewed By: grimar
      
      Subscribers: sdardis, javed.absar, arichardson, kristof.beyls, atanasyan, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D53730
      
      llvm-svn: 345436
      0c20b5be
  27. Oct 25, 2018
    • Simon Atanasyan's avatar
      [llvm-readobj] Print ELF header flags names in GNU output · 19932545
      Simon Atanasyan authored
      GNU readelf tool prints hex value of the ELF header flags field and the
      flags names. This change adds the same functionality to llvm-readobj.
      Now llvm-readobj can print MIPS and RISCV flags.
      
      New GNUStyle::printFlags() method is a copy of ScopedPrinter::printFlags()
      routine. Probably we can escape code duplication and / or simplify the
      printFlags() method. But it's a task for separate commit.
      
      Differential revision: https://reviews.llvm.org/D52027
      
      llvm-svn: 345238
      19932545
  28. Oct 24, 2018
  29. Oct 13, 2018
  30. Sep 28, 2018
    • Luke Cheeseman's avatar
      Revert r343317 · 10981cc8
      Luke Cheeseman authored
      - asan buildbots are breaking and I need to investigate the issue
      
      llvm-svn: 343341
      10981cc8
    • Luke Cheeseman's avatar
      Reapply changes reverted by r343235 · 21f2955b
      Luke Cheeseman authored
      - Add fix so that all code paths that create DWARFContext
        with an ObjectFile initialise the target architecture in the context
      - Add an assert that the Arch is known in the Dwarf CallFrameString method
      
      llvm-svn: 343317
      21f2955b
  31. Sep 27, 2018
  32. Sep 26, 2018
Loading