MLIR

Multi-Level IR Compiler Framework

'llvm' Dialect

This dialect maps LLVM IR into MLIR by defining the corresponding operations and types. LLVM IR metadata is usually represented as MLIR attributes, which offer additional structure verification.

We use “LLVM IR” to designate the intermediate representation of LLVM and “LLVM dialect” or “LLVM IR dialect” to refer to this MLIR dialect.

Unless explicitly stated otherwise, the semantics of the LLVM dialect operations must correspond to the semantics of LLVM IR instructions and any divergence is considered a bug. The dialect also contains auxiliary operations that smoothen the differences in the IR structure, e.g., MLIR does not have phi operations and LLVM IR does not have a constant operation. These auxiliary operations are systematically prefixed with mlir, e.g. llvm.mlir.constant where llvm. is the dialect namespace prefix.

Dependency on LLVM IR 

LLVM dialect is not expected to depend on any object that requires an LLVMContext, such as an LLVM IR instruction or type. Instead, MLIR provides thread-safe alternatives compatible with the rest of the infrastructure. The dialect is allowed to depend on the LLVM IR objects that don’t require a context, such as data layout and triple description.

Module Structure 

IR modules use the built-in MLIR ModuleOp and support all its features. In particular, modules can be named, nested and are subject to symbol visibility. Modules can contain any operations, including LLVM functions and globals.

Data Layout and Triple 

An IR module may have an optional data layout and triple information attached using MLIR attributes llvm.data_layout and llvm.triple, respectively. Both are string attributes with the same syntax as in LLVM IR and are verified to be correct. They can be defined as follows.

module attributes {llvm.data_layout = "e",
                   llvm.target_triple = "aarch64-linux-android"} {
  // module contents
}

Functions 

LLVM functions are represented by a special operation, llvm.func, that has syntax similar to that of the built-in function operation but supports LLVM-related features such as linkage and variadic argument lists. See detailed description in the operation list below.

PHI Nodes and Block Arguments 

MLIR uses block arguments instead of PHI nodes to communicate values between blocks. Therefore, the LLVM dialect has no operation directly equivalent to phi in LLVM IR. Instead, all terminators can pass values as successor operands as these values will be forwarded as block arguments when the control flow is transferred.

For example:

^bb1:
  %0 = llvm.addi %arg0, %cst : i32
  llvm.br ^bb2[%0: i32]

// If the control flow comes from ^bb1, %arg1 == %0.
^bb2(%arg1: i32)
  // ...

is equivalent to LLVM IR

%0:
  %1 = add i32 %arg0, %cst
  br %3

%3:
  %arg1 = phi [%1, %0], //...

Since there is no need to use the block identifier to differentiate the source of different values, the LLVM dialect supports terminators that transfer the control flow to the same block with different arguments. For example:

^bb1:
  llvm.cond_br %cond, ^bb2[%0: i32], ^bb2[%1: i32]

^bb2(%arg0: i32):
  // ...

Context-Level Values 

Some value kinds in LLVM IR, such as constants and undefs, are uniqued in context and used directly in relevant operations. MLIR does not support such values for thread-safety and concept parsimony reasons. Instead, regular values are produced by dedicated operations that have the corresponding semantics: llvm.mlir.constant, llvm.mlir.undef, llvm.mlir.poison, llvm.mlir.null. Note how these operations are prefixed with mlir. to indicate that they don’t belong to LLVM IR but are only necessary to model it in MLIR. The values produced by these operations are usable just like any other value.

Examples:

// Create an undefined value of structure type with a 32-bit integer followed
// by a float.
%0 = llvm.mlir.undef : !llvm.struct<(i32, f32)>

// Null pointer to i8.
%1 = llvm.mlir.null : !llvm.ptr<i8>

// Null pointer to a function with signature void().
%2 = llvm.mlir.null : !llvm.ptr<func<void ()>>

// Constant 42 as i32.
%3 = llvm.mlir.constant(42 : i32) : i32

// Splat dense vector constant.
%3 = llvm.mlir.constant(dense<1.0> : vector<4xf32>) : vector<4xf32>

Note that constants list the type twice. This is an artifact of the LLVM dialect not using built-in types, which are used for typed MLIR attributes. The syntax will be reevaluated after considering composite constants.

Globals 

Global variables are also defined using a special operation, llvm.mlir.global, located at the module level. Globals are MLIR symbols and are identified by their name.

Since functions need to be isolated-from-above, i.e. values defined outside the function cannot be directly used inside the function, an additional operation, llvm.mlir.addressof, is provided to locally define a value containing the address of a global. The actual value can then be loaded from that pointer, or a new value can be stored into it if the global is not declared constant. This is similar to LLVM IR where globals are accessed through name and have a pointer type.

Linkage 

Module-level named objects in the LLVM dialect, namely functions and globals, have an optional linkage attribute derived from LLVM IR linkage types. Linkage is specified by the same keyword as in LLVM IR and is located between the operation name (llvm.func or llvm.global) and the symbol name. If no linkage keyword is present, external linkage is assumed by default. Linkage is distinct from MLIR symbol visibility.

Attribute Pass-Through 

WARNING: this feature MUST NOT be used for any real workload. It is exclusively intended for quick prototyping. After that, attributes must be introduced as proper first-class concepts in the dialect.

The LLVM dialect provides a mechanism to forward function-level attributes to LLVM IR using the passthrough attribute. This is an array attribute containing either string attributes or array attributes. In the former case, the value of the string is interpreted as the name of LLVM IR function attribute. In the latter case, the array is expected to contain exactly two string attributes, the first corresponding to the name of LLVM IR function attribute, and the second corresponding to its value. Note that even integer LLVM IR function attributes have their value represented in the string form.

Example:

llvm.func @func() attributes {
  passthrough = ["noinline",           // value-less attribute
                 ["alignstack", "4"],  // integer attribute with value
                 ["other", "attr"]]    // attribute unknown to LLVM
} {
  llvm.return
}

If the attribute is not known to LLVM IR, it will be attached as a string attribute.

Types 

LLVM dialect uses built-in types whenever possible and defines a set of complementary types, which correspond to the LLVM IR types that cannot be directly represented with built-in types. Similarly to other MLIR context-owned objects, the creation and manipulation of LLVM dialect types is thread-safe.

MLIR does not support module-scoped named type declarations, e.g. %s = type {i32, i32} in LLVM IR. Instead, types must be fully specified at each use, except for recursive types where only the first reference to a named type needs to be fully specified. MLIR type aliases can be used to achieve more compact syntax.

The general syntax of LLVM dialect types is !llvm., followed by a type kind identifier (e.g., ptr for pointer or struct for structure) and by an optional list of type parameters in angle brackets. The dialect follows MLIR style for types with nested angle brackets and keyword specifiers rather than using different bracket styles to differentiate types. Types inside the angle brackets may omit the !llvm. prefix for brevity: the parser first attempts to find a type (starting with ! or a built-in type) and falls back to accepting a keyword. For example, !llvm.ptr<!llvm.ptr<i32>> and !llvm.ptr<ptr<i32>> are equivalent, with the latter being the canonical form, and denote a pointer to a pointer to a 32-bit integer.

Built-in Type Compatibility 

LLVM dialect accepts a subset of built-in types that are referred to as LLVM dialect-compatible types. The following types are compatible:

  • Signless integers - iN (IntegerType).
  • Floating point types - bfloat, half, float, double , f80, f128 (FloatType).
  • 1D vectors of signless integers or floating point types - vector<NxT> (VectorType).

Note that only a subset of types that can be represented by a given class is compatible. For example, signed and unsigned integers are not compatible. LLVM provides a function, bool LLVM::isCompatibleType(Type), that can be used as a compatibility check.

Each LLVM IR type corresponds to exactly one MLIR type, either built-in or LLVM dialect type. For example, because i32 is LLVM-compatible, there is no !llvm.i32 type. However, !llvm.ptr<T> is defined in the LLVM dialect as there is no corresponding built-in type.

Additional Simple Types 

The following non-parametric types derived from the LLVM IR are available in the LLVM dialect:

  • !llvm.x86_mmx (LLVMX86MMXType) - value held in an MMX register on x86 machine.
  • !llvm.ppc_fp128 (LLVMPPCFP128Type) - 128-bit floating-point value (two 64 bits).
  • !llvm.token (LLVMTokenType) - a non-inspectable value associated with an operation.
  • !llvm.metadata (LLVMMetadataType) - LLVM IR metadata, to be used only if the metadata cannot be represented as structured MLIR attributes.
  • !llvm.void (LLVMVoidType) - does not represent any value; can only appear in function results.

These types represent a single value (or an absence thereof in case of void) and correspond to their LLVM IR counterparts.

Additional Parametric Types 

These types are parameterized by the types they contain, e.g., the pointee or the element type, which can be either compatible built-in or LLVM dialect types.

Pointer Types 

Pointer types specify an address in memory.

Both opaque and type-parameterized pointer types are supported. Opaque pointers do not indicate the type of the data pointed to, and are intended to simplify LLVM IR by encoding behavior relevant to the pointee type into operations rather than into types. Non-opaque pointer types carry the pointee type as a type parameter. Both kinds of pointers may be additionally parameterized by an address space. The address space is an integer, but this choice may be reconsidered if MLIR implements named address spaces. The syntax of pointer types is as follows:

  llvm-ptr-type ::= `!llvm.ptr` (`<` integer-literal `>`)?
                  | `!llvm.ptr<` type (`,` integer-literal)? `>`

where the former case is the opaque pointer type and the latter case is the non-opaque pointer type; the optional group containing the integer literal corresponds to the memory space. All cases are represented by LLVMPointerType internally.

Array Types 

Array types represent sequences of elements in memory. Array elements can be addressed with a value unknown at compile time, and can be nested. Only 1D arrays are allowed though.

Array types are parameterized by the fixed size and the element type. Syntactically, their representation is the following:

  llvm-array-type ::= `!llvm.array<` integer-literal `x` type `>`

and they are internally represented as LLVMArrayType.

Function Types 

Function types represent the type of a function, i.e. its signature.

Function types are parameterized by the result type, the list of argument types and by an optional “variadic” flag. Unlike built-in FunctionType, LLVM dialect functions (LLVMFunctionType) always have single result, which may be !llvm.void if the function does not return anything. The syntax is as follows:

  llvm-func-type ::= `!llvm.func<` type `(` type-list (`,` `...`)? `)` `>`

For example,

!llvm.func<void ()>           // a function with no arguments;
!llvm.func<i32 (f32, i32)>    // a function with two arguments and a result;
!llvm.func<void (i32, ...)>   // a variadic function with at least one argument.

In the LLVM dialect, functions are not first-class objects and one cannot have a value of function type. Instead, one can take the address of a function and operate on pointers to functions.

Vector Types 

Vector types represent sequences of elements, typically when multiple data elements are processed by a single instruction (SIMD). Vectors are thought of as stored in registers and therefore vector elements can only be addressed through constant indices.

Vector types are parameterized by the size, which may be either fixed or a multiple of some fixed size in case of scalable vectors, and the element type. Vectors cannot be nested and only 1D vectors are supported. Scalable vectors are still considered 1D.

LLVM dialect uses built-in vector types for fixed-size vectors of built-in types, and provides additional types for fixed-sized vectors of LLVM dialect types (LLVMFixedVectorType) and scalable vectors of any types (LLVMScalableVectorType). These two additional types share the following syntax:

  llvm-vec-type ::= `!llvm.vec<` (`?` `x`)? integer-literal `x` type `>`

Note that the sets of element types supported by built-in and LLVM dialect vector types are mutually exclusive, e.g., the built-in vector type does not accept !llvm.ptr<i32> and the LLVM dialect fixed-width vector type does not accept i32.

The following functions are provided to operate on any kind of the vector types compatible with the LLVM dialect:

  • bool LLVM::isCompatibleVectorType(Type) - checks whether a type is a vector type compatible with the LLVM dialect;
  • Type LLVM::getVectorElementType(Type) - returns the element type of any vector type compatible with the LLVM dialect;
  • llvm::ElementCount LLVM::getVectorNumElements(Type) - returns the number of elements in any vector type compatible with the LLVM dialect;
  • Type LLVM::getFixedVectorType(Type, unsigned) - gets a fixed vector type with the given element type and size; the resulting type is either a built-in or an LLVM dialect vector type depending on which one supports the given element type.

Examples of Compatible Vector Types 

vector<42 x i32>                   // Vector of 42 32-bit integers.
!llvm.vec<42 x ptr<i32>>           // Vector of 42 pointers to 32-bit integers.
!llvm.vec<? x 4 x i32>             // Scalable vector of 32-bit integers with
                                   // size divisible by 4.
!llvm.array<2 x vector<2 x i32>>   // Array of 2 vectors of 2 32-bit integers.
!llvm.array<2 x vec<2 x ptr<i32>>> // Array of 2 vectors of 2 pointers to 32-bit
                                   // integers.

Structure Types 

The structure type is used to represent a collection of data members together in memory. The elements of a structure may be any type that has a size.

Structure types are represented in a single dedicated class mlir::LLVM::LLVMStructType. Internally, the struct type stores a (potentially empty) name, a (potentially empty) list of contained types and a bitmask indicating whether the struct is named, opaque, packed or uninitialized. Structure types that don’t have a name are referred to as literal structs. Such structures are uniquely identified by their contents. Identified structs on the other hand are uniquely identified by the name.

Identified Structure Types 

Identified structure types are uniqued using their name in a given context. Attempting to construct an identified structure with the same name a structure that already exists in the context will result in the existing structure being returned. MLIR does not auto-rename identified structs in case of name conflicts because there is no naming scope equivalent to a module in LLVM IR since MLIR modules can be arbitrarily nested.

Programmatically, identified structures can be constructed in an uninitialized state. In this case, they are given a name but the body must be set up by a later call, using MLIR’s type mutation mechanism. Such uninitialized types can be used in type construction, but must be eventually initialized for IR to be valid. This mechanism allows for constructing recursive or mutually referring structure types: an uninitialized type can be used in its own initialization.

Once the type is initialized, its body cannot be changed anymore. Any further attempts to modify the body will fail and return failure to the caller unless the type is initialized with the exact same body. Type initialization is thread-safe; however, if a concurrent thread initializes the type before the current thread, the initialization may return failure.

The syntax for identified structure types is as follows.

llvm-ident-struct-type ::= `!llvm.struct<` string-literal, `opaque` `>`
                         | `!llvm.struct<` string-literal, `packed`?
                           `(` type-or-ref-list  `)` `>`
type-or-ref-list ::= <maybe empty comma-separated list of type-or-ref>
type-or-ref ::= <any compatible type with optional !llvm.>
              | `!llvm.`? `struct<` string-literal `>`

The body of the identified struct is printed in full unless the it is transitively contained in the same struct. In the latter case, only the identifier is printed. For example, the structure containing the pointer to itself is represented as !llvm.struct<"A", (ptr<"A">)>, and the structure A containing two pointers to the structure B containing a pointer to the structure A is represented as !llvm.struct<"A", (ptr<"B", (ptr<"A">)>, ptr<"B", (ptr<"A">))>. Note that the structure B is “unrolled” for both elements. A structure with the same name but different body is a syntax error. The user must ensure structure name uniqueness across all modules processed in a given MLIR context. Structure names are arbitrary string literals and may include, e.g., spaces and keywords.

Identified structs may be opaque. In this case, the body is unknown but the structure type is considered initialized and is valid in the IR.

Literal Structure Types 

Literal structures are uniqued according to the list of elements they contain, and can optionally be packed. The syntax for such structs is as follows.

llvm-literal-struct-type ::= `!llvm.struct<` `packed`? `(` type-list `)` `>`
type-list ::= <maybe empty comma-separated list of types with optional !llvm.>

Literal structs cannot be recursive, but can contain other structs. Therefore, they must be constructed in a single step with the entire list of contained elements provided.

Examples of Structure Types 

!llvm.struct<>                  // NOT allowed
!llvm.struct<()>                // empty, literal
!llvm.struct<(i32)>             // literal
!llvm.struct<(struct<(i32)>)>   // struct containing a struct
!llvm.struct<packed (i8, i32)>  // packed struct
!llvm.struct<"a">               // recursive reference, only allowed within
                                // another struct, NOT allowed at top level
!llvm.struct<"a", ptr<struct<"a">>>  // supported example of recursive reference
!llvm.struct<"a", ()>           // empty, named (necessary to differentiate from
                                // recursive reference)
!llvm.struct<"a", opaque>       // opaque, named
!llvm.struct<"a", (i32)>        // named
!llvm.struct<"a", packed (i8, i32)>  // named, packed

Unsupported Types 

LLVM IR label type does not have a counterpart in the LLVM dialect since, in MLIR, blocks are not values and don’t need a type.

Operations 

All operations in the LLVM IR dialect have a custom form in MLIR. The mnemonic of an operation is that used in LLVM IR prefixed with “llvm.”.

llvm.ashr (::mlir::LLVM::AShrOp) 

Syntax:

operation ::= `llvm.ashr` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.access_group (::mlir::LLVM::AccessGroupMetadataOp) 

LLVM dialect access group metadata.

Syntax:

operation ::= `llvm.access_group` $sym_name attr-dict

Defines an access group metadata that can be attached to any instruction that potentially accesses memory. The access group may be attached to a memory accessing instruction via the llvm.access.group metadata and a branch instruction in the loop latch block via the llvm.loop.parallel_accesses metadata.

See the following link for more details: https://llvm.org/docs/LangRef.html#llvm-access-group-metadata

Traits: HasParent

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute

llvm.add (::mlir::LLVM::AddOp) 

Syntax:

operation ::= `llvm.add` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, Commutative, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.addrspacecast (::mlir::LLVM::AddrSpaceCastOp) 

Syntax:

operation ::= `llvm.addrspacecast` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface), PromotableOpInterface

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argLLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type

Results: 

ResultDescription
resLLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type

llvm.mlir.addressof (::mlir::LLVM::AddressOfOp) 

Creates a pointer pointing to a global or a function

Syntax:

operation ::= `llvm.mlir.addressof` $global_name attr-dict `:` qualified(type($res))

Creates an SSA value containing a pointer to a global variable or constant defined by llvm.mlir.global. The global value can be defined after its first referenced. If the global value is a constant, storing into it is not allowed.

Examples:

func @foo() {
  // Get the address of a global variable.
  %0 = llvm.mlir.addressof @const : !llvm.ptr<i32>

  // Use it as a regular pointer.
  %1 = llvm.load %0 : !llvm.ptr<i32>

  // Get the address of a function.
  %2 = llvm.mlir.addressof @foo : !llvm.ptr<func<void ()>>

  // The function address can be used for indirect calls.
  llvm.call %2() : () -> ()
}

// Define the global.
llvm.mlir.global @const(42 : i32) : i32

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface), SymbolUserOpInterface

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
global_name::mlir::FlatSymbolRefAttrflat symbol reference attribute

Results: 

ResultDescription
resLLVM pointer type

llvm.alias_scope_domain (::mlir::LLVM::AliasScopeDomainMetadataOp) 

LLVM dialect alias.scope domain metadata.

Syntax:

operation ::= `llvm.alias_scope_domain` $sym_name attr-dict

Defines a domain that may be associated with an alias scope.

See the following link for more details: https://llvm.org/docs/LangRef.html#noalias-and-alias-scope-metadata

Traits: HasParent

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute
description::mlir::StringAttrstring attribute

llvm.alias_scope (::mlir::LLVM::AliasScopeMetadataOp) 

LLVM dialect alias.scope metadata.

Syntax:

operation ::= `llvm.alias_scope` $sym_name attr-dict

Defines an alias scope that can be attached to a memory-accessing operation. Such scopes can be used in combination with noalias metadata to indicate that sets of memory-affecting operations in one scope do not alias with memory-affecting operations in another scope.

Example:

module {
  llvm.func @foo(%ptr1 : !llvm.ptr<i32>) {
      %c0 = llvm.mlir.constant(0 : i32) : i32
      %c4 = llvm.mlir.constant(4 : i32) : i32
      %1 = llvm.ptrtoint %ptr1 : !llvm.ptr<i32> to i32
      %2 = llvm.add %1, %c1 : i32
      %ptr2 = llvm.inttoptr %2 : i32 to !llvm.ptr<i32>
      llvm.store %c0, %ptr1 { alias_scopes = [@metadata::@scope1], llvm.noalias = [@metadata::@scope2] } : !llvm.ptr<i32>
      llvm.store %c4, %ptr2 { alias_scopes = [@metadata::@scope2], llvm.noalias = [@metadata::@scope1] } : !llvm.ptr<i32>
      llvm.return
  }

  llvm.metadata @metadata {
    llvm.alias_scope_domain @unused_domain
    llvm.alias_scope_domain @domain { description = "Optional domain description"}
    llvm.alias_scope @scope1 { domain = @domain }
    llvm.alias_scope @scope2 { domain = @domain, description = "Optional scope description" }
  }
}

See the following link for more details: https://llvm.org/docs/LangRef.html#noalias-and-alias-scope-metadata

Traits: HasParent

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute
domain::mlir::FlatSymbolRefAttrflat symbol reference attribute
description::mlir::StringAttrstring attribute

llvm.alloca (::mlir::LLVM::AllocaOp) 

Interfaces: DestructurableAllocationOpInterface, PromotableAllocationOpInterface

Attributes: 

AttributeMLIR TypeDescription
alignment::mlir::IntegerAttr64-bit signless integer attribute
elem_type::mlir::TypeAttrany type attribute
inalloca::mlir::UnitAttrunit attribute

Operands: 

OperandDescription
arraySizeinteger

Results: 

ResultDescription
resLLVM pointer type

llvm.and (::mlir::LLVM::AndOp) 

Syntax:

operation ::= `llvm.and` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.cmpxchg (::mlir::LLVM::AtomicCmpXchgOp) 

Syntax:

operation ::= `llvm.cmpxchg` (`weak` $weak^)? (`volatile` $volatile_^)? $ptr `,` $cmp `,` $val
              (`syncscope` `(` $syncscope^ `)`)? $success_ordering $failure_ordering
              attr-dict `:` qualified(type($ptr)) `,` type($val)

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface, InferTypeOpInterface

Attributes: 

AttributeMLIR TypeDescription
success_ordering::mlir::LLVM::AtomicOrderingAttrAtomic ordering for LLVM’s memory model
failure_ordering::mlir::LLVM::AtomicOrderingAttrAtomic ordering for LLVM’s memory model
syncscope::mlir::StringAttrstring attribute
alignment::mlir::IntegerAttr64-bit signless integer attribute
weak::mlir::UnitAttrunit attribute
volatile_::mlir::UnitAttrunit attribute
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
ptrLLVM pointer to integer or LLVM pointer type
cmpinteger or LLVM pointer type
valinteger or LLVM pointer type

Results: 

ResultDescription
resLLVM structure type

llvm.atomicrmw (::mlir::LLVM::AtomicRMWOp) 

Syntax:

operation ::= `llvm.atomicrmw` (`volatile` $volatile_^)? $bin_op $ptr `,` $val
              (`syncscope` `(` $syncscope^ `)`)? $ordering attr-dict `:`
              qualified(type($ptr)) `,` type($val)

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface, InferTypeOpInterface

Attributes: 

AttributeMLIR TypeDescription
bin_op::mlir::LLVM::AtomicBinOpAttrllvm.atomicrmw binary operations
ordering::mlir::LLVM::AtomicOrderingAttrAtomic ordering for LLVM’s memory model
syncscope::mlir::StringAttrstring attribute
alignment::mlir::IntegerAttr64-bit signless integer attribute
volatile_::mlir::UnitAttrunit attribute
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
ptrLLVM pointer to floating point LLVM type or integer
valfloating point LLVM type or integer

Results: 

ResultDescription
resfloating point LLVM type or integer

llvm.bitcast (::mlir::LLVM::BitcastOp) 

Syntax:

operation ::= `llvm.bitcast` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface), PromotableOpInterface

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argLLVM-compatible non-aggregate type

Results: 

ResultDescription
resLLVM-compatible non-aggregate type

llvm.br (::mlir::LLVM::BrOp) 

Syntax:

operation ::= `llvm.br` $dest (`(` $destOperands^ `:` type($destOperands) `)`)? attr-dict

Traits: AlwaysSpeculatableImplTrait, Terminator

Interfaces: BranchOpInterface, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
loop_annotation::mlir::LLVM::LoopAnnotationAttr

Operands: 

OperandDescription
destOperandsLLVM dialect-compatible type

Successors: 

SuccessorDescription
destany successor

llvm.call (::mlir::LLVM::CallOp) 

Call to an LLVM function.

In LLVM IR, functions may return either 0 or 1 value. LLVM IR dialect implements this behavior by providing a variadic call operation for 0- and 1-result functions. Even though MLIR supports multi-result functions, LLVM IR dialect disallows them.

The call instruction supports both direct and indirect calls. Direct calls start with a function name (@-prefixed) and indirect calls start with an SSA value (%-prefixed). The direct callee, if present, is stored as a function attribute callee. The trailing type list contains the optional indirect callee type and the MLIR function type, which differs from the LLVM function type that uses a explicit void type to model functions that do not return a value.

Examples:

// Direct call without arguments and with one result.
%0 = llvm.call @foo() : () -> (f32)

// Direct call with arguments and without a result.
llvm.call @bar(%0) : (f32) -> ()

// Indirect call with an argument and without a result.
llvm.call %1(%0) : !llvm.ptr, (f32) -> ()

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface, CallOpInterface, FastmathFlagsInterface, SymbolUserOpInterface

Attributes: 

AttributeMLIR TypeDescription
callee::mlir::FlatSymbolRefAttrflat symbol reference attribute
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags
branch_weights::mlir::ElementsAttrconstant vector/tensor attribute
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
«unnamed»LLVM dialect-compatible type

Results: 

ResultDescription
resultLLVM dialect-compatible type

llvm.cond_br (::mlir::LLVM::CondBrOp) 

Syntax:

operation ::= `llvm.cond_br` $condition ( `weights` `(` $branch_weights^ `)` )? `,`
              $trueDest (`(` $trueDestOperands^ `:` type($trueDestOperands) `)`)? `,`
              $falseDest (`(` $falseDestOperands^ `:` type($falseDestOperands) `)`)?
              attr-dict

Traits: AlwaysSpeculatableImplTrait, AttrSizedOperandSegments, Terminator

Interfaces: BranchOpInterface, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
branch_weights::mlir::ElementsAttrconstant vector/tensor attribute
loop_annotation::mlir::LLVM::LoopAnnotationAttr

Operands: 

OperandDescription
condition1-bit signless integer
trueDestOperandsLLVM dialect-compatible type
falseDestOperandsLLVM dialect-compatible type

Successors: 

SuccessorDescription
trueDestany successor
falseDestany successor

llvm.mlir.constant (::mlir::LLVM::ConstantOp) 

Defines a constant of LLVM type.

Syntax:

operation ::= `llvm.mlir.constant` `(` $value `)` attr-dict `:` type($res)

Unlike LLVM IR, MLIR does not have first-class constant values. Therefore, all constants must be created as SSA values before being used in other operations. llvm.mlir.constant creates such values for scalars and vectors. It has a mandatory value attribute, which may be an integer, floating point attribute; dense or sparse attribute containing integers or floats. The type of the attribute is one of the corresponding MLIR builtin types. It may be omitted for i64 and f64 types that are implied. The operation produces a new SSA value of the specified LLVM IR dialect type. The type of that value must correspond to the attribute type converted to LLVM IR.

Examples:

// Integer constant, internal i32 is mandatory
%0 = llvm.mlir.constant(42 : i32) : i32

// It's okay to omit i64.
%1 = llvm.mlir.constant(42) : i64

// Floating point constant.
%2 = llvm.mlir.constant(42.0 : f32) : f32

// Splat dense vector constant.
%3 = llvm.mlir.constant(dense<1.0> : vector<4xf32>) : vector<4xf32>

Traits: AlwaysSpeculatableImplTrait, ConstantLike

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
value::mlir::Attributeany attribute

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.extractelement (::mlir::LLVM::ExtractElementOp) 

Extract an element from an LLVM vector.

Syntax:

operation ::= `llvm.extractelement` $vector `[` $position `:` type($position) `]` attr-dict `:` type($vector)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
vectorLLVM dialect-compatible vector type
positioninteger

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.extractvalue (::mlir::LLVM::ExtractValueOp) 

Extract a value from an LLVM struct.

Syntax:

operation ::= `llvm.extractvalue` $container `` $position attr-dict `:` type($container)
              custom<InsertExtractValueElementType>(type($res), ref(type($container)),
              ref($position))

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
position::mlir::DenseI64ArrayAttri64 dense array attribute

Operands: 

OperandDescription
containerLLVM aggregate type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.fadd (::mlir::LLVM::FAddOp) 

Syntax:

operation ::= `llvm.fadd` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
lhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
rhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.fcmp (::mlir::LLVM::FCmpOp) 

Traits: AlwaysSpeculatableImplTrait, SameTypeOperands

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
predicate::mlir::LLVM::FCmpPredicateAttrllvm.fcmp comparison predicate
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
lhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
rhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
res1-bit signless integer or LLVM dialect-compatible vector of 1-bit signless integer

llvm.fdiv (::mlir::LLVM::FDivOp) 

Syntax:

operation ::= `llvm.fdiv` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
lhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
rhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.fmul (::mlir::LLVM::FMulOp) 

Syntax:

operation ::= `llvm.fmul` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
lhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
rhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.fneg (::mlir::LLVM::FNegOp) 

Syntax:

operation ::= `llvm.fneg` $operand custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
operandfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.fpext (::mlir::LLVM::FPExtOp) 

Syntax:

operation ::= `llvm.fpext` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.fptosi (::mlir::LLVM::FPToSIOp) 

Syntax:

operation ::= `llvm.fptosi` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.fptoui (::mlir::LLVM::FPToUIOp) 

Syntax:

operation ::= `llvm.fptoui` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.fptrunc (::mlir::LLVM::FPTruncOp) 

Syntax:

operation ::= `llvm.fptrunc` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.frem (::mlir::LLVM::FRemOp) 

Syntax:

operation ::= `llvm.frem` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
lhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
rhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.fsub (::mlir::LLVM::FSubOp) 

Syntax:

operation ::= `llvm.fsub` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
lhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
rhsfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.fence (::mlir::LLVM::FenceOp) 

Syntax:

operation ::= `llvm.fence` (`syncscope` `(` $syncscope^ `)`)? $ordering attr-dict

Attributes: 

AttributeMLIR TypeDescription
ordering::mlir::LLVM::AtomicOrderingAttrAtomic ordering for LLVM’s memory model
syncscope::mlir::StringAttrstring attribute

llvm.freeze (::mlir::LLVM::FreezeOp) 

Syntax:

operation ::= `llvm.freeze` $val attr-dict `:` type($val)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
valLLVM dialect-compatible type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.getelementptr (::mlir::LLVM::GEPOp) 

Syntax:

operation ::= `llvm.getelementptr` (`inbounds` $inbounds^)?
              $base `[` custom<GEPIndices>($dynamicIndices, $rawConstantIndices) `]` attr-dict
              `:` functional-type(operands, results) (`,` $elem_type^)?

This operation mirrors LLVM IRs ‘getelementptr’ operation that is used to perform pointer arithmetic.

Like in LLVM IR, it is possible to use both constants as well as SSA values as indices. In the case of indexing within a structure, it is required to either use constant indices directly, or supply a constant SSA value.

An optional ‘inbounds’ attribute specifies the low-level pointer arithmetic overflow behavior that LLVM uses after lowering the operation to LLVM IR.

Examples:

// GEP with an SSA value offset
%0 = llvm.getelementptr %1[%2] : (!llvm.ptr<f32>, i64) -> !llvm.ptr<f32>

// GEP with a constant offset and the inbounds attribute set
%0 = llvm.getelementptr inbounds %1[3] : (!llvm.ptr<f32>) -> !llvm.ptr<f32>

// GEP with constant offsets into a structure
%0 = llvm.getelementptr %1[0, 1]
   : (!llvm.ptr<struct(i32, f32)>) -> !llvm.ptr<f32>

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, DestructurableAccessorOpInterface, NoMemoryEffect (MemoryEffectOpInterface), PromotableOpInterface, SafeMemorySlotAccessOpInterface

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
rawConstantIndices::mlir::DenseI32ArrayAttri32 dense array attribute
elem_type::mlir::TypeAttrany type attribute
inbounds::mlir::UnitAttrunit attribute

Operands: 

OperandDescription
baseLLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type
dynamicIndicesinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resLLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type

llvm.mlir.global_ctors (::mlir::LLVM::GlobalCtorsOp) 

LLVM dialect global_ctors.

Syntax:

operation ::= `llvm.mlir.global_ctors` attr-dict

Specifies a list of constructor functions and priorities. The functions referenced by this array will be called in ascending order of priority (i.e. lowest first) when the module is loaded. The order of functions with the same priority is not defined. This operation is translated to LLVM’s global_ctors global variable. The initializer functions are run at load time. The data field present in LLVM’s global_ctors variable is not modeled here.

Examples:

llvm.mlir.global_ctors {@ctor}

llvm.func @ctor() {
  ...
  llvm.return
}

Interfaces: SymbolUserOpInterface

Attributes: 

AttributeMLIR TypeDescription
ctors::mlir::ArrayAttrflat symbol ref array attribute
priorities::mlir::ArrayAttr32-bit integer array attribute

llvm.mlir.global_dtors (::mlir::LLVM::GlobalDtorsOp) 

LLVM dialect global_dtors.

Syntax:

operation ::= `llvm.mlir.global_dtors` attr-dict

Specifies a list of destructor functions and priorities. The functions referenced by this array will be called in descending order of priority (i.e. highest first) when the module is unloaded. The order of functions with the same priority is not defined. This operation is translated to LLVM’s global_dtors global variable. The data field present in LLVM’s global_dtors variable is not modeled here.

Examples:

llvm.func @dtor() {
  llvm.return
}
llvm.mlir.global_dtors {@dtor}

Interfaces: SymbolUserOpInterface

Attributes: 

AttributeMLIR TypeDescription
dtors::mlir::ArrayAttrflat symbol ref array attribute
priorities::mlir::ArrayAttr32-bit integer array attribute

llvm.mlir.global (::mlir::LLVM::GlobalOp) 

LLVM dialect global.

Since MLIR allows for arbitrary operations to be present at the top level, global variables are defined using the llvm.mlir.global operation. Both global constants and variables can be defined, and the value may also be initialized in both cases.

There are two forms of initialization syntax. Simple constants that can be represented as MLIR attributes can be given in-line:

llvm.mlir.global @variable(32.0 : f32) : f32

This initialization and type syntax is similar to llvm.mlir.constant and may use two types: one for MLIR attribute and another for the LLVM value. These types must be compatible.

More complex constants that cannot be represented as MLIR attributes can be given in an initializer region:

// This global is initialized with the equivalent of:
//   i32* getelementptr (i32* @g2, i32 2)
llvm.mlir.global constant @int_gep() : !llvm.ptr<i32> {
  %0 = llvm.mlir.addressof @g2 : !llvm.ptr<i32>
  %1 = llvm.mlir.constant(2 : i32) : i32
  %2 = llvm.getelementptr %0[%1]
     : (!llvm.ptr<i32>, i32) -> !llvm.ptr<i32>
  // The initializer region must end with `llvm.return`.
  llvm.return %2 : !llvm.ptr<i32>
}

Only one of the initializer attribute or initializer region may be provided.

llvm.mlir.global must appear at top-level of the enclosing module. It uses an @-identifier for its value, which will be uniqued by the module with respect to other @-identifiers in it.

Examples:

// Global values use @-identifiers.
llvm.mlir.global constant @cst(42 : i32) : i32

// Non-constant values must also be initialized.
llvm.mlir.global @variable(32.0 : f32) : f32

// Strings are expected to be of wrapped LLVM i8 array type and do not
// automatically include the trailing zero.
llvm.mlir.global @string("abc") : !llvm.array<3 x i8>

// For strings globals, the trailing type may be omitted.
llvm.mlir.global constant @no_trailing_type("foo bar")

// A complex initializer is constructed with an initializer region.
llvm.mlir.global constant @int_gep() : !llvm.ptr<i32> {
  %0 = llvm.mlir.addressof @g2 : !llvm.ptr<i32>
  %1 = llvm.mlir.constant(2 : i32) : i32
  %2 = llvm.getelementptr %0[%1]
     : (!llvm.ptr<i32>, i32) -> !llvm.ptr<i32>
  llvm.return %2 : !llvm.ptr<i32>
}

Similarly to functions, globals have a linkage attribute. In the custom syntax, this attribute is placed between llvm.mlir.global and the optional constant keyword. If the attribute is omitted, external linkage is assumed by default.

Examples:

// A constant with internal linkage will not participate in linking.
llvm.mlir.global internal constant @cst(42 : i32) : i32

// By default, "external" linkage is assumed and the global participates in
// symbol resolution at link-time.
llvm.mlir.global @glob(0 : f32) : f32

// Alignment is optional
llvm.mlir.global private constant @y(dense<1.0> : tensor<8xf32>) : !llvm.array<8 x f32>

Like global variables in LLVM IR, globals can have an (optional) alignment attribute using keyword alignment. The integer value of the alignment must be a positive integer that is a power of 2.

Examples:

// Alignment is optional
llvm.mlir.global private constant @y(dense<1.0> : tensor<8xf32>) { alignment = 32 : i64 } : !llvm.array<8 x f32>

Traits: IsolatedFromAbove, SingleBlockImplicitTerminator

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
global_type::mlir::TypeAttrany type attribute
constant::mlir::UnitAttrunit attribute
sym_name::mlir::StringAttrstring attribute
linkage::mlir::LLVM::LinkageAttrLLVM Linkage specification
dso_local::mlir::UnitAttrunit attribute
thread_local_::mlir::UnitAttrunit attribute
value::mlir::Attributeany attribute
alignment::mlir::IntegerAttr64-bit signless integer attribute
addr_space::mlir::IntegerAttr32-bit signless integer attribute whose value is non-negative
unnamed_addr::mlir::LLVM::UnnamedAddrAttrLLVM GlobalValue UnnamedAddr
section::mlir::StringAttrstring attribute
visibility_::mlir::LLVM::VisibilityAttrLLVM GlobalValue Visibility

llvm.icmp (::mlir::LLVM::ICmpOp) 

Traits: AlwaysSpeculatableImplTrait, SameTypeOperands

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
predicate::mlir::LLVM::ICmpPredicateAttrlvm.icmp comparison predicate

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer or LLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type
rhsinteger or LLVM dialect-compatible vector of integer or LLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type

Results: 

ResultDescription
res1-bit signless integer or LLVM dialect-compatible vector of 1-bit signless integer

llvm.inline_asm (::mlir::LLVM::InlineAsmOp) 

Syntax:

operation ::= `llvm.inline_asm` (`has_side_effects` $has_side_effects^)?
              (`is_align_stack` $is_align_stack^)?
              (`asm_dialect` `=` $asm_dialect^)?
              (`operand_attrs` `=` $operand_attrs^)?
              attr-dict
              $asm_string `,` $constraints
              operands `:` functional-type(operands, results)

The InlineAsmOp mirrors the underlying LLVM semantics with a notable exception: the embedded asm_string is not allowed to define or reference any symbol or any global variable: only the operands of the op may be read, written, or referenced. Attempting to define or reference any symbol or any global behavior is considered undefined behavior at this time.

Attributes: 

AttributeMLIR TypeDescription
asm_string::mlir::StringAttrstring attribute
constraints::mlir::StringAttrstring attribute
has_side_effects::mlir::UnitAttrunit attribute
is_align_stack::mlir::UnitAttrunit attribute
asm_dialect::mlir::LLVM::AsmDialectAttrATT (0) or Intel (1) asm dialect
operand_attrs::mlir::ArrayAttrarray attribute

Operands: 

OperandDescription
operandsLLVM dialect-compatible type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.insertelement (::mlir::LLVM::InsertElementOp) 

Insert an element into an LLVM vector.

Syntax:

operation ::= `llvm.insertelement` $value `,` $vector `[` $position `:` type($position) `]` attr-dict `:`
              type($vector)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
vectorLLVM dialect-compatible vector type
valueprimitive LLVM type
positioninteger

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.insertvalue (::mlir::LLVM::InsertValueOp) 

Insert a value into an LLVM struct.

Syntax:

operation ::= `llvm.insertvalue` $value `,` $container `` $position attr-dict `:` type($container)
              custom<InsertExtractValueElementType>(type($value), ref(type($container)),
              ref($position))

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
position::mlir::DenseI64ArrayAttri64 dense array attribute

Operands: 

OperandDescription
containerLLVM aggregate type
valueprimitive LLVM type

Results: 

ResultDescription
resLLVM aggregate type

llvm.inttoptr (::mlir::LLVM::IntToPtrOp) 

Syntax:

operation ::= `llvm.inttoptr` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
arginteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resLLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type

llvm.invoke (::mlir::LLVM::InvokeOp) 

Traits: AttrSizedOperandSegments, Terminator

Interfaces: BranchOpInterface, CallOpInterface

Attributes: 

AttributeMLIR TypeDescription
callee::mlir::FlatSymbolRefAttrflat symbol reference attribute
branch_weights::mlir::ElementsAttrconstant vector/tensor attribute

Operands: 

OperandDescription
callee_operandsLLVM dialect-compatible type
normalDestOperandsLLVM dialect-compatible type
unwindDestOperandsLLVM dialect-compatible type

Results: 

ResultDescription
«unnamed»LLVM dialect-compatible type

Successors: 

SuccessorDescription
normalDestany successor
unwindDestany successor

llvm.func (::mlir::LLVM::LLVMFuncOp) 

LLVM dialect function.

MLIR functions are defined by an operation that is not built into the IR itself. The LLVM dialect provides an llvm.func operation to define functions compatible with LLVM IR. These functions have LLVM dialect function type but use MLIR syntax to express it. They are required to have exactly one result type. LLVM function operation is intended to capture additional properties of LLVM functions, such as linkage and calling convention, that may be modeled differently by the built-in MLIR function.

// The type of @bar is !llvm<"i64 (i64)">
llvm.func @bar(%arg0: i64) -> i64 {
  llvm.return %arg0 : i64
}

// Type type of @foo is !llvm<"void (i64)">
// !llvm.void type is omitted
llvm.func @foo(%arg0: i64) {
  llvm.return
}

// A function with `internal` linkage.
llvm.func internal @internal_func() {
  llvm.return
}

Traits: AutomaticAllocationScope, IsolatedFromAbove

Interfaces: CallableOpInterface, FunctionOpInterface, Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute
function_type::mlir::TypeAttrtype attribute of LLVM function type
linkage::mlir::LLVM::LinkageAttrLLVM Linkage specification
dso_local::mlir::UnitAttrunit attribute
CConv::mlir::LLVM::CConvAttrLLVM Calling Convention specification
personality::mlir::FlatSymbolRefAttrflat symbol reference attribute
garbageCollector::mlir::StringAttrstring attribute
passthrough::mlir::ArrayAttrarray attribute
arg_attrs::mlir::ArrayAttrArray of dictionary attributes
res_attrs::mlir::ArrayAttrArray of dictionary attributes
function_entry_count::mlir::IntegerAttr64-bit signless integer attribute
memory::mlir::LLVM::MemoryEffectsAttr
visibility_::mlir::LLVM::VisibilityAttrLLVM GlobalValue Visibility
arm_streaming::mlir::UnitAttrunit attribute
arm_locally_streaming::mlir::UnitAttrunit attribute

llvm.lshr (::mlir::LLVM::LShrOp) 

Syntax:

operation ::= `llvm.lshr` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.landingpad (::mlir::LLVM::LandingpadOp) 

Attributes: 

AttributeMLIR TypeDescription
cleanup::mlir::UnitAttrunit attribute

Operands: 

OperandDescription
«unnamed»LLVM dialect-compatible type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.load (::mlir::LLVM::LoadOp) 

Syntax:

operation ::= `llvm.load` (`volatile` $volatile_^)? $addr
              (`atomic` (`syncscope` `(` $syncscope^ `)`)? $ordering^)?
              attr-dict `:` custom<LoadType>(type($addr), type($res))

The load operation is used to read from memory. A load may be marked as atomic, volatile, and/or nontemporal, and takes a number of optional attributes that specify aliasing information.

An atomic load only supports a limited set of pointer, integer, and floating point types, and requires an explicit alignment.

Examples:

// A volatile load of a float variable.
%0 = llvm.load volatile %ptr : !llvm.ptr -> f32

// A nontemporal load of a float variable.
%0 = llvm.load %ptr {nontemporal} : !llvm.ptr -> f32

// An atomic load of an integer variable.
%0 = llvm.load %ptr atomic monotonic {alignment = 8 : i64}
    : !llvm.ptr -> i64

See the following link for more details: https://llvm.org/docs/LangRef.html#load-instruction

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface, PromotableMemOpInterface, SafeMemorySlotAccessOpInterface

Attributes: 

AttributeMLIR TypeDescription
alignment::mlir::IntegerAttr64-bit signless integer attribute
volatile_::mlir::UnitAttrunit attribute
nontemporal::mlir::UnitAttrunit attribute
ordering::mlir::LLVM::AtomicOrderingAttrAtomic ordering for LLVM’s memory model
syncscope::mlir::StringAttrstring attribute
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
addrLLVM pointer to LLVM type with size

Results: 

ResultDescription
resLLVM type with size

llvm.metadata (::mlir::LLVM::MetadataOp) 

LLVM dialect metadata.

llvm.metadata op defines one or more metadata nodes.

Example:

llvm.metadata @metadata {
  llvm.access_group @group1
  llvm.access_group @group2
}

Traits: NoRegionArguments, NoTerminator, SymbolTable

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute

llvm.mul (::mlir::LLVM::MulOp) 

Syntax:

operation ::= `llvm.mul` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, Commutative, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.mlir.null (::mlir::LLVM::NullOp) 

Defines a value containing a null pointer to LLVM type.

Syntax:

operation ::= `llvm.mlir.null` attr-dict `:` qualified(type($res))

Unlike LLVM IR, MLIR does not have first-class null pointers. They must be explicitly created as SSA values using llvm.mlir.null. This operation has no operands or attributes, and returns a null value of a wrapped LLVM IR pointer type.

Examples:

// Null pointer to i8.
%0 = llvm.mlir.null : !llvm.ptr<i8>

// Null pointer to a function with signature void().
%1 = llvm.mlir.null : !llvm.ptr<func<void ()>>

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Results: 

ResultDescription
resLLVM pointer type

llvm.or (::mlir::LLVM::OrOp) 

Syntax:

operation ::= `llvm.or` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.mlir.poison (::mlir::LLVM::PoisonOp) 

Creates a poison value of LLVM dialect type.

Syntax:

operation ::= `llvm.mlir.poison` attr-dict `:` type($res)

Unlike LLVM IR, MLIR does not have first-class poison values. Such values must be created as SSA values using llvm.mlir.poison. This operation has no operands or attributes. It creates a poison value of the specified LLVM IR dialect type.

Example:

// Create a poison value for a structure with a 32-bit integer followed
// by a float.
%0 = llvm.mlir.poison : !llvm.struct<(i32, f32)>

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.ptrtoint (::mlir::LLVM::PtrToIntOp) 

Syntax:

operation ::= `llvm.ptrtoint` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argLLVM pointer type or LLVM dialect-compatible vector of LLVM pointer type

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.resume (::mlir::LLVM::ResumeOp) 

Syntax:

operation ::= `llvm.resume` $value attr-dict `:` type($value)

Traits: Terminator

Operands: 

OperandDescription
valueLLVM dialect-compatible type

llvm.return (::mlir::LLVM::ReturnOp) 

Syntax:

operation ::= `llvm.return` attr-dict ($arg^ `:` type($arg))?

Traits: AlwaysSpeculatableImplTrait, ReturnLike, Terminator

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
argLLVM dialect-compatible type

llvm.sdiv (::mlir::LLVM::SDivOp) 

Syntax:

operation ::= `llvm.sdiv` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.sext (::mlir::LLVM::SExtOp) 

Syntax:

operation ::= `llvm.sext` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
arginteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.sitofp (::mlir::LLVM::SIToFPOp) 

Syntax:

operation ::= `llvm.sitofp` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
arginteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.srem (::mlir::LLVM::SRemOp) 

Syntax:

operation ::= `llvm.srem` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.select (::mlir::LLVM::SelectOp) 

Syntax:

operation ::= `llvm.select` operands attr-dict `:` type($condition) `,` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
condition1-bit signless integer or LLVM dialect-compatible vector of 1-bit signless integer
trueValueLLVM dialect-compatible type
falseValueLLVM dialect-compatible type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.shl (::mlir::LLVM::ShlOp) 

Syntax:

operation ::= `llvm.shl` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.shufflevector (::mlir::LLVM::ShuffleVectorOp) 

Construct a permutation of two vectors.

Syntax:

operation ::= `llvm.shufflevector` $v1 `,` $v2 $mask attr-dict `:` type($v1)
              custom<ShuffleType>(ref(type($v1)), type($res), ref($mask))

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
mask::mlir::DenseI32ArrayAttri32 dense array attribute

Operands: 

OperandDescription
v1LLVM dialect-compatible vector type
v2LLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.store (::mlir::LLVM::StoreOp) 

Syntax:

operation ::= `llvm.store` (`volatile` $volatile_^)? $value `,` $addr
              (`atomic` (`syncscope` `(` $syncscope^ `)`)? $ordering^)?
              attr-dict `:` custom<StoreType>(type($value), type($addr))

The store operation is used to write to memory. A store may be marked as atomic, volatile, and/or nontemporal, and takes a number of optional attributes that specify aliasing information.

An atomic store only supports a limited set of pointer, integer, and floating point types, and requires an explicit alignment.

Examples:

// A volatile store of a float variable.
llvm.store volatile %val, %ptr : f32, !llvm.ptr

// A nontemporal store of a float variable.
llvm.store %val, %ptr {nontemporal} : f32, !llvm.ptr

// An atomic store of an integer variable.
llvm.store %val, %ptr atomic monotonic {alignment = 8 : i64}
    : i64, !llvm.ptr

See the following link for more details: https://llvm.org/docs/LangRef.html#store-instruction

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface, PromotableMemOpInterface, SafeMemorySlotAccessOpInterface

Attributes: 

AttributeMLIR TypeDescription
alignment::mlir::IntegerAttr64-bit signless integer attribute
volatile_::mlir::UnitAttrunit attribute
nontemporal::mlir::UnitAttrunit attribute
ordering::mlir::LLVM::AtomicOrderingAttrAtomic ordering for LLVM’s memory model
syncscope::mlir::StringAttrstring attribute
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
valueLLVM type with size
addrLLVM pointer to LLVM type with size

llvm.sub (::mlir::LLVM::SubOp) 

Syntax:

operation ::= `llvm.sub` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.switch (::mlir::LLVM::SwitchOp) 

Syntax:

operation ::= `llvm.switch` $value `:` type($value) `,`
              $defaultDestination (`(` $defaultOperands^ `:` type($defaultOperands) `)`)?
              `[` `\n` custom<SwitchOpCases>(ref(type($value)), $case_values, $caseDestinations,
              $caseOperands, type($caseOperands)) `]`
              attr-dict

Traits: AlwaysSpeculatableImplTrait, AttrSizedOperandSegments, Terminator

Interfaces: BranchOpInterface, ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
case_values::mlir::ElementsAttrconstant vector/tensor attribute
case_operand_segments::mlir::DenseI32ArrayAttri32 dense array attribute
branch_weights::mlir::ElementsAttrconstant vector/tensor attribute

Operands: 

OperandDescription
valueinteger
defaultOperandsany type
caseOperandsany type

Successors: 

SuccessorDescription
defaultDestinationany successor
caseDestinationsany successor

llvm.tbaa_root (::mlir::LLVM::TBAARootMetadataOp) 

LLVM dialect TBAA root node metadata.

Syntax:

operation ::= `llvm.tbaa_root` $sym_name ` ` `{` `id` `=` $identity `}` attr-dict

Defines a TBAA root node.

Example:

llvm.metadata @tbaa {
  llvm.tbaa_root @tbaa_root_0 {identity = "Simple C/C++ TBAA"}
}

See the following link for more details: https://llvm.org/docs/LangRef.html#tbaa-metadata

Traits: HasParent

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute
identity::mlir::StringAttrstring attribute

llvm.tbaa_tag (::mlir::LLVM::TBAATagOp) 

LLVM dialect TBAA node describing a memory access.

Syntax:

operation ::= `llvm.tbaa_tag` $sym_name attr-dict

Defines a TBAA node describing a memory access.

Example:

llvm.metadata @tbaa {
  llvm.tbaa_root @tbaa_root_0 {identity = "Simple C/C++ TBAA"}
  llvm.tbaa_type_desc @tbaa_type_desc_1 {
      identity = "omnipotent char",
      members = [@tbaa_root_0],
      offsets = array<i64: 0>
  }
  llvm.tbaa_type_desc @tbaa_type_desc_2 {
      identity = "long long",
      members = [@tbaa_type_desc_1],
      offsets = array<i64: 0>
  }
  llvm.tbaa_type_desc @tbaa_type_desc_3 {
      identity = "agg2_t",
      members = [@tbaa_type_desc_2, @tbaa_type_desc_2],
      offsets = array<i64: 0, 8>
  }
  llvm.tbaa_tag @tbaa_tag_4 {
      access_type = @tbaa_type_desc_2,
      base_type = @tbaa_type_desc_3,
      offset = 8 : i64
  }
  llvm.tbaa_type_desc @tbaa_type_desc_5 {
      identity = "int",
      members = [@tbaa_type_desc_1],
      offsets = array<i64: 0>
  }
  llvm.tbaa_type_desc @tbaa_type_desc_6 {
      identity = "agg1_t",
      members = [@tbaa_type_desc_5, @tbaa_type_desc_5],
      offsets = array<i64: 0, 4>
  }
  llvm.tbaa_tag @tbaa_tag_7 {
      access_type = @tbaa_type_desc_5,
      base_type = @tbaa_type_desc_6,
      offset = 0 : i64
  }
}

See the following link for more details: https://llvm.org/docs/LangRef.html#tbaa-metadata

Traits: HasParent

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute
base_type::mlir::FlatSymbolRefAttrflat symbol reference attribute
access_type::mlir::FlatSymbolRefAttrflat symbol reference attribute
offset::mlir::IntegerAttr64-bit signless integer attribute
constant::mlir::UnitAttrunit attribute

llvm.tbaa_type_desc (::mlir::LLVM::TBAATypeDescriptorOp) 

LLVM dialect TBAA node describing a type.

Syntax:

operation ::= `llvm.tbaa_type_desc` $sym_name ` ` `{`
              ( `id` `=` $identity^ )? `,`
              `members` `=` `{` custom<TBAAMembers>($members, $offsets) `}`
              `}` attr-dict

Defines a TBAA node describing a type.

Example:

llvm.metadata @tbaa {
  llvm.tbaa_root @tbaa_root_0 {identity = "Simple C/C++ TBAA"}
  llvm.tbaa_type_desc @tbaa_type_desc_1 {
      identity = "omnipotent char",
      members = [@tbaa_root_0],
      offsets = array<i64: 0>
  }
  llvm.tbaa_type_desc @tbaa_type_desc_2 {
      identity = "long long",
      members = [@tbaa_type_desc_1],
      offsets = array<i64: 0>
  }
  llvm.tbaa_type_desc @tbaa_type_desc_3 {
      identity = "agg2_t",
      members = [@tbaa_type_desc_2, @tbaa_type_desc_2],
      offsets = array<i64: 0, 8>
  }
  llvm.tbaa_type_desc @tbaa_type_desc_5 {
      identity = "int",
      members = [@tbaa_type_desc_1],
      offsets = array<i64: 0>
  }
  llvm.tbaa_type_desc @tbaa_type_desc_6 {
      identity = "agg1_t",
      members = [@tbaa_type_desc_5, @tbaa_type_desc_5],
      offsets = array<i64: 0, 4>
  }
}

See the following link for more details: https://llvm.org/docs/LangRef.html#tbaa-metadata

Traits: HasParent

Interfaces: Symbol

Attributes: 

AttributeMLIR TypeDescription
sym_name::mlir::StringAttrstring attribute
identity::mlir::StringAttrstring attribute
members::mlir::ArrayAttrflat symbol ref array attribute
offsets::mlir::DenseI64ArrayAttri64 dense array attribute

llvm.trunc (::mlir::LLVM::TruncOp) 

Syntax:

operation ::= `llvm.trunc` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
arginteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.udiv (::mlir::LLVM::UDivOp) 

Syntax:

operation ::= `llvm.udiv` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.uitofp (::mlir::LLVM::UIToFPOp) 

Syntax:

operation ::= `llvm.uitofp` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
arginteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

llvm.urem (::mlir::LLVM::URemOp) 

Syntax:

operation ::= `llvm.urem` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.mlir.undef (::mlir::LLVM::UndefOp) 

Creates an undefined value of LLVM dialect type.

Syntax:

operation ::= `llvm.mlir.undef` attr-dict `:` type($res)

Unlike LLVM IR, MLIR does not have first-class undefined values. Such values must be created as SSA values using llvm.mlir.undef. This operation has no operands or attributes. It creates an undefined value of the specified LLVM IR dialect type.

Example:

// Create a structure with a 32-bit integer followed by a float.
%0 = llvm.mlir.undef : !llvm.struct<(i32, f32)>

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.unreachable (::mlir::LLVM::UnreachableOp) 

Syntax:

operation ::= `llvm.unreachable` attr-dict

Traits: Terminator

llvm.xor (::mlir::LLVM::XOrOp) 

Syntax:

operation ::= `llvm.xor` $lhs `,` $rhs custom<LLVMOpAttrs>(attr-dict) `:` type($res)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsinteger or LLVM dialect-compatible vector of integer
rhsinteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

llvm.zext (::mlir::LLVM::ZExtOp) 

Syntax:

operation ::= `llvm.zext` $arg attr-dict `:` type($arg) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
arginteger or LLVM dialect-compatible vector of integer

Results: 

ResultDescription
resinteger or LLVM dialect-compatible vector of integer

Operations for LLVM IR Intrinsics 

MLIR operation system is open making it unnecessary to introduce a hard bound between “core” operations and “intrinsics”. General LLVM IR intrinsics are modeled as first-class operations in the LLVM dialect. Target-specific LLVM IR intrinsics, e.g., NVVM or ROCDL, are modeled as separate dialects.

llvm.intr.abs (::mlir::LLVM::AbsOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
insignless integer or LLVM dialect-compatible vector of signless integer
is_int_min_poison1-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.assume (::mlir::LLVM::AssumeOp) 

Operands: 

OperandDescription
cond1-bit signless integer

llvm.intr.bitreverse (::mlir::LLVM::BitReverseOp) 

Syntax:

operation ::= `llvm.intr.bitreverse` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
insignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.bswap (::mlir::LLVM::ByteSwapOp) 

Syntax:

operation ::= `llvm.intr.bswap` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
insignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.call_intrinsic (::mlir::LLVM::CallIntrinsicOp) 

Call to an LLVM intrinsic function.

Syntax:

operation ::= `llvm.call_intrinsic` $intrin `(` $args `)` `:` functional-type($args, $results)
              custom<LLVMOpAttrs>(attr-dict)

Call the specified llvm intrinsic. If the intrinsic is overloaded, use the MLIR function type of this op to determine which intrinsic to call.

Interfaces: FastmathFlagsInterface

Attributes: 

AttributeMLIR TypeDescription
intrin::mlir::StringAttrstring attribute
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
argsLLVM dialect-compatible type

Results: 

ResultDescription
resultsLLVM dialect-compatible type

llvm.intr.copysign (::mlir::LLVM::CopySignOp) 

Syntax:

operation ::= `llvm.intr.copysign` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.align (::mlir::LLVM::CoroAlignOp) 

Syntax:

operation ::= `llvm.intr.coro.align` attr-dict `:` type($res)

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.begin (::mlir::LLVM::CoroBeginOp) 

Syntax:

operation ::= `llvm.intr.coro.begin` $token `,` $mem attr-dict `:` functional-type(operands, results)

Operands: 

OperandDescription
tokenLLVM token type
memLLVM pointer to 8-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.end (::mlir::LLVM::CoroEndOp) 

Syntax:

operation ::= `llvm.intr.coro.end` $handle `,` $unwind attr-dict `:` functional-type(operands, results)

Operands: 

OperandDescription
handleLLVM pointer to 8-bit signless integer
unwind1-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.free (::mlir::LLVM::CoroFreeOp) 

Syntax:

operation ::= `llvm.intr.coro.free` $id `,` $handle attr-dict `:` functional-type(operands, results)

Operands: 

OperandDescription
idLLVM token type
handleLLVM pointer to 8-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.id (::mlir::LLVM::CoroIdOp) 

Syntax:

operation ::= `llvm.intr.coro.id` $align `,` $promise `,` $coroaddr `,` $fnaddrs attr-dict `:` functional-type(operands, results)

Operands: 

OperandDescription
align32-bit signless integer
promiseLLVM pointer to 8-bit signless integer
coroaddrLLVM pointer to 8-bit signless integer
fnaddrsLLVM pointer to 8-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.resume (::mlir::LLVM::CoroResumeOp) 

Syntax:

operation ::= `llvm.intr.coro.resume` $handle attr-dict `:` qualified(type($handle))

Operands: 

OperandDescription
handleLLVM pointer to 8-bit signless integer

llvm.intr.coro.save (::mlir::LLVM::CoroSaveOp) 

Syntax:

operation ::= `llvm.intr.coro.save` $handle attr-dict `:` functional-type(operands, results)

Operands: 

OperandDescription
handleLLVM pointer to 8-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.size (::mlir::LLVM::CoroSizeOp) 

Syntax:

operation ::= `llvm.intr.coro.size` attr-dict `:` type($res)

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.coro.suspend (::mlir::LLVM::CoroSuspendOp) 

Syntax:

operation ::= `llvm.intr.coro.suspend` $save `,` $final attr-dict `:` type($res)

Operands: 

OperandDescription
saveLLVM token type
final1-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.cos (::mlir::LLVM::CosOp) 

Syntax:

operation ::= `llvm.intr.cos` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.ctlz (::mlir::LLVM::CountLeadingZerosOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
insignless integer or LLVM dialect-compatible vector of signless integer
zero_undefined1-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.cttz (::mlir::LLVM::CountTrailingZerosOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
insignless integer or LLVM dialect-compatible vector of signless integer
zero_undefined1-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.ctpop (::mlir::LLVM::CtPopOp) 

Syntax:

operation ::= `llvm.intr.ctpop` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
insignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.dbg.declare (::mlir::LLVM::DbgDeclareOp) 

Declare the address of a local debug info variable.

Syntax:

operation ::= `llvm.intr.dbg.declare` qualified($varInfo) `=` $addr `:` qualified(type($addr)) attr-dict

Interfaces: PromotableOpInterface

Attributes: 

AttributeMLIR TypeDescription
varInfo::mlir::LLVM::DILocalVariableAttr

Operands: 

OperandDescription
addrLLVM pointer type

llvm.intr.dbg.value (::mlir::LLVM::DbgValueOp) 

Describe the current value of a local debug info variable.

Syntax:

operation ::= `llvm.intr.dbg.value` qualified($varInfo) `=` $value `:` qualified(type($value)) attr-dict

Attributes: 

AttributeMLIR TypeDescription
varInfo::mlir::LLVM::DILocalVariableAttr

Operands: 

OperandDescription
valueLLVM dialect-compatible type

llvm.intr.debugtrap (::mlir::LLVM::DebugTrap) 

llvm.intr.eh.typeid.for (::mlir::LLVM::EhTypeidForOp) 

Syntax:

operation ::= `llvm.intr.eh.typeid.for` $type_info attr-dict `:` functional-type(operands, results)

Operands: 

OperandDescription
type_infoLLVM pointer to 8-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.exp2 (::mlir::LLVM::Exp2Op) 

Syntax:

operation ::= `llvm.intr.exp2` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.exp (::mlir::LLVM::ExpOp) 

Syntax:

operation ::= `llvm.intr.exp` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.expect (::mlir::LLVM::ExpectOp) 

Syntax:

operation ::= `llvm.intr.expect` $val `,` $expected attr-dict `:` type($val)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
valsignless integer
expectedsignless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.expect.with.probability (::mlir::LLVM::ExpectWithProbabilityOp) 

Syntax:

operation ::= `llvm.intr.expect.with.probability` $val `,` $expected `,` $prob attr-dict `:` type($val)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
prob::mlir::FloatAttr64-bit float attribute

Operands: 

OperandDescription
valsignless integer
expectedsignless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.fabs (::mlir::LLVM::FAbsOp) 

Syntax:

operation ::= `llvm.intr.fabs` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.ceil (::mlir::LLVM::FCeilOp) 

Syntax:

operation ::= `llvm.intr.ceil` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.floor (::mlir::LLVM::FFloorOp) 

Syntax:

operation ::= `llvm.intr.floor` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.fma (::mlir::LLVM::FMAOp) 

Syntax:

operation ::= `llvm.intr.fma` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
cfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.fmuladd (::mlir::LLVM::FMulAddOp) 

Syntax:

operation ::= `llvm.intr.fmuladd` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
cfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.trunc (::mlir::LLVM::FTruncOp) 

Syntax:

operation ::= `llvm.intr.trunc` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.fshl (::mlir::LLVM::FshlOp) 

Syntax:

operation ::= `llvm.intr.fshl` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer
csignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.fshr (::mlir::LLVM::FshrOp) 

Syntax:

operation ::= `llvm.intr.fshr` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer
csignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.get.active.lane.mask (::mlir::LLVM::GetActiveLaneMaskOp) 

Syntax:

operation ::= `llvm.intr.get.active.lane.mask` $base `,` $n attr-dict `:` type($base) `,` type($n) `to` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
basesignless integer
nsignless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.is.constant (::mlir::LLVM::IsConstantOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
valLLVM dialect-compatible type

Results: 

ResultDescription
res1-bit signless integer

llvm.intr.is.fpclass (::mlir::LLVM::IsFPClass) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bit32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.lifetime.end (::mlir::LLVM::LifetimeEndOp) 

Syntax:

operation ::= `llvm.intr.lifetime.end` $size `,` $ptr attr-dict `:` qualified(type($ptr))

Interfaces: PromotableOpInterface

Attributes: 

AttributeMLIR TypeDescription
size::mlir::IntegerAttr64-bit signless integer attribute

Operands: 

OperandDescription
ptrLLVM pointer type

llvm.intr.lifetime.start (::mlir::LLVM::LifetimeStartOp) 

Syntax:

operation ::= `llvm.intr.lifetime.start` $size `,` $ptr attr-dict `:` qualified(type($ptr))

Interfaces: PromotableOpInterface

Attributes: 

AttributeMLIR TypeDescription
size::mlir::IntegerAttr64-bit signless integer attribute

Operands: 

OperandDescription
ptrLLVM pointer type

llvm.intr.llrint (::mlir::LLVM::LlrintOp) 

Syntax:

operation ::= `llvm.intr.llrint` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
valfloating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.llround (::mlir::LLVM::LlroundOp) 

Syntax:

operation ::= `llvm.intr.llround` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
valfloating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.log10 (::mlir::LLVM::Log10Op) 

Syntax:

operation ::= `llvm.intr.log10` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.log2 (::mlir::LLVM::Log2Op) 

Syntax:

operation ::= `llvm.intr.log2` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.log (::mlir::LLVM::LogOp) 

Syntax:

operation ::= `llvm.intr.log` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.lrint (::mlir::LLVM::LrintOp) 

Syntax:

operation ::= `llvm.intr.lrint` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
valfloating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.lround (::mlir::LLVM::LroundOp) 

Syntax:

operation ::= `llvm.intr.lround` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
valfloating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.masked.load (::mlir::LLVM::MaskedLoadOp) 

Syntax:

operation ::= `llvm.intr.masked.load` operands attr-dict `:` functional-type(operands, results)

Attributes: 

AttributeMLIR TypeDescription
alignment::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
dataLLVM pointer type
maskLLVM dialect-compatible vector of 1-bit signless integer
pass_thruLLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.intr.masked.store (::mlir::LLVM::MaskedStoreOp) 

Syntax:

operation ::= `llvm.intr.masked.store` $value `,` $data `,` $mask attr-dict `:` type($value) `,` type($mask) `into` qualified(type($data))

Attributes: 

AttributeMLIR TypeDescription
alignment::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
valueLLVM dialect-compatible vector type
dataLLVM pointer type
maskLLVM dialect-compatible vector of 1-bit signless integer

llvm.intr.matrix.column.major.load (::mlir::LLVM::MatrixColumnMajorLoadOp) 

Syntax:

operation ::= `llvm.intr.matrix.column.major.load` $data `,` `<` `stride` `=` $stride `>` attr-dict`:` type($res) `from` qualified(type($data)) `stride` type($stride)

Attributes: 

AttributeMLIR TypeDescription
isVolatile::mlir::IntegerAttr1-bit signless integer attribute
rows::mlir::IntegerAttr32-bit signless integer attribute
columns::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
dataLLVM pointer type
stridesignless integer

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.intr.matrix.column.major.store (::mlir::LLVM::MatrixColumnMajorStoreOp) 

Syntax:

operation ::= `llvm.intr.matrix.column.major.store` $matrix `,` $data `,` `<` `stride` `=` $stride `>` attr-dict`:` type($matrix) `to` qualified(type($data)) `stride` type($stride)

Attributes: 

AttributeMLIR TypeDescription
isVolatile::mlir::IntegerAttr1-bit signless integer attribute
rows::mlir::IntegerAttr32-bit signless integer attribute
columns::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
matrixLLVM dialect-compatible vector type
dataLLVM pointer type
stridesignless integer

llvm.intr.matrix.multiply (::mlir::LLVM::MatrixMultiplyOp) 

Syntax:

operation ::= `llvm.intr.matrix.multiply` $lhs `,` $rhs attr-dict `:` `(` type($lhs) `,` type($rhs) `)` `->` type($res)

Attributes: 

AttributeMLIR TypeDescription
lhs_rows::mlir::IntegerAttr32-bit signless integer attribute
lhs_columns::mlir::IntegerAttr32-bit signless integer attribute
rhs_columns::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector type
rhsLLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.intr.matrix.transpose (::mlir::LLVM::MatrixTransposeOp) 

Syntax:

operation ::= `llvm.intr.matrix.transpose` $matrix attr-dict `:` type($matrix) `into` type($res)

Attributes: 

AttributeMLIR TypeDescription
rows::mlir::IntegerAttr32-bit signless integer attribute
columns::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
matrixLLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.intr.maxnum (::mlir::LLVM::MaxNumOp) 

Syntax:

operation ::= `llvm.intr.maxnum` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.maximum (::mlir::LLVM::MaximumOp) 

Syntax:

operation ::= `llvm.intr.maximum` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.memcpy.inline (::mlir::LLVM::MemcpyInlineOp) 

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface

Attributes: 

AttributeMLIR TypeDescription
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
dstLLVM pointer type
srcLLVM pointer type
lensignless integer
isVolatile1-bit signless integer

llvm.intr.memcpy (::mlir::LLVM::MemcpyOp) 

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface

Attributes: 

AttributeMLIR TypeDescription
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
dstLLVM pointer type
srcLLVM pointer type
lensignless integer
isVolatile1-bit signless integer

llvm.intr.memmove (::mlir::LLVM::MemmoveOp) 

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface

Attributes: 

AttributeMLIR TypeDescription
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
dstLLVM pointer type
srcLLVM pointer type
lensignless integer
isVolatile1-bit signless integer

llvm.intr.memset (::mlir::LLVM::MemsetOp) 

Interfaces: AccessGroupOpInterface, AliasAnalysisOpInterface

Attributes: 

AttributeMLIR TypeDescription
access_groups::mlir::ArrayAttrsymbol ref array attribute
alias_scopes::mlir::ArrayAttrsymbol ref array attribute
noalias_scopes::mlir::ArrayAttrsymbol ref array attribute
tbaa::mlir::ArrayAttrsymbol ref array attribute

Operands: 

OperandDescription
dstLLVM pointer type
val8-bit signless integer
lensignless integer
isVolatile1-bit signless integer

llvm.intr.minnum (::mlir::LLVM::MinNumOp) 

Syntax:

operation ::= `llvm.intr.minnum` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.minimum (::mlir::LLVM::MinimumOp) 

Syntax:

operation ::= `llvm.intr.minimum` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.nearbyint (::mlir::LLVM::NearbyintOp) 

Syntax:

operation ::= `llvm.intr.nearbyint` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.experimental.noalias.scope.decl (::mlir::LLVM::NoAliasScopeDeclOp) 

Syntax:

operation ::= `llvm.intr.experimental.noalias.scope.decl` $scope attr-dict

Attributes: 

AttributeMLIR TypeDescription
scope::mlir::SymbolRefAttrsymbol reference attribute

llvm.intr.powi (::mlir::LLVM::PowIOp) 

Syntax:

operation ::= `llvm.intr.powi` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
valfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
powersignless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.pow (::mlir::LLVM::PowOp) 

Syntax:

operation ::= `llvm.intr.pow` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
afloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type
bfloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.prefetch (::mlir::LLVM::Prefetch) 

Operands: 

OperandDescription
addrLLVM pointer type
rw32-bit signless integer
hint32-bit signless integer
cache32-bit signless integer

llvm.intr.rint (::mlir::LLVM::RintOp) 

Syntax:

operation ::= `llvm.intr.rint` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.roundeven (::mlir::LLVM::RoundEvenOp) 

Syntax:

operation ::= `llvm.intr.roundeven` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.round (::mlir::LLVM::RoundOp) 

Syntax:

operation ::= `llvm.intr.round` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.sadd.sat (::mlir::LLVM::SAddSat) 

Syntax:

operation ::= `llvm.intr.sadd.sat` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.sadd.with.overflow (::mlir::LLVM::SAddWithOverflowOp) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.smax (::mlir::LLVM::SMaxOp) 

Syntax:

operation ::= `llvm.intr.smax` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.smin (::mlir::LLVM::SMinOp) 

Syntax:

operation ::= `llvm.intr.smin` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.smul.with.overflow (::mlir::LLVM::SMulWithOverflowOp) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.sshl.sat (::mlir::LLVM::SSHLSat) 

Syntax:

operation ::= `llvm.intr.sshl.sat` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.ssub.sat (::mlir::LLVM::SSubSat) 

Syntax:

operation ::= `llvm.intr.ssub.sat` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.ssub.with.overflow (::mlir::LLVM::SSubWithOverflowOp) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.sin (::mlir::LLVM::SinOp) 

Syntax:

operation ::= `llvm.intr.sin` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.sqrt (::mlir::LLVM::SqrtOp) 

Syntax:

operation ::= `llvm.intr.sqrt` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
infloating point LLVM type or LLVM dialect-compatible vector of floating point LLVM type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.stackrestore (::mlir::LLVM::StackRestoreOp) 

Syntax:

operation ::= `llvm.intr.stackrestore` $ptr attr-dict `:` qualified(type($ptr))

Operands: 

OperandDescription
ptrLLVM pointer to 8-bit signless integer

llvm.intr.stacksave (::mlir::LLVM::StackSaveOp) 

Syntax:

operation ::= `llvm.intr.stacksave` attr-dict `:` type($res)

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.experimental.stepvector (::mlir::LLVM::StepVectorOp) 

Syntax:

operation ::= `llvm.intr.experimental.stepvector` attr-dict `:` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Results: 

ResultDescription
resLLVM dialect-compatible vector of signless integer

llvm.intr.threadlocal.address (::mlir::LLVM::ThreadlocalAddressOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
globalLLVM pointer type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.trap (::mlir::LLVM::Trap) 

llvm.intr.uadd.sat (::mlir::LLVM::UAddSat) 

Syntax:

operation ::= `llvm.intr.uadd.sat` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.uadd.with.overflow (::mlir::LLVM::UAddWithOverflowOp) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.ubsantrap (::mlir::LLVM::UBSanTrap) 

Attributes: 

AttributeMLIR TypeDescription
failureKind::mlir::IntegerAttr8-bit signless integer attribute

llvm.intr.umax (::mlir::LLVM::UMaxOp) 

Syntax:

operation ::= `llvm.intr.umax` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.umin (::mlir::LLVM::UMinOp) 

Syntax:

operation ::= `llvm.intr.umin` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.umul.with.overflow (::mlir::LLVM::UMulWithOverflowOp) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.ushl.sat (::mlir::LLVM::USHLSat) 

Syntax:

operation ::= `llvm.intr.ushl.sat` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.usub.sat (::mlir::LLVM::USubSat) 

Syntax:

operation ::= `llvm.intr.usub.sat` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultType

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
asignless integer or LLVM dialect-compatible vector of signless integer
bsignless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.usub.with.overflow (::mlir::LLVM::USubWithOverflowOp) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer
«unnamed»signless integer or LLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.ashr (::mlir::LLVM::VPAShrOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.add (::mlir::LLVM::VPAddOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.and (::mlir::LLVM::VPAndOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fadd (::mlir::LLVM::VPFAddOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of floating-point
rhsLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fdiv (::mlir::LLVM::VPFDivOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of floating-point
rhsLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fmuladd (::mlir::LLVM::VPFMulAddOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
op1LLVM dialect-compatible vector of floating-point
op2LLVM dialect-compatible vector of floating-point
op3LLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fmul (::mlir::LLVM::VPFMulOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of floating-point
rhsLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fneg (::mlir::LLVM::VPFNegOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
opLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fpext (::mlir::LLVM::VPFPExtOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fptosi (::mlir::LLVM::VPFPToSIOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fptoui (::mlir::LLVM::VPFPToUIOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fptrunc (::mlir::LLVM::VPFPTruncOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.frem (::mlir::LLVM::VPFRemOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of floating-point
rhsLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fsub (::mlir::LLVM::VPFSubOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of floating-point
rhsLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.fma (::mlir::LLVM::VPFmaOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
op1LLVM dialect-compatible vector of floating-point
op2LLVM dialect-compatible vector of floating-point
op3LLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.inttoptr (::mlir::LLVM::VPIntToPtrOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.lshr (::mlir::LLVM::VPLShrOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.load (::mlir::LLVM::VPLoadOp) 

Operands: 

OperandDescription
ptrLLVM pointer type
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.merge (::mlir::LLVM::VPMergeMinOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
condLLVM dialect-compatible vector of 1-bit signless integer
true_valLLVM dialect-compatible vector type
false_valLLVM dialect-compatible vector type
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.mul (::mlir::LLVM::VPMulOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.or (::mlir::LLVM::VPOrOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.ptrtoint (::mlir::LLVM::VPPtrToIntOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of LLVM pointer type
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.add (::mlir::LLVM::VPReduceAddOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.and (::mlir::LLVM::VPReduceAndOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.fadd (::mlir::LLVM::VPReduceFAddOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuefloating-point
valLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.fmax (::mlir::LLVM::VPReduceFMaxOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuefloating-point
valLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.fmin (::mlir::LLVM::VPReduceFMinOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuefloating-point
valLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.fmul (::mlir::LLVM::VPReduceFMulOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuefloating-point
valLLVM dialect-compatible vector of floating-point
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.mul (::mlir::LLVM::VPReduceMulOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.or (::mlir::LLVM::VPReduceOrOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.smax (::mlir::LLVM::VPReduceSMaxOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.smin (::mlir::LLVM::VPReduceSMinOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.umax (::mlir::LLVM::VPReduceUMaxOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.umin (::mlir::LLVM::VPReduceUMinOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.reduce.xor (::mlir::LLVM::VPReduceXorOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
satrt_valuesignless integer
valLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.sdiv (::mlir::LLVM::VPSDivOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.sext (::mlir::LLVM::VPSExtOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.sitofp (::mlir::LLVM::VPSIToFPOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.srem (::mlir::LLVM::VPSRemOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.select (::mlir::LLVM::VPSelectMinOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
condLLVM dialect-compatible vector of 1-bit signless integer
true_valLLVM dialect-compatible vector type
false_valLLVM dialect-compatible vector type
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.shl (::mlir::LLVM::VPShlOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.store (::mlir::LLVM::VPStoreOp) 

Operands: 

OperandDescription
valLLVM dialect-compatible vector type
ptrLLVM pointer type
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

llvm.intr.experimental.vp.strided.load (::mlir::LLVM::VPStridedLoadOp) 

Operands: 

OperandDescription
ptrLLVM pointer type
stridesignless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.experimental.vp.strided.store (::mlir::LLVM::VPStridedStoreOp) 

Operands: 

OperandDescription
valLLVM dialect-compatible vector type
ptrLLVM pointer type
stridesignless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

llvm.intr.vp.sub (::mlir::LLVM::VPSubOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.trunc (::mlir::LLVM::VPTruncOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.udiv (::mlir::LLVM::VPUDivOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.uitofp (::mlir::LLVM::VPUIToFPOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.urem (::mlir::LLVM::VPURemOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.xor (::mlir::LLVM::VPXorOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
lhsLLVM dialect-compatible vector of signless integer
rhsLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vp.zext (::mlir::LLVM::VPZExtOp) 

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
srcLLVM dialect-compatible vector of signless integer
maskLLVM dialect-compatible vector of 1-bit signless integer
evl32-bit signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vacopy (::mlir::LLVM::VaCopyOp) 

Copies the current argument position from src_list to dest_list.

Syntax:

operation ::= `llvm.intr.vacopy` $src_list `to` $dest_list attr-dict `:` type(operands)

Operands: 

OperandDescription
dest_listLLVM pointer to 8-bit signless integer
src_listLLVM pointer to 8-bit signless integer

llvm.intr.vaend (::mlir::LLVM::VaEndOp) 

Destroys arg_list, which has been initialized by intr.vastart or intr.vacopy.

Syntax:

operation ::= `llvm.intr.vaend` $arg_list attr-dict `:` qualified(type($arg_list))

Operands: 

OperandDescription
arg_listLLVM pointer to 8-bit signless integer

llvm.intr.vastart (::mlir::LLVM::VaStartOp) 

Initializes arg_list for subsequent variadic argument extractions.

Syntax:

operation ::= `llvm.intr.vastart` $arg_list attr-dict `:` qualified(type($arg_list))

Operands: 

OperandDescription
arg_listLLVM pointer to 8-bit signless integer

llvm.intr.masked.compressstore (::mlir::LLVM::masked_compressstore) 

Operands: 

OperandDescription
«unnamed»LLVM dialect-compatible vector type
«unnamed»LLVM pointer type
«unnamed»LLVM dialect-compatible vector of 1-bit signless integer

llvm.intr.masked.expandload (::mlir::LLVM::masked_expandload) 

Operands: 

OperandDescription
«unnamed»LLVM pointer type
«unnamed»LLVM dialect-compatible vector of 1-bit signless integer
«unnamed»LLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.masked.gather (::mlir::LLVM::masked_gather) 

Syntax:

operation ::= `llvm.intr.masked.gather` operands attr-dict `:` functional-type(operands, results)

Attributes: 

AttributeMLIR TypeDescription
alignment::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
ptrsLLVM dialect-compatible vector of LLVM pointer type
maskLLVM dialect-compatible vector of 1-bit signless integer
pass_thruLLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.intr.masked.scatter (::mlir::LLVM::masked_scatter) 

Syntax:

operation ::= `llvm.intr.masked.scatter` $value `,` $ptrs `,` $mask attr-dict `:` type($value) `,` type($mask) `into` type($ptrs)

Attributes: 

AttributeMLIR TypeDescription
alignment::mlir::IntegerAttr32-bit signless integer attribute

Operands: 

OperandDescription
valueLLVM dialect-compatible vector type
ptrsLLVM dialect-compatible vector of LLVM pointer type
maskLLVM dialect-compatible vector of 1-bit signless integer

llvm.intr.vector.extract (::mlir::LLVM::vector_extract) 

Syntax:

operation ::= `llvm.intr.vector.extract` $srcvec `[` $pos `]` attr-dict `:` type($res) `from` type($srcvec)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
pos::mlir::IntegerAttr64-bit signless integer attribute

Operands: 

OperandDescription
srcvecLLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.intr.vector.insert (::mlir::LLVM::vector_insert) 

Syntax:

operation ::= `llvm.intr.vector.insert` $srcvec `,` $dstvec `[` $pos `]` attr-dict `:` type($srcvec) `into` type($res)

Traits: AlwaysSpeculatableImplTrait

Interfaces: ConditionallySpeculatable, InferTypeOpInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
pos::mlir::IntegerAttr64-bit signless integer attribute

Operands: 

OperandDescription
srcvecLLVM dialect-compatible vector type
dstvecLLVM dialect-compatible vector type

Results: 

ResultDescription
resLLVM dialect-compatible vector type

llvm.intr.vector.reduce.add (::mlir::LLVM::vector_reduce_add) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.and (::mlir::LLVM::vector_reduce_and) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.fadd (::mlir::LLVM::vector_reduce_fadd) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
reassoc::mlir::BoolAttrbool attribute

Operands: 

OperandDescription
start_valuefloating-point
inputLLVM dialect-compatible vector of floating-point

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.fmax (::mlir::LLVM::vector_reduce_fmax) 

Syntax:

operation ::= `llvm.intr.vector.reduce.fmax` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
inLLVM dialect-compatible vector of floating-point

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.fmin (::mlir::LLVM::vector_reduce_fmin) 

Syntax:

operation ::= `llvm.intr.vector.reduce.fmin` `(` operands `)` custom<LLVMOpAttrs>(attr-dict) `:` functional-type(operands, results)

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, FastmathFlagsInterface, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
fastmathFlags::mlir::LLVM::FastmathFlagsAttrLLVM fastmath flags

Operands: 

OperandDescription
inLLVM dialect-compatible vector of floating-point

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.fmul (::mlir::LLVM::vector_reduce_fmul) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Attributes: 

AttributeMLIR TypeDescription
reassoc::mlir::BoolAttrbool attribute

Operands: 

OperandDescription
start_valuefloating-point
inputLLVM dialect-compatible vector of floating-point

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.mul (::mlir::LLVM::vector_reduce_mul) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.or (::mlir::LLVM::vector_reduce_or) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.smax (::mlir::LLVM::vector_reduce_smax) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.smin (::mlir::LLVM::vector_reduce_smin) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.umax (::mlir::LLVM::vector_reduce_umax) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.umin (::mlir::LLVM::vector_reduce_umin) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vector.reduce.xor (::mlir::LLVM::vector_reduce_xor) 

Traits: AlwaysSpeculatableImplTrait, SameOperandsAndResultElementType

Interfaces: ConditionallySpeculatable, NoMemoryEffect (MemoryEffectOpInterface)

Effects: MemoryEffects::Effect{}

Operands: 

OperandDescription
inLLVM dialect-compatible vector of signless integer

Results: 

ResultDescription
resLLVM dialect-compatible type

llvm.intr.vscale (::mlir::LLVM::vscale) 

Results: 

ResultDescription
resLLVM dialect-compatible type

Debug Info 

Debug information within the LLVM dialect is represented using locations in combination with a set of attributes that mirror the DINode structure defined by the debug info metadata within LLVM IR. Debug scoping information is attached to LLVM IR dialect operations using a fused location (FusedLoc) whose metadata holds the DIScopeAttr representing the debug scope. Similarly, the subprogram of LLVM IR dialect FuncOp operations is attached using a fused location whose metadata is a DISubprogramAttr.