MLIR
20.0.0git
|
Information about the plugin required to load its passes. More...
#include "mlir/Tools/Plugins/PassPlugin.h"
Public Attributes | |
uint32_t | apiVersion |
The API version understood by this plugin, usually MLIR_PLUGIN_API_VERSION . More... | |
const char * | pluginName |
A meaningful name of the plugin. More... | |
const char * | pluginVersion |
The version of the plugin. More... | |
void(* | registerPassRegistryCallbacks )() |
The callback for registering plugin passes. More... | |
Information about the plugin required to load its passes.
This struct defines the core interface for pass plugins and is supposed to be filled out by plugin implementors. LLVM-side users of a plugin are expected to use the PassPlugin
class below to interface with it.
Definition at line 40 of file PassPlugin.h.
uint32_t mlir::PassPluginLibraryInfo::apiVersion |
The API version understood by this plugin, usually MLIR_PLUGIN_API_VERSION
.
Definition at line 43 of file PassPlugin.h.
Referenced by mlir::PassPlugin::getAPIVersion().
const char* mlir::PassPluginLibraryInfo::pluginName |
A meaningful name of the plugin.
Definition at line 45 of file PassPlugin.h.
Referenced by mlir::PassPlugin::getPluginName().
const char* mlir::PassPluginLibraryInfo::pluginVersion |
The version of the plugin.
Definition at line 47 of file PassPlugin.h.
Referenced by mlir::PassPlugin::getPluginVersion().
void(* mlir::PassPluginLibraryInfo::registerPassRegistryCallbacks) () |
The callback for registering plugin passes.
Definition at line 50 of file PassPlugin.h.
Referenced by mlir::PassPlugin::registerPassRegistryCallbacks().