MLIR  19.0.0git
Macros | Functions
ExecutionEngine.h File Reference
#include "mlir-c/IR.h"
#include "mlir-c/Support.h"

Go to the source code of this file.

Macros

#define DEFINE_C_API_STRUCT(name, storage)
 

Functions

 DEFINE_C_API_STRUCT (MlirExecutionEngine, void)
 
MLIR_CAPI_EXPORTED MlirExecutionEngine mlirExecutionEngineCreate (MlirModule op, int optLevel, int numPaths, const MlirStringRef *sharedLibPaths, bool enableObjectDump)
 Creates an ExecutionEngine for the provided ModuleOp. More...
 
MLIR_CAPI_EXPORTED void mlirExecutionEngineDestroy (MlirExecutionEngine jit)
 Destroy an ExecutionEngine instance. More...
 
static bool mlirExecutionEngineIsNull (MlirExecutionEngine jit)
 Checks whether an execution engine is null. More...
 
MLIR_CAPI_EXPORTED MlirLogicalResult mlirExecutionEngineInvokePacked (MlirExecutionEngine jit, MlirStringRef name, void **arguments)
 Invoke a native function in the execution engine by name with the arguments and result of the invoked function passed as an array of pointers. More...
 
MLIR_CAPI_EXPORTED void * mlirExecutionEngineLookupPacked (MlirExecutionEngine jit, MlirStringRef name)
 Lookup the wrapper of the native function in the execution engine with the given name, returns nullptr if the function can't be looked-up. More...
 
MLIR_CAPI_EXPORTED void * mlirExecutionEngineLookup (MlirExecutionEngine jit, MlirStringRef name)
 Lookup a native function in the execution engine by name, returns nullptr if the name can't be looked-up. More...
 
MLIR_CAPI_EXPORTED void mlirExecutionEngineRegisterSymbol (MlirExecutionEngine jit, MlirStringRef name, void *sym)
 Register a symbol with the jit: this symbol will be accessible to the jitted code. More...
 
MLIR_CAPI_EXPORTED void mlirExecutionEngineDumpToObjectFile (MlirExecutionEngine jit, MlirStringRef fileName)
 Dump as an object in fileName. More...
 

Macro Definition Documentation

◆ DEFINE_C_API_STRUCT

#define DEFINE_C_API_STRUCT (   name,
  storage 
)
Value:
struct name { \
storage *ptr; \
}; \
typedef struct name name

Definition at line 25 of file ExecutionEngine.h.

Function Documentation

◆ DEFINE_C_API_STRUCT()

DEFINE_C_API_STRUCT ( MlirExecutionEngine  ,
void   
)

◆ mlirExecutionEngineCreate()

MLIR_CAPI_EXPORTED MlirExecutionEngine mlirExecutionEngineCreate ( MlirModule  op,
int  optLevel,
int  numPaths,
const MlirStringRef sharedLibPaths,
bool  enableObjectDump 
)

Creates an ExecutionEngine for the provided ModuleOp.

The ModuleOp is expected to be "translatable" to LLVM IR (only contains operations in dialects that implement the LLVMTranslationDialectInterface). The module ownership stays with the client and can be destroyed as soon as the call returns. optLevel is the optimization level to be used for transformation and code generation. LLVM passes at optLevel are run before code generation. The number and array of paths corresponding to shared libraries that will be loaded are specified via numPaths and sharedLibPaths respectively. TODO: figure out other options.

Definition at line 23 of file ExecutionEngine.cpp.

Referenced by PYBIND11_MODULE().

◆ mlirExecutionEngineDestroy()

MLIR_CAPI_EXPORTED void mlirExecutionEngineDestroy ( MlirExecutionEngine  jit)

Destroy an ExecutionEngine instance.

Definition at line 71 of file ExecutionEngine.cpp.

References unwrap().

◆ mlirExecutionEngineDumpToObjectFile()

MLIR_CAPI_EXPORTED void mlirExecutionEngineDumpToObjectFile ( MlirExecutionEngine  jit,
MlirStringRef  fileName 
)

Dump as an object in fileName.

Definition at line 114 of file ExecutionEngine.cpp.

References unwrap().

Referenced by PYBIND11_MODULE().

◆ mlirExecutionEngineInvokePacked()

MLIR_CAPI_EXPORTED MlirLogicalResult mlirExecutionEngineInvokePacked ( MlirExecutionEngine  jit,
MlirStringRef  name,
void **  arguments 
)

Invoke a native function in the execution engine by name with the arguments and result of the invoked function passed as an array of pointers.

The function must have been tagged with the llvm.emit_c_interface attribute. Returns a failure if the execution fails for any reason (the function name can't be resolved for instance).

Definition at line 76 of file ExecutionEngine.cpp.

References mlir::failure(), mlir::success(), unwrap(), and wrap().

◆ mlirExecutionEngineIsNull()

static bool mlirExecutionEngineIsNull ( MlirExecutionEngine  jit)
inlinestatic

Checks whether an execution engine is null.

Definition at line 53 of file ExecutionEngine.h.

Referenced by PYBIND11_MODULE().

◆ mlirExecutionEngineLookup()

MLIR_CAPI_EXPORTED void* mlirExecutionEngineLookup ( MlirExecutionEngine  jit,
MlirStringRef  name 
)

Lookup a native function in the execution engine by name, returns nullptr if the name can't be looked-up.

Definition at line 94 of file ExecutionEngine.cpp.

References unwrap().

◆ mlirExecutionEngineLookupPacked()

MLIR_CAPI_EXPORTED void* mlirExecutionEngineLookupPacked ( MlirExecutionEngine  jit,
MlirStringRef  name 
)

Lookup the wrapper of the native function in the execution engine with the given name, returns nullptr if the function can't be looked-up.

Definition at line 86 of file ExecutionEngine.cpp.

References unwrap().

Referenced by PYBIND11_MODULE().

◆ mlirExecutionEngineRegisterSymbol()

MLIR_CAPI_EXPORTED void mlirExecutionEngineRegisterSymbol ( MlirExecutionEngine  jit,
MlirStringRef  name,
void *  sym 
)

Register a symbol with the jit: this symbol will be accessible to the jitted code.

Definition at line 102 of file ExecutionEngine.cpp.

References unwrap().

Referenced by PYBIND11_MODULE().