Skip to content
  1. Sep 04, 2017
    • Lang Hames's avatar
      [ORC] Refactor OrcRemoteTarget code to expose its RPC API, reduce · 9e68b734
      Lang Hames authored
      code duplication in the client, and improve error propagation.
      
      This patch moves the OrcRemoteTarget rpc::Function declarations from
      OrcRemoteTargetRPCAPI into their own namespaces under llvm::orc::remote so that
      they can be used in new contexts (in particular, a remote-object-file adapter
      layer that I will commit shortly).
      
      Code duplication in OrcRemoteTargetClient (especially in loops processing the
      code, rw-data and ro-data allocations) is removed by moving the loop bodies
      into their own functions.
      
      Error propagation is (slightly) improved by adding an ErrorReporter functor to
      the OrcRemoteTargetClient -- Errors that can't be returned (because they occur
      in destructors, or behind stable APIs that don't provide error returns) can be
      sent to the ErrorReporter instead. Some methods in the Client API are also
      changed to make better use of the Expected class: returning Expected<T>s rather
      than returning Errors and taking T&s to store the results.
      
      llvm-svn: 312500
      9e68b734
  2. Aug 28, 2017
  3. Aug 11, 2017
  4. Aug 03, 2017
    • Rafael Espindola's avatar
      Delete Default and JITDefault code models · 79e238af
      Rafael Espindola authored
      IMHO it is an antipattern to have a enum value that is Default.
      
      At any given piece of code it is not clear if we have to handle
      Default or if has already been mapped to a concrete value. In this
      case in particular, only the target can do the mapping and it is nice
      to make sure it is always done.
      
      This deletes the two default enum values of CodeModel and uses an
      explicit Optional<CodeModel> when it is possible that it is
      unspecified.
      
      llvm-svn: 309911
      79e238af
  5. Jul 11, 2017
  6. Jul 07, 2017
    • Lang Hames's avatar
      [ORC] Errorize the ORC APIs. · 4ce98662
      Lang Hames authored
      This patch updates the ORC layers and utilities to return and propagate
      llvm::Errors where appropriate. This is necessary to allow ORC to safely handle
      error cases in cross-process and remote JITing.
      
      llvm-svn: 307350
      4ce98662
  7. Jul 04, 2017
    • Lang Hames's avatar
      [Orc] Remove the memory manager argument to addModule, and de-templatize the · 5b518160
      Lang Hames authored
      symbol resolver argument.
      
      De-templatizing the symbol resolver is part of the ongoing simplification of
      ORC layer API.
      
      Removing the memory management argument (and delegating construction of memory
      managers for RTDyldObjectLinkingLayer to a functor passed in to the constructor)
      allows us to build JITs whose base object layers need not be compatible with
      RTDyldObjectLinkingLayer's memory mangement scheme. For example, a 'remote
      object layer' that sends fully relocatable objects directly to the remote does
      not need a memory management scheme at all (that will be handled by the remote).
      
      llvm-svn: 307058
      5b518160
  8. Jun 24, 2017
  9. Jun 23, 2017
  10. Jun 22, 2017
  11. Jun 20, 2017
  12. May 09, 2017
    • Lang Hames's avatar
      [ExecutionEngine] Make RuntimeDyld::MemoryManager responsible for tracking EH · c936ac7f
      Lang Hames authored
      frames.
      
      RuntimeDyld was previously responsible for tracking allocated EH frames, but it
      makes more sense to have the RuntimeDyld::MemoryManager track them (since the
      frames are allocated through the memory manager, and written to memory owned by
      the memory manager). This patch moves the frame tracking into
      RTDyldMemoryManager, and changes the deregisterFrames method on
      RuntimeDyld::MemoryManager from:
      
      void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size);
      
      to:
      
      void deregisterEHFrames();
      
      Separating this responsibility will allow ORC to continue to throw the
      RuntimeDyld instances away post-link (saving a few dozen bytes per lazy
      function) while properly deregistering frames when modules are unloaded.
      
      This patch also updates ORC to call deregisterEHFrames when modules are
      unloaded. This fixes a bug where an exception that tears down the JIT can then
      unwind through dangling EH frames that have been deallocated but not
      deregistered, resulting in UB.
      
      For people using SectionMemoryManager this should be pretty much a no-op. For
      people with custom allocators that override registerEHFrames/deregisterEHFrames,
      you will now be responsible for tracking allocated EH frames.
      
      Reviewed in https://reviews.llvm.org/D32829
      
      llvm-svn: 302589
      c936ac7f
  13. Apr 11, 2017
  14. Apr 06, 2017
  15. Feb 20, 2017
    • Lang Hames's avatar
      [Orc] Rename ObjectLinkingLayer -> RTDyldObjectLinkingLayer. · 67de5d24
      Lang Hames authored
      The current ObjectLinkingLayer (now RTDyldObjectLinkingLayer) links objects
      in-process using MCJIT's RuntimeDyld class. In the near future I hope to add new
      object linking layers (e.g. a remote linking layer that links objects in the JIT
      target process, rather than the client), so I'm renaming this class to be more
      descriptive.
      
      llvm-svn: 295636
      67de5d24
  16. Dec 08, 2016
  17. Nov 20, 2016
  18. Nov 19, 2016
    • Chris Bieneman's avatar
      [CMake] lli-child-target depends on intrinsics gen · d7f71b51
      Chris Bieneman authored
      Messed up in r287420, it isn't just lli, but also but lli-child-target that need to depend on intrinsics_gen.
      
      llvm-svn: 287421
      d7f71b51
    • Chris Bieneman's avatar
      [CMake] lli depends on intrinsics_gen · 3bd0191c
      Chris Bieneman authored
      ChildTarget.cpp has the following include chain:
      
      llvm/ExecutionEngine/Orc/OrcABISupport.h
      llvm/ExecutionEngine/Orc/IndirectionUtils.h
      llvm/IR/IRBuilder.h
      llvm/IR/ConstantFolder.h
      llvm/IR/InstrTypes.h
      llvm/IR/Attributes.h
      llvm/IR/Attributes.gen
      
      This means lli needs to depend on intrinsics_gen.
      
      llvm-svn: 287420
      3bd0191c
  19. Nov 17, 2016
  20. Nov 11, 2016
    • Lang Hames's avatar
      [ORC] Re-apply 286620 with fixes for the ErrorSuccess class. · 1f2bf2d3
      Lang Hames authored
      llvm-svn: 286639
      1f2bf2d3
    • Lang Hames's avatar
      [ORC] Revert r286620 while I investigate a bot failure. · 4f734f25
      Lang Hames authored
      llvm-svn: 286621
      4f734f25
    • Lang Hames's avatar
      [ORC] Refactor the ORC RPC utilities to add some new features. · ae1fdddb
      Lang Hames authored
      (1) Add support for function key negotiation.
      
      The previous version of the RPC required both sides to maintain the same
      enumeration for functions in the API. This means that any version skew between
      the client and server would result in communication failure.
      
      With this version of the patch functions (and serializable types) are defined
      with string names, and the derived function signature strings are used to
      negotiate the actual function keys (which are used for efficient call
      serialization). This allows clients to connect to any server that supports a
      superset of the API (based on the function signatures it supports).
      
      (2) Add a callAsync primitive.
      
      The callAsync primitive can be used to install a return value handler that will
      run as soon as the RPC function's return value is sent back from the remote.
      
      (3) Launch policies for RPC function handlers.
      
      The new addHandler method, which installs handlers for RPC functions, takes two
      arguments: (1) the handler itself, and (2) an optional "launch policy". When the
      RPC function is called, the launch policy (if present) is invoked to actually
      launch the handler. This allows the handler to be spawned on a background
      thread, or added to a work list. If no launch policy is used, the handler is run
      on the server thread itself. This should only be used for short-running
      handlers, or entirely synchronous RPC APIs.
      
      (4) Zero cost cross type serialization.
      
      You can now define serialization from any type to a different "wire" type. For
      example, this allows you to call an RPC function that's defined to take a
      std::string while passing a StringRef argument. If a serializer from StringRef
      to std::string has been defined for the channel type this will be used to
      serialize the argument without having to construct a std::string instance.
      
      This allows buffer reference types to be used as arguments to RPC calls without
      requiring a copy of the buffer to be made.
      
      llvm-svn: 286620
      ae1fdddb
    • Teresa Johnson's avatar
      Split Bitcode/ReaderWriter.h into separate reader and writer headers · ad17679a
      Teresa Johnson authored
      Summary:
      Split ReaderWriter.h which contains the APIs into both the BitReader and
      BitWriter libraries into BitcodeReader.h and BitcodeWriter.h.
      
      This is to address Chandler's concern about sharing the same API header
      between multiple libraries (BitReader and BitWriter). That concern is
      why we create a single bitcode library in our downstream build of clang,
      which led to r286297 being reverted as it added a dependency that
      created a cycle only when there is a single bitcode library (not two as
      in upstream).
      
      Reviewers: mehdi_amini
      
      Subscribers: dlj, mehdi_amini, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D26502
      
      llvm-svn: 286566
      ad17679a
  21. Nov 09, 2016
  22. Nov 02, 2016
  23. Oct 31, 2016
  24. Oct 28, 2016
  25. Oct 08, 2016
  26. Sep 11, 2016
  27. Sep 04, 2016
  28. Aug 29, 2016
    • Lang Hames's avatar
      [Orc] Simplify LogicalDylib and move it back inside CompileOnDemandLayer. Also · 6b21751b
      Lang Hames authored
      switch to using one indirect stub manager per logical dylib rather than one per
      input module.
      
      LogicalDylib is a helper class used by the CompileOnDemandLayer to manage
      symbol resolution between modules during lazy compilation. In particular, it
      ensures that internal symbols resolve correctly even in the case where multiple
      input modules contain the same internal symbol name (which must to be promoted
      to external hidden linkage so that functions in any given module can be split
      out by lazy compilation). LogicalDylib's resolution scheme (before this commit)
      required one stub-manager per input module. This made recompilation of functions
      (by adding a module containing a new definition) difficult, as the stub manager
      for any given symbol was bound to the module that supplied the original
      definition. By using one stubs manager for the whole logical dylib symbols can
      be more easily replaced, although support for doing this is not included in this
      patch (it will be implemented in a follow up).
      
      llvm-svn: 279952
      6b21751b
  29. Aug 07, 2016
  30. Aug 06, 2016
    • Nico Weber's avatar
      Revert r277896. · c893e603
      Nico Weber authored
      It breaks ExecutionEngine/OrcLazy/weak-function.ll on most bots.
      
      Script:
      --
      ...
      --
      Exit Code: 1
      
      Command Output (stderr):
      --
      Could not find main function.
      
      llvm-svn: 277907
      c893e603
Loading