Skip to content
  1. Jun 03, 2015
  2. May 29, 2015
    • Benjamin Kramer's avatar
      Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types · f5e2fc47
      Benjamin Kramer authored
      If the type isn't trivially moveable emplace can skip a potentially
      expensive move. It also saves a couple of characters.
      
      
      Call sites were found with the ASTMatcher + some semi-automated cleanup.
      
      memberCallExpr(
          argumentCountIs(1), callee(methodDecl(hasName("push_back"))),
          on(hasType(recordDecl(has(namedDecl(hasName("emplace_back")))))),
          hasArgument(0, bindTemporaryExpr(
                             hasType(recordDecl(hasNonTrivialDestructor())),
                             has(constructExpr()))),
          unless(isInTemplateInstantiation()))
      
      No functional change intended.
      
      llvm-svn: 238602
      f5e2fc47
  3. May 12, 2015
    • Eric Christopher's avatar
      Migrate existing backends that care about software floating point · 824f42f2
      Eric Christopher authored
      to use the information in the module rather than TargetOptions.
      
      We've had and clang has used the use-soft-float attribute for some
      time now so have the backends set a subtarget feature based on
      a particular function now that subtargets are created based on
      functions and function attributes.
      
      For the one middle end soft float check go ahead and create
      an overloadable TargetLowering::useSoftFloat function that
      just checks the TargetSubtargetInfo in all cases.
      
      Also remove the command line option that hard codes whether or
      not soft-float is set by using the attribute for all of the
      target specific test cases - for the generic just go ahead and
      add the attribute in the one case that showed up.
      
      llvm-svn: 237079
      824f42f2
  4. May 05, 2015
  5. May 01, 2015
  6. Apr 19, 2015
  7. Apr 17, 2015
  8. Apr 15, 2015
  9. Apr 14, 2015
  10. Apr 11, 2015
  11. Apr 02, 2015
  12. Apr 01, 2015
  13. Mar 30, 2015
    • Lang Hames's avatar
      [Orc] Separate callback manager selection from callback manager construction for · 3c9e20de
      Lang Hames authored
      OrcLazyJIT in lli.
      
      Separating these concerns enables more natural error handling.
      
      llvm-svn: 233579
      3c9e20de
    • Lang Hames's avatar
      [MCJIT][Orc] Refactor RTDyldMemoryManager, weave RuntimeDyld::SymbolInfo through · 633fe146
      Lang Hames authored
      MCJIT.
      
      This patch decouples the two responsibilities of the RTDyldMemoryManager class,
      memory management and symbol resolution, into two new classes:
      RuntimeDyld::MemoryManager and RuntimeDyld::SymbolResolver.
      
      The symbol resolution interface is modified slightly, from:
      
        uint64_t getSymbolAddress(const std::string &Name);
      
      to:
      
        RuntimeDyld::SymbolInfo findSymbol(const std::string &Name);
      
      The latter passes symbol flags along with symbol addresses, allowing RuntimeDyld
      and others to reason about non-strong/non-exported symbols.
      
      
      The memory management interface removes the following method:
      
        void notifyObjectLoaded(ExecutionEngine *EE,
                                const object::ObjectFile &) {}
      
      as it is not related to memory management. (Note: Backwards compatibility *is*
      maintained for this method in MCJIT and OrcMCJITReplacement, see below).
      
      
      The RTDyldMemoryManager class remains in-tree for backwards compatibility.
      It inherits directly from RuntimeDyld::SymbolResolver, and indirectly from
      RuntimeDyld::MemoryManager via the new MCJITMemoryManager class, which
      just subclasses RuntimeDyld::MemoryManager and reintroduces the
      notifyObjectLoaded method for backwards compatibility).
      
      The EngineBuilder class retains the existing method:
      
        EngineBuilder&
        setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager> mcjmm);
      
      and includes two new methods:
      
        EngineBuilder&
        setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM);
      
        EngineBuilder&
        setSymbolResolver(std::unique_ptr<RuntimeDyld::SymbolResolver> SR);
      
      Clients should use EITHER:
      
      A single call to setMCJITMemoryManager with an RTDyldMemoryManager.
      
      OR (exclusive)
      
      One call each to each of setMemoryManager and setSymbolResolver.
      
      This patch should be fully compatible with existing uses of RTDyldMemoryManager.
      If it is not it should be considered a bug, and the patch either fixed or
      reverted.
      
      If clients find the new API to be an improvement the goal will be to deprecate
      and eventually remove the RTDyldMemoryManager class in favor of the new classes.
      
      llvm-svn: 233509
      633fe146
  14. Mar 25, 2015
    • Lang Hames's avatar
      [Orc] Remove another unnecessary typedef. · d57308f2
      Lang Hames authored
      llvm-svn: 233184
      d57308f2
    • Lang Hames's avatar
      [Orc][lli] Add a very simple Orc-based lazy JIT to lli. · 9528bbaa
      Lang Hames authored
      This ensures that we're building and testing the CompileOnDemand layer, at least
      in a basic way.
      
      Currently x86-64 only, and with limited to no library calls enabled (depending
      on host platform). Patches welcome. ;)
      
      To enable access to the lazy JIT, this patch replaces the '-use-orcmcjit' lli
      option with a new option:
      '-jit-kind={ mcjit | orc-mcjit | orc-lazy }'.
      
      All regression tests are updated to use the new option, and one trivial test of
      the new lazy JIT is added.
      
      llvm-svn: 233182
      9528bbaa
  15. Mar 23, 2015
  16. Mar 18, 2015
    • Rafael Espindola's avatar
      Fix cmake build. · 5a28f436
      Rafael Espindola authored
      llvm-svn: 232663
      5a28f436
    • Reid Kleckner's avatar
      CMake: Disable ENABLE_EXPORTS for executables with MSVC · 3e8c445c
      Reid Kleckner authored
      The MSVC linker won't produce a .lib file for an executable that doesn't
      export anything, and LLVM doesn't maintain dllexport annotations or .def
      files listing all C++ symbols. It also doesn't support exporting all
      symbols, like binutils ld.
      
      CMake 3.2 changed the Ninja generator to list both the .exe and .lib
      files as outputs of executable build targets. Ninja would always re-link
      executables with ENABLE_EXPORTS because the .lib output file was not
      present, and therefore the target was out of date.
      
      llvm-svn: 232662
      3e8c445c
  17. Feb 26, 2015
  18. Feb 16, 2015
  19. Jan 30, 2015
  20. Jan 24, 2015
  21. Jan 23, 2015
    • Lang Hames's avatar
      [Orc] New JIT APIs. · 93de2a12
      Lang Hames authored
      This patch adds a new set of JIT APIs to LLVM. The aim of these new APIs is to
      cleanly support a wider range of JIT use cases in LLVM, and encourage the
      development and contribution of re-usable infrastructure for LLVM JIT use-cases.
      
      These APIs are intended to live alongside the MCJIT APIs, and should not affect
      existing clients.
      
      Included in this patch:
      
      1) New headers in include/llvm/ExecutionEngine/Orc that provide a set of
         components for building JIT infrastructure.
         Implementation code for these headers lives in lib/ExecutionEngine/Orc.
      
      2) A prototype re-implementation of MCJIT (OrcMCJITReplacement) built out of the
         new components.
      
      3) Minor changes to RTDyldMemoryManager needed to support the new components.
         These changes should not impact existing clients.
      
      4) A new flag for lli, -use-orcmcjit, which will cause lli to use the
         OrcMCJITReplacement class as its underlying execution engine, rather than
         MCJIT itself.
      
      Tests to follow shortly.
      
      Special thanks to Michael Ilseman, Pete Cooper, David Blaikie, Eric Christopher,
      Justin Bogner, and Jim Grosbach for extensive feedback and discussion.
      
      llvm-svn: 226940
      93de2a12
  22. Jan 22, 2015
    • Chris Bieneman's avatar
      Assigning and copying command line option objects shouldn't be allowed. · e71fb5ce
      Chris Bieneman authored
      Summary:
      The default copy and assignment operators for these objects probably don't actually do what the clients intend, so they should be deleted.
      
      Places using the assignment operator to set the value of an option should cast to the option's data type first to call into the override for operator=. Places using the copy constructor just need to be changed to not copy (i.e. passing by const reference instead of value).
      
      Reviewers: dexonsmith, chandlerc
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D7114
      
      llvm-svn: 226762
      e71fb5ce
  23. Dec 12, 2014
  24. Dec 03, 2014
  25. Nov 29, 2014
  26. Nov 26, 2014
  27. Sep 23, 2014
Loading