My Project
Public Member Functions | List of all members
mlir::OpPrintingFlags Class Reference

#include <OperationSupport.h>

Public Member Functions

 OpPrintingFlags ()
 Initialize the printing flags with default supplied by the cl::opts above. More...
 
 OpPrintingFlags (llvm::NoneType)
 
OpPrintingFlagselideLargeElementsAttrs (int64_t largeElementLimit=16)
 
OpPrintingFlagsenableDebugInfo (bool prettyForm=false)
 
OpPrintingFlagsprintGenericOpForm ()
 Always print operations in the generic form. More...
 
OpPrintingFlagsuseLocalScope ()
 
bool shouldElideElementsAttr (ElementsAttr attr) const
 Return if the given ElementsAttr should be elided. More...
 
bool shouldPrintDebugInfo () const
 Return if debug information should be printed. More...
 
bool shouldPrintDebugInfoPrettyForm () const
 Return if debug information should be printed in the pretty form. More...
 
bool shouldPrintGenericOpForm () const
 Return if operations should be printed in the generic form. More...
 
bool shouldUseLocalScope () const
 Return if the printer should use local scope when dumping the IR. More...
 

Detailed Description

Set of flags used to control the behavior of the various IR print methods (e.g. Operation::Print).

Constructor & Destructor Documentation

◆ OpPrintingFlags() [1/2]

OpPrintingFlags::OpPrintingFlags ( )

Initialize the printing flags with default supplied by the cl::opts above.

◆ OpPrintingFlags() [2/2]

mlir::OpPrintingFlags::OpPrintingFlags ( llvm::NoneType  )
inline

Member Function Documentation

◆ elideLargeElementsAttrs()

OpPrintingFlags & OpPrintingFlags::elideLargeElementsAttrs ( int64_t  largeElementLimit = 16)

Enable the elision of large elements attributes, by printing a '...' instead of the element data. Note: The IR generated with this option is not parsable. largeElementLimit is used to configure what is considered to be a "large" ElementsAttr by providing an upper limit to the number of elements.

Enable the elision of large elements attributes, by printing a '...' instead of the element data, when the number of elements is greater than largeElementLimit. Note: The IR generated with this option is not parsable.

◆ enableDebugInfo()

OpPrintingFlags & OpPrintingFlags::enableDebugInfo ( bool  prettyForm = false)

Enable printing of debug information. If 'prettyForm' is set to true, debug information is printed in a more readable 'pretty' form. Note: The IR generated with 'prettyForm' is not parsable.

Enable printing of debug information. If 'prettyForm' is set to true, debug information is printed in a more readable 'pretty' form.

◆ printGenericOpForm()

OpPrintingFlags & OpPrintingFlags::printGenericOpForm ( )

Always print operations in the generic form.

◆ shouldElideElementsAttr()

bool OpPrintingFlags::shouldElideElementsAttr ( ElementsAttr  attr) const

Return if the given ElementsAttr should be elided.

◆ shouldPrintDebugInfo()

bool OpPrintingFlags::shouldPrintDebugInfo ( ) const

Return if debug information should be printed.

◆ shouldPrintDebugInfoPrettyForm()

bool OpPrintingFlags::shouldPrintDebugInfoPrettyForm ( ) const

Return if debug information should be printed in the pretty form.

◆ shouldPrintGenericOpForm()

bool OpPrintingFlags::shouldPrintGenericOpForm ( ) const

Return if operations should be printed in the generic form.

◆ shouldUseLocalScope()

bool OpPrintingFlags::shouldUseLocalScope ( ) const

Return if the printer should use local scope when dumping the IR.

◆ useLocalScope()

OpPrintingFlags & OpPrintingFlags::useLocalScope ( )

Use local scope when printing the operation. This allows for using the printer in a more localized and thread-safe setting, but may not necessarily be identical to what the IR will look like when dumping the full module.

Use local scope when printing the operation. This allows for using the printer in a more localized and thread-safe setting, but may not necessarily be identical of what the IR will look like when dumping the full module.


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