Skip to content
  1. Feb 03, 2017
    • Bob Haarman's avatar
      added missing files for r293965 · fbc229dc
      Bob Haarman authored
      llvm-svn: 293966
      fbc229dc
    • Bob Haarman's avatar
      add the ability to call InitTargetOptionsFromCodeGenFlags from multiple objects · 35989d6b
      Bob Haarman authored
      Summary: llvm/CodeGen/CommandFlags.h a utility function InitTargetOptionsFromCodeGenFlags which is used to set target options from flags based on the command line. The command line flags are stored in globals defined in the same file, and including the file in multiple places causes the globals to be defined multiple times, leading to linker errors. This change adds a single place in lld where these globals are defined and exports only the utility function. This makes it possible to call InitTargetOptionsFromCodeGenFlags from multiple places in lld, which a follow-up change will do.
      
      Reviewers: davide, ruiu
      
      Reviewed By: davide, ruiu
      
      Subscribers: mgorny
      
      Differential Revision: https://reviews.llvm.org/D29058
      
      llvm-svn: 293965
      35989d6b
  2. Jan 09, 2017
    • Pavel Labath's avatar
      [lld][cmake] Fix LLVM_LINK_LLVM_DYLIB build · c9fa114b
      Pavel Labath authored
      Summary:
      Lld's build had a couple of issues which prevented a successfull
      LLVM_LINK_LLVM_DYLIB compilation.
      
      - add_llvm_library vs llvm_add_library: One adds a library to libLLVM.so, other
        one doesn't. Lld was using the wrong one, causing symbols to be mupltiply
        defined in things linking to libLLVM.
      - confusion when to use LINK_LIBS vs LINK_COMPONENTS in llvm_add_library
      - not using LLVM_LINK_COMPONENTS for add_lld_tool
      
      With these fixes lld compiles and it's test suite passes both in
      LLVM_LINK_LLVM_DYLIB mode and without it.
      
      Reviewers: ruiu, beanz
      
      Subscribers: llvm-commits, mgorny
      
      Differential Revision: https://reviews.llvm.org/D28397
      
      llvm-svn: 291432
      c9fa114b
    • Rui Ueyama's avatar
      Define sys::path::convert_to_slash · 3e649039
      Rui Ueyama authored
      This patch moves convertToUnixPathSeparator from LLD to LLVM.
      
      Differential Revision: https://reviews.llvm.org/D28444
      
      llvm-svn: 291414
      3e649039
  3. Jan 06, 2017
  4. Dec 07, 2016
  5. Nov 16, 2016
  6. Nov 12, 2016
  7. Nov 11, 2016
  8. Nov 05, 2016
  9. Nov 04, 2016
  10. Oct 20, 2016
  11. Aug 12, 2016
  12. Aug 11, 2016
  13. Aug 10, 2016
  14. Aug 06, 2016
  15. Aug 04, 2016
  16. Jul 26, 2016
    • Peter Collingbourne's avatar
      Add qualification to fix MSVC build. · 76681d6a
      Peter Collingbourne authored
      llvm-svn: 276720
      76681d6a
    • Peter Collingbourne's avatar
      COFF: Implement /linkrepro flag. · feee2103
      Peter Collingbourne authored
      This flag is implemented similarly to --reproduce in the ELF linker.
      
      This patch implements /linkrepro by moving the cpio writer and associated
      utility functions to lldCore, and using that implementation in both linkers.
      
      One COFF-specific detail is that we store the object file from which the
      resource files were created in our reproducer, rather than the resource
      files themselves. This allows the reproducer to be used on non-Windows
      systems for example.
      
      Differential Revision: https://reviews.llvm.org/D22418
      
      llvm-svn: 276719
      feee2103
  17. Mar 31, 2016
    • Pete Cooper's avatar
      Remove unused variants of make_dynamic_error_code. NFC. · eadf9e4e
      Pete Cooper authored
      make_dynamic_error_code was used to create a std::error_code with
      a std::string message.  Now that we are migrating to llvm::Error,
      there are no calls to these make_dynamic_error_code methods.
      
      There is one single call to make_dynamic_error_code remaining, the one
      inside GenericError::convertToErrorCode().  That method is only called
      from File::doParse() which should be a temporary situation.  We need
      to work out how to deal with File::parse() caching the error result from
      doParse().  Caching errors isn't supported in the new scheme, and probably
      isn't needed here, but we need to work that out.
      
      Once thats done, dynamic error and all utilities around it can be deleted.
      
      llvm-svn: 264982
      eadf9e4e
    • Pete Cooper's avatar
      Convert lld file writing to llvm::Error. NFC. · fefbd228
      Pete Cooper authored
      This converts the writeFile method, as well as some of the ones it calls
      in the normalized binary file writer and yaml writer.
      
      llvm-svn: 264961
      fefbd228
    • Rui Ueyama's avatar
      Fix -Wpessimizing-move warnings. · 1e0f022f
      Rui Ueyama authored
      llvm-svn: 264951
      1e0f022f
  18. Mar 30, 2016
  19. Mar 28, 2016
    • Rui Ueyama's avatar
      Remove dead flags. · 46a8e295
      Rui Ueyama authored
      searchArchivesToOverrideTentativeDefinitions and
      searchSharedLibrariesToOverrideTentativeDefinitions are always false.
      For the dead flags, we have a fairly large amount of code which is
      never be executed.
      
      http://reviews.llvm.org/D17791
      
      llvm-svn: 264653
      46a8e295
  20. Mar 22, 2016
    • Pete Cooper's avatar
      Use owning pointers instead of raw pointers for Atom's to fix leaks. · 8ad55fb2
      Pete Cooper authored
      This is a re-commit of r264022 with a fix for MSVC.  The issue there was
      that the code was running DefinedAtom::~Atom() for some value and instead
      needed to cast to Atom before running ~Atom.  Original commit message follows.
      
      Currently each File contains an BumpPtrAllocator in which Atom's are
      allocated.  Some Atom's contain data structures like std::vector which
      leak as we don't run ~Atom when they are BumpPtrAllocate'd.
      
      Now each File actually owns its Atom's using an OwningAtomPtr.  This
      is analygous to std::unique_ptr and may be replaced by it if possible.
      
      An Atom can therefore only be owned by a single File, so the Resolver now
      moves them from one File to another.  The MachOLinkingContext owns the File's
      and so clears all the Atom's in ~MachOLinkingContext, then delete's all the
      File's.  This makes sure all Atom's have been destructed before any of the
      BumpPtrAllocator's in which they run have gone away.
      
      Should hopefully fix the remaining leaks.  Will keep an eye on the bots to
      make sure.
      
      llvm-svn: 264067
      8ad55fb2
    • Pete Cooper's avatar
      Revert "Use owning pointers instead of raw pointers for Atom's to fix leaks." · 3e4d732d
      Pete Cooper authored
      This reverts commit r264022.
      
      This breaks the Window's bots which don't like that i'm calling ~Atom when
      the this pointer is a sublcass of Atom.
      
      Reverting for now until I try find a better fix.  I tried using std::unique_ptr with
      a custom deleter as a quick fix, but it didn't work well in the YAML parser.
      
      llvm-svn: 264023
      3e4d732d
    • Pete Cooper's avatar
      Use owning pointers instead of raw pointers for Atom's to fix leaks. · 572a87e2
      Pete Cooper authored
      Currently each File contains an BumpPtrAllocator in which Atom's are
      allocated.  Some Atom's contain data structures like std::vector which
      leak as we don't run ~Atom when they are BumpPtrAllocate'd.
      
      Now each File actually owns its Atom's using an OwningAtomPtr.  This
      is analygous to std::unique_ptr and may be replaced by it if possible.
      
      An Atom can therefore only be owned by a single File, so the Resolver now
      moves them from one File to another.  The MachOLinkingContext owns the File's
      and so clears all the Atom's in ~MachOLinkingContext, then delete's all the
      File's.  This makes sure all Atom's have been destructed before any of the
      BumpPtrAllocator's in which they run have gone away.
      
      Should hopefully fix the remaining leaks.  Will keep an eye on the bots to
      make sure.
      
      llvm-svn: 264022
      572a87e2
  21. Mar 02, 2016
Loading