|
MLIR 22.0.0git
|
Public Types | |
| using | Base = GpuNVVMAttachTargetBase |
Public Member Functions | |
| GpuNVVMAttachTargetBase () | |
| GpuNVVMAttachTargetBase (const GpuNVVMAttachTargetBase &other) | |
| GpuNVVMAttachTargetBase & | operator= (const GpuNVVMAttachTargetBase &)=delete |
| GpuNVVMAttachTargetBase (GpuNVVMAttachTargetBase &&)=delete | |
| GpuNVVMAttachTargetBase & | operator= (GpuNVVMAttachTargetBase &&)=delete |
| ~GpuNVVMAttachTargetBase ()=default | |
| ::llvm::StringRef | getArgument () const override |
| Return the command line argument used when registering this pass. | |
| ::llvm::StringRef | getDescription () const override |
| Return the command line description used when registering this pass. | |
| ::llvm::StringRef | getName () const override |
| Returns the derived pass name. | |
| std::unique_ptr<::mlir::Pass > | clonePass () const override |
| A clone method to create a copy of this pass. | |
| void | getDependentDialects (::mlir::DialectRegistry ®istry) const override |
| Return the dialect that must be loaded in the context before this pass. | |
| GpuNVVMAttachTargetBase (GpuNVVMAttachTargetOptions options) | |
| Explicitly declare the TypeID for this class. | |
| Public Member Functions inherited from mlir::OperationPass< OpT > | |
| ~OperationPass () override=default | |
| Public Member Functions inherited from mlir::Pass | |
| virtual | ~Pass ()=default |
| TypeID | getTypeID () const |
| Returns the unique identifier that corresponds to this pass. | |
| const PassInfo * | lookupPassInfo () const |
| Returns the pass info for this pass, or null if unknown. | |
| virtual void | getDependentDialects (DialectRegistry ®istry) const |
| Register dependent dialects for the current pass. | |
| std::optional< StringRef > | getOpName () const |
| Returns the name of the operation that this pass operates on, or std::nullopt if this is a generic OperationPass. | |
| virtual LogicalResult | initializeOptions (StringRef options, function_ref< LogicalResult(const Twine &)> errorHandler) |
| Attempt to initialize the options of this pass from the given string. | |
| void | printAsTextualPipeline (raw_ostream &os, bool pretty=false) |
| Prints out the pass in the textual representation of pipelines. | |
| ArrayRef< Statistic * > | getStatistics () const |
| Returns the main statistics for this pass instance. | |
| MutableArrayRef< Statistic * > | getStatistics () |
| const Pass * | getThreadingSibling () const |
| Returns the thread sibling of this pass. | |
| const Pass * | getThreadingSiblingOrThis () const |
| Returns the thread sibling of this pass, or the pass itself it has no sibling. | |
Static Public Member Functions | |
| static constexpr ::llvm::StringLiteral | getArgumentName () |
| Returns the command-line argument attached to this pass. | |
| static constexpr ::llvm::StringLiteral | getPassName () |
| Returns the derived pass name. | |
| static bool | classof (const ::mlir::Pass *pass) |
| Support isa/dyn_cast functionality for the derived pass class. | |
Protected Attributes | |
| ::mlir::Pass::Option< std::string > | moduleMatcher {*this, "module", ::llvm::cl::desc(R"PO(Regex used to identify the modules to attach the target to.)PO"), ::llvm::cl::init("")} |
| ::mlir::Pass::Option< std::string > | triple {*this, "triple", ::llvm::cl::desc(R"PO(Target triple.)PO"), ::llvm::cl::init("nvptx64-nvidia-cuda")} |
| ::mlir::Pass::Option< std::string > | chip {*this, "chip", ::llvm::cl::desc(R"PO(Target chip.)PO"), ::llvm::cl::init("sm_50")} |
| ::mlir::Pass::Option< std::string > | features {*this, "features", ::llvm::cl::desc(R"PO(Target features.)PO"), ::llvm::cl::init("+ptx60")} |
| ::mlir::Pass::Option< unsigned > | optLevel {*this, "O", ::llvm::cl::desc(R"PO(Optimization level.)PO"), ::llvm::cl::init(2)} |
| ::mlir::Pass::Option< bool > | fastFlag {*this, "fast", ::llvm::cl::desc(R"PO(Enable fast math mode.)PO"), ::llvm::cl::init(false)} |
| ::mlir::Pass::Option< bool > | ftzFlag {*this, "ftz", ::llvm::cl::desc(R"PO(Enable flush to zero for denormals.)PO"), ::llvm::cl::init(false)} |
| ::mlir::Pass::ListOption< std::string > | linkLibs {*this, "l", ::llvm::cl::desc(R"PO(Extra bitcode libraries paths to link to.)PO")} |
| ::mlir::Pass::Option< std::string > | cmdOptions {*this, "ptxas-cmd-options", ::llvm::cl::desc(R"PO(Command line options passed to downstream compiler)PO"), ::llvm::cl::init("")} |
Friends | |
| std::unique_ptr<::mlir::Pass > | createGpuNVVMAttachTarget () |
| std::unique_ptr<::mlir::Pass > | createGpuNVVMAttachTarget (GpuNVVMAttachTargetOptions options) |
Additional Inherited Members | |
| Protected Member Functions inherited from mlir::OperationPass< OpT > | |
| OperationPass (TypeID passID) | |
| OperationPass (const OperationPass &)=default | |
| OperationPass & | operator= (const OperationPass &)=delete |
| OperationPass (OperationPass &&)=delete | |
| OperationPass & | operator= (OperationPass &&)=delete |
| bool | canScheduleOn (RegisteredOperationName opName) const final |
| Indicate if the current pass can be scheduled on the given operation type. | |
| OpT | getOperation () |
| Return the current operation being transformed. | |
| template<typename AnalysisT> | |
| AnalysisT & | getAnalysis () |
| Query an analysis for the current operation of the specific derived operation type. | |
| Protected Member Functions inherited from mlir::Pass | |
| Pass (TypeID passID, std::optional< StringRef > opName=std::nullopt) | |
| Pass (const Pass &other) | |
| Pass & | operator= (const Pass &)=delete |
| Pass (Pass &&)=delete | |
| Pass & | operator= (Pass &&)=delete |
| detail::PassExecutionState & | getPassState () |
| Returns the current pass state. | |
| MLIRContext & | getContext () |
| Return the MLIR context for the current operation being transformed. | |
| virtual void | runOnOperation ()=0 |
| The polymorphic API that runs the pass over the currently held operation. | |
| virtual LogicalResult | initialize (MLIRContext *context) |
| Initialize any complex state necessary for running this pass. | |
| LogicalResult | runPipeline (OpPassManager &pipeline, Operation *op) |
| Schedule an arbitrary pass pipeline on the provided operation. | |
| std::unique_ptr< Pass > | clone () const |
| A clone method to create a copy of this pass. | |
| Operation * | getOperation () |
| Return the current operation being transformed. | |
| void | signalPassFailure () |
| Signal that some invariant was broken when running. | |
| template<typename AnalysisT> | |
| AnalysisT & | getAnalysis () |
| Query an analysis for the current ir unit. | |
| template<typename AnalysisT, typename OpT> | |
| AnalysisT & | getAnalysis () |
| Query an analysis for the current ir unit of a specific derived operation type. | |
| template<typename AnalysisT> | |
| std::optional< std::reference_wrapper< AnalysisT > > | getCachedAnalysis () |
| Query a cached instance of an analysis for the current ir unit if one exists. | |
| void | markAllAnalysesPreserved () |
| Mark all analyses as preserved. | |
| template<typename... AnalysesT> | |
| void | markAnalysesPreserved () |
| Mark the provided analyses as preserved. | |
| void | markAnalysesPreserved (TypeID id) |
| template<typename AnalysisT> | |
| std::optional< std::reference_wrapper< AnalysisT > > | getCachedParentAnalysis (Operation *parent) |
| Returns the analysis for the given parent operation if it exists. | |
| template<typename AnalysisT> | |
| std::optional< std::reference_wrapper< AnalysisT > > | getCachedParentAnalysis () |
| Returns the analysis for the parent operation if it exists. | |
| template<typename AnalysisT> | |
| std::optional< std::reference_wrapper< AnalysisT > > | getCachedChildAnalysis (Operation *child) |
| Returns the analysis for the given child operation if it exists. | |
| template<typename AnalysisT> | |
| AnalysisT & | getChildAnalysis (Operation *child) |
| Returns the analysis for the given child operation, or creates it if it doesn't exist. | |
| template<typename AnalysisT, typename OpTy> | |
| AnalysisT & | getChildAnalysis (OpTy child) |
| Returns the analysis for the given child operation of specific derived operation type, or creates it if it doesn't exist. | |
| AnalysisManager | getAnalysisManager () |
| Returns the current analysis manager. | |
| void | copyOptionValuesFrom (const Pass *other) |
| Copy the option values from 'other', which is another instance of this pass. | |
| Static Protected Member Functions inherited from mlir::OperationPass< OpT > | |
| static bool | classof (const Pass *pass) |
| Support isa/dyn_cast functionality. | |
Definition at line 653 of file NVVMAttachTarget.cpp.
| using mlir::impl::GpuNVVMAttachTargetBase< DerivedT >::Base = GpuNVVMAttachTargetBase |
Definition at line 655 of file NVVMAttachTarget.cpp.
|
inline |
Definition at line 657 of file NVVMAttachTarget.cpp.
|
inline |
Definition at line 658 of file NVVMAttachTarget.cpp.
|
delete |
|
default |
|
inline |
Explicitly declare the TypeID for this class.
We declare an explicit private instantiation because Pass classes should only be visible by the current library.
Definition at line 698 of file NVVMAttachTarget.cpp.
|
inlinestatic |
Support isa/dyn_cast functionality for the derived pass class.
Definition at line 679 of file NVVMAttachTarget.cpp.
|
inlineoverridevirtual |
A clone method to create a copy of this pass.
Implements mlir::Pass.
Definition at line 684 of file NVVMAttachTarget.cpp.
|
inlineoverridevirtual |
Return the command line argument used when registering this pass.
Return an empty string if one does not exist.
Reimplemented from mlir::Pass.
Definition at line 668 of file NVVMAttachTarget.cpp.
|
inlinestatic |
Returns the command-line argument attached to this pass.
Definition at line 665 of file NVVMAttachTarget.cpp.
|
inlineoverride |
Return the dialect that must be loaded in the context before this pass.
Definition at line 689 of file NVVMAttachTarget.cpp.
|
inlineoverridevirtual |
Return the command line description used when registering this pass.
Return an empty string if one does not exist.
Reimplemented from mlir::Pass.
Definition at line 670 of file NVVMAttachTarget.cpp.
|
inlineoverridevirtual |
Returns the derived pass name.
Implements mlir::Pass.
Definition at line 676 of file NVVMAttachTarget.cpp.
|
inlinestatic |
Returns the derived pass name.
Definition at line 673 of file NVVMAttachTarget.cpp.
|
delete |
|
delete |
|
friend |
Definition at line 721 of file NVVMAttachTarget.cpp.
|
friend |
Definition at line 725 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 712 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 718 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 715 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 713 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 716 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 717 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 710 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 714 of file NVVMAttachTarget.cpp.
|
protected |
Definition at line 711 of file NVVMAttachTarget.cpp.