Skip to content
  1. Jun 01, 2020
  2. May 19, 2020
  3. May 15, 2020
  4. May 09, 2020
  5. May 04, 2020
  6. Apr 21, 2020
    • Pavel Labath's avatar
      [DWARFDebugLine] Check for errors when parsing v2 file/dir lists · c475856d
      Pavel Labath authored
      Summary:
      Without this we could silently accept an invalid prologue because the
      default DataExtractor behavior is to return an empty string when
      reaching the end of file. And empty string is also used to terminate
      these lists.
      
      This makes the parsing code slightly more complicated, but this
      complexity will go away once the parser starts working with truncating
      data extractors. The reason I am doing it this way is because without
      this, the truncation would regress the quality of error messages (right
      now, we produce bad error messages only near EOF, but truncation would
      make everything behave as if it was near EOF).
      
      Reviewers: dblaikie, probinson, jhenderson
      
      Subscribers: hiraditya, MaskRay, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D77555
      c475856d
  7. Apr 17, 2020
  8. Apr 15, 2020
  9. Apr 14, 2020
  10. Apr 12, 2020
  11. Apr 11, 2020
    • David Blaikie's avatar
      llvm-dwarfdump: Report errors when failing to parse loclist/debug_loc entries · 416fa772
      David Blaikie authored
      This probably isn't ideal - the error was being printed specifically
      inline with the dumping that was more legible - but then the error
      wasn't reported to stderr and didn't produce a non-zero exit code.
      
      Probably the error message could be improved by adding more context now
      that it isn't printed in-situ of the DIE dumping as much.
      416fa772
  12. Apr 10, 2020
    • David Blaikie's avatar
      llvm-dwarfdump: Return non-zero on error · e0fd87cc
      David Blaikie authored
      Makes it easier to test "this doesn't produce an error" (& indeed makes
      that the implied default so we don't accidentally write tests that have
      silent/sneaky errors as well as the positive behavior we're testing for)
      
      Though the support for applying relocations is patchy enough that a
      bunch of tests treat lack of relocation application as more of a warning
      than an error - so rather than me trying to figure out how to add
      support for a bunch of relocation types, let's degrade that to a warning
      to match the usage (& indeed, it's sort of more of a tool warning anyway
      - it's not that the DWARF is wrong, just that the tool can't fully cope
      with it - and it's not like the tool won't dump the DWARF, it just won't
      follow/render certain relocations - I guess in the most general case it
      might try to render an unrelocated value & instead render something
      bogus... but mostly seems to be about interesting relocations used in
      eh_frame (& honestly it might be nice if we were lazier about doing this
      relocation resolution anyway - if you're not dumping eh_frame, should we
      really be erroring about the relocations in it?))
      e0fd87cc
  13. Apr 06, 2020
  14. Apr 02, 2020
  15. Mar 24, 2020
    • Pavel Labath's avatar
      [DWARF] Fix v5 debug_line parsing of prologues with many files · d381b6a8
      Pavel Labath authored
      Summary:
      The directory_count and file_name_count fields are (section 6.2.4 of
      DWARF5 spec) supposed to be uleb128s, not bytes. This bug meant that it
      was not possible to correctly parse headers with more than 128 files or
      directories.
      
      I've found this bug by code inspection, though the limit is so small
      someone would have run into it for real sooner or later. I've verified
      that the producer side handles many files correctly, and that we are
      able to parse such files after this fix.
      
      Reviewers: dblaikie, jhenderson
      
      Subscribers: aprantl, hiraditya, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D76498
      d381b6a8
  16. Mar 16, 2020
    • David Stenberg's avatar
      [DebugInfo] Handle generic type DW_OP_convert ops in llvm-dwarfdump · c9365251
      David Stenberg authored
      Summary:
      This is a preparatory change for allowing LLVM to emit DW_OP_convert
      operations converting to the generic type.
      
      If DW_OP_convert's operand is 0, it converts the top of stack to the
      generic type, as specified by DWARFv5 section 2.5.1.6:
      
      "[...] takes one operand, which is an unsigned LEB128 integer that
       represents the offset of a debugging information entry in the current
       compilation unit, or value 0 which represents the generic type."
      
      This adds support for such operations to llvm-dwarfdump.
      
      Reviewers: aprantl, markus, jdoerfert, jhenderson
      
      Reviewed By: aprantl
      
      Subscribers: hiraditya, llvm-commits
      
      Tags: #debug-info, #llvm
      
      Differential Revision: https://reviews.llvm.org/D76141
      c9365251
  17. Mar 09, 2020
  18. Mar 05, 2020
  19. Mar 04, 2020
  20. Mar 02, 2020
  21. Feb 26, 2020
    • Pavel Labath's avatar
      Recommit "[DWARFDebugLine] Avoid dumping prologue members we did not parse" · ced45978
      Pavel Labath authored
      The patch was reverted in 69da4003 because of test failures on windows.
      The problem was the unpredictable order of some of the error messages,
      which I've tried to strenghten in that patch.
      
      It turns out this is not possible to do in verbose mode because there
      the data is being writted as it is being parsed. No amount of flushing
      (as I've done in the non-verbose mode) will help that. Indeed, even
      without any buffering the warning messages can end in the middle of a
      line in non-verbose mode.
      
      In this patch, I have reverted the changes which tested the relative
      position of the warning message, except for the messages about
      unsupported initial length, which are the ones I really wanted to test,
      and which do come out reasonably.
      
      The original commit message was:
      
      This patch if motivated by D74560, specifically the subthread about what
      to print upon encountering reserved initial length values.
      
      If the debug_line prologue has an unsupported version, we skip parsing
      the rest of the data. If we encounter an reserved initial length field,
      we don't even parse the version. However, we still print out all members
      (with value 0) in the dump function.
      
      This patch introduces early exits in the Prologue::dump function so that
      we print only the fields that were parsed successfully. In case of an
      unsupported version, we skip printing all subsequent prologue fields --
      because we don't even know if this version has those fields. In case of a
      reserved unit length, we don't print anything -- if the very first field
      of the prologue is invalid, it's hard to say if we even have a prologue
      to begin with.
      
      Note that the user will still be able to see the invalid/reserved
      initial length value in the error message. I've modified (reordered)
      debug_line_invalid.test to show that the error message comes straight
      after the debug_line offset. I've also added some flush() calls to the
      dumping code to ensure this is the case in all situations (without that,
      the warnings could get out of sync if the output was not a terminal -- I
      guess this is why std::iostreams have the tie() function).
      
      Reviewers: jhenderson, ikudrin, dblaikie
      
      Subscribers: hiraditya, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D75043
      ced45978
  22. Feb 25, 2020
    • Pavel Labath's avatar
      Revert "[DWARFDebugLine] Avoid dumping prologue members we did not parse" · 69da4003
      Pavel Labath authored
      The changed test started failing on the windows bots. Reverting while I
      investigate.
      
      This reverts commit deb116ee.
      69da4003
    • Pavel Labath's avatar
      [DWARFDebugLine] Avoid dumping prologue members we did not parse · deb116ee
      Pavel Labath authored
      Summary:
      This patch if motivated by D74560, specifically the subthread about what
      to print upon encountering reserved initial length values.
      
      If the debug_line prologue has an unsupported version, we skip parsing
      the rest of the data. If we encounter an reserved initial length field,
      we don't even parse the version. However, we still print out all members
      (with value 0) in the dump function.
      
      This patch introduces early exits in the Prologue::dump function so that
      we print only the fields that were parsed successfully. In case of an
      unsupported version, we skip printing all subsequent prologue fields --
      because we don't even know if this version has those fields. In case of a
      reserved unit length, we don't print anything -- if the very first field
      of the prologue is invalid, it's hard to say if we even have a prologue
      to begin with.
      
      Note that the user will still be able to see the invalid/reserved
      initial length value in the error message. I've modified (reordered)
      debug_line_invalid.test to show that the error message comes straight
      after the debug_line offset. I've also added some flush() calls to the
      dumping code to ensure this is the case in all situations (without that,
      the warnings could get out of sync if the output was not a terminal -- I
      guess this is why std::iostreams have the tie() function).
      
      Reviewers: jhenderson, ikudrin, dblaikie
      
      Subscribers: hiraditya, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D75043
      deb116ee
    • Igor Kudrin's avatar
      [DebugInfo] Fix printing CIE offsets in EH FDEs. · bd2df13e
      Igor Kudrin authored
      While the value of the CIE pointer field in a DWARF FDE record is
      an offset to the corresponding CIE record from the beginning of
      the section, for EH FDE records it is relative to the current offset.
      Previously, we did not make that distinction when dumped both kinds
      of FDE records and just printed the same value for the CIE pointer
      field and the CIE offset; that was acceptable for DWARF FDEs but was
      wrong for EH FDEs.
      
      This patch fixes the issue by explicitly printing the offset of the
      linked CIE object.
      
      Differential Revision: https://reviews.llvm.org/D74613
      bd2df13e
  23. Feb 20, 2020
  24. Feb 19, 2020
  25. Feb 18, 2020
  26. Feb 13, 2020
  27. Feb 12, 2020
    • James Henderson's avatar
      [DebugInfo] Add checks for v2 directory and file name table terminators · bf4d8f29
      James Henderson authored
      The DWARFv2-4 specification for the line table header states that the
      include directories and file name tables both end with a single null
      byte. Prior to this change, the parser did not detect if this byte was
      missing, because it also stopped reading the tables once it reached the
      prologue end, as claimed by the header_length field. This change adds a
      check that the terminator has been seen at the end of each table.
      
      Reviewed by: dblaikie, MaskRay
      
      Differential Revision: https://reviews.llvm.org/D74413
      bf4d8f29
    • James Henderson's avatar
      [DebugInfo] Add check for zero debug line opcode_base · 23cf0a30
      James Henderson authored
      The number of standard opcodes is defined to be opcode_base - 1, so a
      value of 0 for the opcode_base caused a crash as an attempt was made to
      reserve many entries in a vector. This change fixes the crash, by
      issuing a warning and skipping reading of standard opcode lengths in the
      event of an opcode_base of 0.
      
      Reviewed by: dblaikie
      
      Differential Revision: https://reviews.llvm.org/D74309
      23cf0a30
Loading