1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/examples/OrcV2Examples
Lang Hames 242ff9475f [ORC] Break up C-API header Orc.h, and add JITEventListener support.
This patch breaks Orc.h up into Orc.h, LLJIT.h and OrcEE.h.

Orc.h contain core Orc utilities.
LLJIT.h contains LLJIT specific types and functions.
OrcEE.h contains types and functions that depend on ExecutionEngine.

The intent is that these headers should match future library divisions: Clients
who only use Orc.h should only need to link againt the Orc core libraries,
clients using LLJIT.h will also need to link against LLVM core, and clients
using OrcEE.h will also have to link against ExecutionEngine.

In addition to breaking up the Orc.h header this patch introduces functions to:
(1) Set the object linking layer creation function on LLJITBuilder.
(2) Create an RTDyldObjectLinkingLayer instance (particularly for use in (1)).
(3) Register JITEventListeners with an RTDyldObjectLinkingLayer.

Together (1), (2) and (3) can be used to force use of RTDyldObjectLinkingLayer
as the underlying JIT linker for LLJIT, rather than the platform default, and
to register event listeners with the RTDyldObjectLinkingLayer.
2020-10-19 01:59:04 -07:00
..
LLJITDumpObjects
LLJITWithCustomObjectLinkingLayer
LLJITWithGDBRegistrationListener [examples] Call setProcessAllSections to ensure debug sections aren't droppped. 2020-05-01 11:06:41 -07:00
LLJITWithInitializers [ORC] Add basic ResourceTracker support to the OrcV2 C Bindings. 2020-10-19 01:59:04 -07:00
LLJITWithLazyReexports [examples] Fix an incomplete comment. 2020-05-01 11:06:41 -07:00
LLJITWithObjectCache
LLJITWithObjectLinkingLayerPlugin [ORC] Add support for resource tracking/removal (removable code). 2020-10-18 21:02:54 -07:00
LLJITWithOptimizingIRTransform [ORC][examples] Add missing library dependencies. 2020-09-22 16:18:00 -07:00
LLJITWithTargetProcessControl [ORC] Enable use of TargetProcessControl::getMemMgr with ObjectLinkingLayer. 2020-07-23 16:18:57 -07:00
LLJITWithThinLTOSummaries [examples] Fix dependencies for OrcV2Examples/LLJITWithThinLTOSummaries. 2020-08-25 11:51:20 -07:00
OrcV2CBindingsAddObjectFile [ORC] Break up C-API header Orc.h, and add JITEventListener support. 2020-10-19 01:59:04 -07:00
OrcV2CBindingsBasicUsage [ORC] Break up C-API header Orc.h, and add JITEventListener support. 2020-10-19 01:59:04 -07:00
OrcV2CBindingsReflectProcessSymbols [ORC] Break up C-API header Orc.h, and add JITEventListener support. 2020-10-19 01:59:04 -07:00
OrcV2CBindingsRemovableCode [ORC] Break up C-API header Orc.h, and add JITEventListener support. 2020-10-19 01:59:04 -07:00
CMakeLists.txt [ORC] Add an OrcV2 ResourceTracker / Removable-code example. 2020-10-19 01:59:04 -07:00
ExampleModules.h Fix implicit dependency on CommandLine.h 2020-07-23 12:15:17 +01:00