LLVM 19.0.0git
Public Member Functions | List of all members
llvm::EngineBuilder Class Reference

Builder class for ExecutionEngines. More...

#include "llvm/ExecutionEngine/ExecutionEngine.h"

Public Member Functions

 EngineBuilder ()
 Default constructor for EngineBuilder.
 
 EngineBuilder (std::unique_ptr< Module > M)
 Constructor for EngineBuilder.
 
 ~EngineBuilder ()
 
EngineBuildersetEngineKind (EngineKind::Kind w)
 setEngineKind - Controls whether the user wants the interpreter, the JIT, or whichever engine works.
 
EngineBuildersetMCJITMemoryManager (std::unique_ptr< RTDyldMemoryManager > mcjmm)
 setMCJITMemoryManager - Sets the MCJIT memory manager to use.
 
EngineBuildersetMemoryManager (std::unique_ptr< MCJITMemoryManager > MM)
 
EngineBuildersetSymbolResolver (std::unique_ptr< LegacyJITSymbolResolver > SR)
 
EngineBuildersetErrorStr (std::string *e)
 setErrorStr - Set the error string to write to on error.
 
EngineBuildersetOptLevel (CodeGenOptLevel l)
 setOptLevel - Set the optimization level for the JIT.
 
EngineBuildersetTargetOptions (const TargetOptions &Opts)
 setTargetOptions - Set the target options that the ExecutionEngine target is using.
 
EngineBuildersetRelocationModel (Reloc::Model RM)
 setRelocationModel - Set the relocation model that the ExecutionEngine target is using.
 
EngineBuildersetCodeModel (CodeModel::Model M)
 setCodeModel - Set the CodeModel that the ExecutionEngine target data is using.
 
EngineBuildersetMArch (StringRef march)
 setMArch - Override the architecture set by the Module's triple.
 
EngineBuildersetMCPU (StringRef mcpu)
 setMCPU - Target a specific cpu type.
 
EngineBuildersetVerifyModules (bool Verify)
 setVerifyModules - Set whether the JIT implementation should verify IR modules during compilation.
 
template<typename StringSequence >
EngineBuildersetMAttrs (const StringSequence &mattrs)
 setMAttrs - Set cpu-specific attributes.
 
void setEmulatedTLS (bool EmulatedTLS)
 
TargetMachineselectTarget ()
 
TargetMachineselectTarget (const Triple &TargetTriple, StringRef MArch, StringRef MCPU, const SmallVectorImpl< std::string > &MAttrs)
 selectTarget - Pick a target either via -march or by guessing the native arch.
 
ExecutionEnginecreate ()
 
ExecutionEnginecreate (TargetMachine *TM)
 

Detailed Description

Builder class for ExecutionEngines.

Use this by stack-allocating a builder, chaining the various set* methods, and terminating it with a .create() call.

Definition at line 534 of file ExecutionEngine.h.

Constructor & Destructor Documentation

◆ EngineBuilder() [1/2]

EngineBuilder::EngineBuilder ( )

Default constructor for EngineBuilder.

Definition at line 470 of file ExecutionEngine.cpp.

◆ EngineBuilder() [2/2]

EngineBuilder::EngineBuilder ( std::unique_ptr< Module M)

Constructor for EngineBuilder.

Definition at line 472 of file ExecutionEngine.cpp.

◆ ~EngineBuilder()

EngineBuilder::~EngineBuilder ( )
default

Member Function Documentation

◆ create() [1/2]

ExecutionEngine * llvm::EngineBuilder::create ( )
inline

◆ create() [2/2]

ExecutionEngine * EngineBuilder::create ( TargetMachine TM)

◆ selectTarget() [1/2]

TargetMachine * EngineBuilder::selectTarget ( )

Definition at line 26 of file TargetSelect.cpp.

References llvm::EngineKind::Interpreter, and selectTarget().

Referenced by create(), and selectTarget().

◆ selectTarget() [2/2]

TargetMachine * EngineBuilder::selectTarget ( const Triple TargetTriple,
StringRef  MArch,
StringRef  MCPU,
const SmallVectorImpl< std::string > &  MAttrs 
)

◆ setCodeModel()

EngineBuilder & llvm::EngineBuilder::setCodeModel ( CodeModel::Model  M)
inline

setCodeModel - Set the CodeModel that the ExecutionEngine target data is using.

Defaults to target specific default "CodeModel::JITDefault".

Definition at line 612 of file ExecutionEngine.h.

Referenced by LLVMCreateMCJITCompilerForModule().

◆ setEmulatedTLS()

void llvm::EngineBuilder::setEmulatedTLS ( bool  EmulatedTLS)
inline

Definition at line 644 of file ExecutionEngine.h.

◆ setEngineKind()

EngineBuilder & llvm::EngineBuilder::setEngineKind ( EngineKind::Kind  w)
inline

setEngineKind - Controls whether the user wants the interpreter, the JIT, or whichever engine works.

This option defaults to EngineKind::Either.

Definition at line 563 of file ExecutionEngine.h.

Referenced by LLVMCreateExecutionEngineForModule(), LLVMCreateInterpreterForModule(), LLVMCreateJITCompilerForModule(), and LLVMCreateMCJITCompilerForModule().

◆ setErrorStr()

EngineBuilder & llvm::EngineBuilder::setErrorStr ( std::string *  e)
inline

setErrorStr - Set the error string to write to on error.

This option defaults to NULL.

Definition at line 583 of file ExecutionEngine.h.

Referenced by LLVMCreateExecutionEngineForModule(), LLVMCreateInterpreterForModule(), LLVMCreateJITCompilerForModule(), and LLVMCreateMCJITCompilerForModule().

◆ setMArch()

EngineBuilder & llvm::EngineBuilder::setMArch ( StringRef  march)
inline

setMArch - Override the architecture set by the Module's triple.

Definition at line 618 of file ExecutionEngine.h.

References llvm::StringRef::begin(), and llvm::StringRef::end().

◆ setMAttrs()

template<typename StringSequence >
EngineBuilder & llvm::EngineBuilder::setMAttrs ( const StringSequence &  mattrs)
inline

setMAttrs - Set cpu-specific attributes.

Definition at line 638 of file ExecutionEngine.h.

References llvm::SmallVectorImpl< T >::append(), and llvm::SmallVectorImpl< T >::clear().

◆ setMCJITMemoryManager()

EngineBuilder & EngineBuilder::setMCJITMemoryManager ( std::unique_ptr< RTDyldMemoryManager mcjmm)

setMCJITMemoryManager - Sets the MCJIT memory manager to use.

This allows clients to customize their memory allocation policies for the MCJIT. This is only appropriate for the MCJIT; setting this and configuring the builder to create anything other than MCJIT will cause a runtime error. If create() is called and is successful, the created engine takes ownership of the memory manager. This option defaults to NULL.

Definition at line 486 of file ExecutionEngine.cpp.

Referenced by LLVMCreateMCJITCompilerForModule().

◆ setMCPU()

EngineBuilder & llvm::EngineBuilder::setMCPU ( StringRef  mcpu)
inline

setMCPU - Target a specific cpu type.

Definition at line 624 of file ExecutionEngine.h.

References llvm::StringRef::begin(), and llvm::StringRef::end().

◆ setMemoryManager()

EngineBuilder & EngineBuilder::setMemoryManager ( std::unique_ptr< MCJITMemoryManager MM)

Definition at line 495 of file ExecutionEngine.cpp.

◆ setOptLevel()

EngineBuilder & llvm::EngineBuilder::setOptLevel ( CodeGenOptLevel  l)
inline

setOptLevel - Set the optimization level for the JIT.

This option defaults to CodeGenOptLevel::Default.

Definition at line 590 of file ExecutionEngine.h.

Referenced by LLVMCreateJITCompilerForModule(), and LLVMCreateMCJITCompilerForModule().

◆ setRelocationModel()

EngineBuilder & llvm::EngineBuilder::setRelocationModel ( Reloc::Model  RM)
inline

setRelocationModel - Set the relocation model that the ExecutionEngine target is using.

Defaults to target specific default "Reloc::Default".

Definition at line 604 of file ExecutionEngine.h.

◆ setSymbolResolver()

EngineBuilder & EngineBuilder::setSymbolResolver ( std::unique_ptr< LegacyJITSymbolResolver SR)

Definition at line 501 of file ExecutionEngine.cpp.

◆ setTargetOptions()

EngineBuilder & llvm::EngineBuilder::setTargetOptions ( const TargetOptions Opts)
inline

setTargetOptions - Set the target options that the ExecutionEngine target is using.

Defaults to TargetOptions().

Definition at line 597 of file ExecutionEngine.h.

References Options.

Referenced by LLVMCreateMCJITCompilerForModule().

◆ setVerifyModules()

EngineBuilder & llvm::EngineBuilder::setVerifyModules ( bool  Verify)
inline

setVerifyModules - Set whether the JIT implementation should verify IR modules during compilation.

Definition at line 631 of file ExecutionEngine.h.

References Verify.


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