Skip to content
  1. Jun 01, 2020
  2. May 29, 2020
  3. May 28, 2020
  4. May 27, 2020
  5. May 26, 2020
    • Vitaly Buka's avatar
      [sancov] Accommodate sancov and coverage report server for use under Windows · 6a74ad6b
      Vitaly Buka authored
      Summary:
      This patch makes the following changes to SanCov and its complementary Python script in order to resolve issues pertaining to non-UNIX file paths in JSON symbolization information:
      * Convert all paths to use forward slash.
      * Update `coverage-report-server.py` to correctly handle paths to sources which contain spaces.
      * Remove Linux platform restriction for all SanCov unit tests. All SanCov tests passed when ran on my local Windows machine.
      
      Patch by Douglas Gliner.
      
      Reviewers: kcc, filcab, phosek, morehouse, vitalybuka, metzman
      
      Reviewed By: vitalybuka
      
      Subscribers: vsk, Dor1s, llvm-commits
      
      Tags: #sanitizers, #llvm
      
      Differential Revision: https://reviews.llvm.org/D51018
      6a74ad6b
    • Jonas Devlieghere's avatar
      [dsymutil] Escape CFBundleIdentifier in plist. · d4086213
      Jonas Devlieghere authored
      Revision 333565 started escaping HTML special characters in the plist
      written by dsymutil, but didn't include the updated CFBundleIdentifier.
      d4086213
    • Georgii Rymar's avatar
      [DebugInfo/llvm-objdump] - Print "ZERO terminator" for terminator entries when dumping .eh_frame. · 2e365ca2
      Georgii Rymar authored
      A CIE with the Length == 0 is a terminator:
      https://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic/ehframechpt.html
      
      And GNU objdump recognizes them and prints the following for such entries:
      
      "00000000 ZERO terminator"
      
      This patch teaches llvm-objdump to do the same. I had to update tests to use
      "CHECK-NEXT" too.
      
      (Note: it looks perhaps not right that printing is done inside the DebugInfo library,
      I'd expect to see the change in the llvm-objdump's code somewhere instead,
      but that is how it done atm).
      
      Differential revision: https://reviews.llvm.org/D80476
      2e365ca2
    • Georgii Rymar's avatar
      [DebugInfo] - Fix multiple issues in DWARFDebugFrame::parse(). · 2569787e
      Georgii Rymar authored
      I've noticed an issue with "Data.getRelocatedValue(...)" call.
      
      it might silently ignore an error when a content is truncated.
      That leads to an infinite loop in the code (e.g. llvm-readobj hangs).
      
      After fixing the issue I've found that actually we always tried
      to read past the end of a section, even when a content was valid.
      It happened because the terminator CIE (a CIE with the length == 0)
      was never handled. At first I've tried just to stop adding the terminator
      entry (and return), but it does not seem to be correct, because tools like
      llvm-objdump might want to print something for such entries
      (see comments in the code and test cases).
      
      This patch fixes issues mentioned, provides new test cases for
      both llvm-readobj and lib/DebugInfo and adds FIXMEs to existent
      test cases related.
      
      Differential revision: https://reviews.llvm.org/D80299
      2569787e
  6. May 23, 2020
    • Georgii Rymar's avatar
      [yaml2obj] - Add a technical prefix for each unnamed chunk. · 38c5d6f7
      Georgii Rymar authored
      This change does not affect the produced binary.
      
      In this patch I assign a technical suffix to each section/fill
      (i.e. chunk) name when it is empty. It allows to simplify the code
      slightly and improve error messages reported.
      
      In the code we have the section to index mapping, SN2I, which is
      globally used. With this change we can use it to map "empty"
      names to indexes now, what is helpful.
      
      Differential revision: https://reviews.llvm.org/D79984
      38c5d6f7
  7. May 22, 2020
  8. May 21, 2020
  9. May 20, 2020
  10. May 19, 2020
  11. May 18, 2020
  12. May 15, 2020
    • James Henderson's avatar
      [llvm-readobj] Implement --dependent-libraries for GNU output · f06e6564
      James Henderson authored
      Previously, the option was only implemented for LLVM output. This fixes
      https://bugs.llvm.org/show_bug.cgi?id=45695.
      
      At the current time, GNU readelf does not support this option.
      Consequently, this patch simply attempts to roughly follow the output
      style for similar options like --syms/--notes etc, combined with
      --string-dump output.
      
      Reviewed by: MaskRay, grimar
      
      Differential Revision: https://reviews.llvm.org/D79939
      f06e6564
    • Georgii Rymar's avatar
      [DebugInfo] - DWARFDebugFrame: do not call abort() on errors. · 710d9d66
      Georgii Rymar authored
      Imagine we have a broken .eh_frame.
      Below is a possible sample output of llvm-readelf:
      
      ```
      ...
          entry 2 {
            initial_location: 0x10f5
            address: 0x2080
          }
        }
      }
      .eh_frame section at offset 0x2028 address 0x2028:
      LLVM ERROR: Parsing entry instructions at 0 failed
      PLEASE submit a bug report to https://bugs.llvm.org/ and include the crash backtrace.
      Stack dump:
      0.  Program arguments: /home/umb/LLVM/LLVM/llvm-project/build/bin/llvm-readelf -a 1
       #0 0x000055f4a2ff5a1a llvm::sys::PrintStackTrace(llvm::raw_ostream&) (/home/umb/LLVM/LLVM/llvm-project/build/bin/llvm-readelf+0x2b9a1a)
      ...
      #15 0x00007fdae5dc209b __libc_start_main /build/glibc-B9XfQf/glibc-2.28/csu/../csu/libc-start.c:342:3
      #16 0x000055f4a2db746a _start (/home/umb/LLVM/LLVM/llvm-project/build/bin/llvm-readelf+0x7b46a)
      Aborted
      ```
      
      I.e. it calls abort(), suggests to submit a bug report and exits with the code 134.
      This patch changes the logic to propagate errors to callers.
      This fixes the behavior for llvm-dwarfdump, llvm-readobj and other possible tools.
      
      Differential revision: https://reviews.llvm.org/D79165
      710d9d66
Loading