Skip to content
  1. May 14, 2018
  2. May 12, 2018
    • JF Bastien's avatar
      llc: don't call llvm_shutdown twice · 47b894b4
      JF Bastien authored
      Summary:
      InitLLVM already calls llvm_shutdown, but llc registers for shutdown
      with llvm_shutdown_obj so it gets called twice. It's not hurting anything, but
      it's also not useful, so don't do it.
      
      Reviewers: ruiu
      
      Subscribers: aheejin, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46788
      
      llvm-svn: 332174
      47b894b4
  3. May 11, 2018
  4. May 10, 2018
    • Robert Widmann's avatar
      [LLVM-C] Consolidate llgo's DIBuilder Bindings · 4b0084bf
      Robert Widmann authored
      Summary: Move and correct LLVMDIBuilderCreateTypedef.  This is the last API in DIBuilderBindings.h, so it is being removed and the C API will now be re-exported from IRBindings.h.
      
      Reviewers: whitequark, harlanhaskins, deadalnix
      
      Reviewed By: whitequark
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46725
      
      llvm-svn: 332041
      4b0084bf
    • Robert Widmann's avatar
      [LLVM-C] Move DIBuilder Bindings For Temporary MDNodes · a428eba8
      Robert Widmann authored
      Summary: Move LLVMTemporaryMDNode and LLVMMetadataReplaceAllUsesWith to the C bindings and add LLVMDeleteTemporaryMDNode for deleting non-RAUW'ed temporary nodes.
      
      Reviewers: whitequark, harlanhaskins, deadalnix
      
      Reviewed By: whitequark
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46632
      
      llvm-svn: 332010
      a428eba8
    • James Henderson's avatar
      [DWARF] Rework debug line parsing to use llvm::Error and callbacks · a3acf99e
      James Henderson authored
      Reviewed by: dblaikie, JDevlieghere, espindola
      
      Differential Revision: https://reviews.llvm.org/D44560
      
      Summary:
      The .debug_line parser previously reported errors by printing to stderr and
      return false. This is not particularly helpful for clients of the library code,
      as it prevents them from handling the errors in a manner based on the calling
      context. This change switches to using llvm::Error and callbacks to indicate
      what problems were detected during parsing, and has updated clients to handle
      the errors in a location-specific manner. In general, this means that they
      continue to do the same thing to external users. Below, I have outlined what
      the known behaviour changes are, relating to this change.
      
      There are two levels of "errors" in the new error mechanism, to broadly
      distinguish between different fail states of the parser, since not every
      failure will prevent parsing of the unit, or of subsequent unit. Malformed
      table errors that prevent reading the remainder of the table (reported by
      returning them) and other minor issues representing problems with parsing that
      do not prevent attempting to continue reading the table (reported by calling a
      specified callback funciton). The only example of this currently is when the
      last sequence of a unit is unterminated. However, I think it would be good to
      change the handling of unrecognised opcodes to report as minor issues as well,
      rather than just printing to the stream if --verbose is used (this would be a
      subsequent change however).
      
      I have substantially extended the DwarfGenerator to be able to handle
      custom-crafted .debug_line sections, allowing for comprehensive unit-testing
      of the parser code. For now, I am just adding unit tests to cover the basic
      error reporting, and positive cases, and do not currently intend to test every
      part of the parser, although the framework should be sufficient to do so at a
      later point.
      
      Known behaviour changes:
        - The dump function in DWARFContext now does not attempt to read subsequent
        tables when searching for a specific offset, if the unit length field of a
        table before the specified offset is a reserved value.
        - getOrParseLineTable now returns a useful Error if an invalid offset is
        encountered, rather than simply a nullptr.
        - The parse functions no longer use `WithColor::warning` directly to report
        errors, allowing LLD to call its own warning function.
        - The existing parse error messages have been updated to not specifically
        include "warning" in their message, allowing consumers to determine what
        severity the problem is.
        - If the line table version field appears to have a value less than 2, an
        informative error is returned, instead of just false.
        - If the line table unit length field uses a reserved value, an informative
        error is returned, instead of just false.
        - Dumping of .debug_line.dwo sections is now implemented the same as regular
        .debug_line sections.
        - Verbose dumping of .debug_line[.dwo] sections now prints the prologue, if
        there is a prologue error, just like non-verbose dumping.
      
      As a helper for the generator code, I have re-added emitInt64 to the
      AsmPrinter code. This previously existed, but was removed way back in r100296,
      presumably because it was dead at the time.
      
      This change also requires a change to LLD, which will be committed separately.
      
      llvm-svn: 331971
      a3acf99e
  5. May 09, 2018
  6. May 08, 2018
  7. May 07, 2018
  8. May 05, 2018
Loading