LLVM  8.0.1
Classes | Public Types | Public Member Functions | Static Public Member Functions | Friends | List of all members
llvm::orc::CompileOnDemandLayer Class Reference

#include "llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h"

Inheritance diagram for llvm::orc::CompileOnDemandLayer:
Inheritance graph
[legend]
Collaboration diagram for llvm::orc::CompileOnDemandLayer:
Collaboration graph
[legend]

Public Types

using IndirectStubsManagerBuilder = std::function< std::unique_ptr< IndirectStubsManager >()>
 Builder for IndirectStubsManagers. More...
 
using GlobalValueSet = std::set< const GlobalValue * >
 
using PartitionFunction = std::function< Optional< GlobalValueSet >(GlobalValueSet Requested)>
 Partitioning function. More...
 

Public Member Functions

 CompileOnDemandLayer (ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr, IndirectStubsManagerBuilder BuildIndirectStubsManager)
 Construct a CompileOnDemandLayer. More...
 
void setPartitionFunction (PartitionFunction Partition)
 Sets the partition function. More...
 
void emit (MaterializationResponsibility R, ThreadSafeModule TSM) override
 Emits the given module. More...
 
- Public Member Functions inherited from llvm::orc::IRLayer
 IRLayer (ExecutionSession &ES)
 
virtual ~IRLayer ()
 
ExecutionSessiongetExecutionSession ()
 Returns the ExecutionSession for this layer. More...
 
void setCloneToNewContextOnEmit (bool CloneToNewContextOnEmit)
 Sets the CloneToNewContextOnEmit flag (false by default). More...
 
bool getCloneToNewContextOnEmit () const
 Returns the current value of the CloneToNewContextOnEmit flag. More...
 
virtual Error add (JITDylib &JD, ThreadSafeModule TSM, VModuleKey K=VModuleKey())
 Adds a MaterializationUnit representing the given IR to the given JITDylib. More...
 

Static Public Member Functions

static Optional< GlobalValueSetcompileRequested (GlobalValueSet Requested)
 Off-the-shelf partitioning which compiles all requested symbols (usually a single function at a time). More...
 
static Optional< GlobalValueSetcompileWholeModule (GlobalValueSet Requested)
 Off-the-shelf partitioning which compiles whole modules whenever any symbol in them is requested. More...
 

Friends

class PartitioningIRMaterializationUnit
 

Detailed Description

Definition at line 65 of file CompileOnDemandLayer.h.

Member Typedef Documentation

◆ GlobalValueSet

Definition at line 73 of file CompileOnDemandLayer.h.

◆ IndirectStubsManagerBuilder

Builder for IndirectStubsManagers.

Definition at line 71 of file CompileOnDemandLayer.h.

◆ PartitionFunction

Partitioning function.

Definition at line 77 of file CompileOnDemandLayer.h.

Constructor & Destructor Documentation

◆ CompileOnDemandLayer()

llvm::orc::CompileOnDemandLayer::CompileOnDemandLayer ( ExecutionSession ES,
IRLayer BaseLayer,
LazyCallThroughManager LCTMgr,
IndirectStubsManagerBuilder  BuildIndirectStubsManager 
)

Construct a CompileOnDemandLayer.

Definition at line 111 of file CompileOnDemandLayer.cpp.

Member Function Documentation

◆ compileRequested()

Optional< CompileOnDemandLayer::GlobalValueSet > llvm::orc::CompileOnDemandLayer::compileRequested ( GlobalValueSet  Requested)
static

Off-the-shelf partitioning which compiles all requested symbols (usually a single function at a time).

Definition at line 102 of file CompileOnDemandLayer.cpp.

◆ compileWholeModule()

Optional< CompileOnDemandLayer::GlobalValueSet > llvm::orc::CompileOnDemandLayer::compileWholeModule ( GlobalValueSet  Requested)
static

Off-the-shelf partitioning which compiles whole modules whenever any symbol in them is requested.

Definition at line 107 of file CompileOnDemandLayer.cpp.

References llvm::None.

◆ emit()

void llvm::orc::CompileOnDemandLayer::emit ( MaterializationResponsibility  R,
ThreadSafeModule  TSM 
)
overridevirtual

Emits the given module.

This should not be called by clients: it will be called by the JIT when a definition added via the add method is requested.

Implements llvm::orc::IRLayer.

Definition at line 121 of file CompileOnDemandLayer.cpp.

References assert(), llvm::JITSymbolFlags::fromGlobalValue(), llvm::orc::IRLayer::getExecutionSession(), llvm::orc::ThreadSafeModule::getModule(), llvm::orc::MaterializationResponsibility::getTargetJITDylib(), and Name.

◆ setPartitionFunction()

void llvm::orc::CompileOnDemandLayer::setPartitionFunction ( PartitionFunction  Partition)

Sets the partition function.

Definition at line 117 of file CompileOnDemandLayer.cpp.

Friends And Related Function Documentation

◆ PartitioningIRMaterializationUnit

friend class PartitioningIRMaterializationUnit
friend

Definition at line 66 of file CompileOnDemandLayer.h.


The documentation for this class was generated from the following files: