|
MLIR 23.0.0git
|
#include <cassert>#include <cstdint>#include <functional>#include <utility>#include "mlir/Dialect/Arith/IR/Arith.h"#include "mlir/Dialect/CommonFolders.h"#include "mlir/Dialect/UB/IR/UBMatchers.h"#include "mlir/IR/Builders.h"#include "mlir/IR/BuiltinAttributeInterfaces.h"#include "mlir/IR/BuiltinAttributes.h"#include "mlir/IR/Matchers.h"#include "mlir/IR/OpImplementation.h"#include "mlir/IR/PatternMatch.h"#include "mlir/IR/TypeUtilities.h"#include "mlir/Support/LogicalResult.h"#include "llvm/ADT/APFloat.h"#include "llvm/ADT/APInt.h"#include "llvm/ADT/APSInt.h"#include "llvm/ADT/FloatingPointMode.h"#include "llvm/ADT/STLExtras.h"#include "llvm/ADT/SmallVector.h"#include "llvm/ADT/TypeSwitch.h"#include "ArithCanonicalization.inc"#include "mlir/Dialect/Arith/IR/ArithOps.cpp.inc"#include "mlir/Dialect/Arith/IR/ArithOpsEnums.cpp.inc"Go to the source code of this file.
Classes | |
| class | CmpFIntToFPConst |
| struct | SelectToExtUI |
Macros | |
| #define | GET_OP_CLASSES |
Typedefs | |
| template<typename... Types> | |
| using | type_list = std::tuple<Types...> * |
Functions | |
| static IntegerAttr | applyToIntegerAttrs (PatternRewriter &builder, Value res, Attribute lhs, Attribute rhs, function_ref< APInt(const APInt &, const APInt &)> binFn) |
| static IntegerAttr | addIntegerAttrs (PatternRewriter &builder, Value res, Attribute lhs, Attribute rhs) |
| static IntegerAttr | subIntegerAttrs (PatternRewriter &builder, Value res, Attribute lhs, Attribute rhs) |
| static IntegerAttr | mulIntegerAttrs (PatternRewriter &builder, Value res, Attribute lhs, Attribute rhs) |
| static IntegerAttr | andIntegerAttrs (PatternRewriter &builder, Value res, Attribute lhs, Attribute rhs) |
| static IntegerAttr | orIntegerAttrs (PatternRewriter &builder, Value res, Attribute lhs, Attribute rhs) |
| static IntegerAttr | xorIntegerAttrs (PatternRewriter &builder, Value res, Attribute lhs, Attribute rhs) |
| static IntegerOverflowFlagsAttr | mergeOverflowFlags (IntegerOverflowFlagsAttr val1, IntegerOverflowFlagsAttr val2) |
| static llvm::RoundingMode | convertArithRoundingModeToLLVMIR (std::optional< RoundingMode > roundingMode) |
| Equivalent to convertRoundingModeToLLVM(convertArithRoundingModeToLLVM(roundingMode)). | |
| static arith::CmpIPredicateAttr | invertPredicate (arith::CmpIPredicateAttr pred) |
| static int64_t | getScalarOrElementWidth (Type type) |
| static int64_t | getScalarOrElementWidth (Value value) |
| static FailureOr< APInt > | getIntOrSplatIntValue (Attribute attr) |
| static Attribute | getBoolAttribute (Type type, bool value) |
| static Type | getI1SameShape (Type type) |
| Return the type of the same shape (scalar, vector or tensor) containing i1. | |
| static APInt | calculateUnsignedOverflow (const APInt &sum, const APInt &operand) |
| static APInt | calculateUnsignedBorrow (const APInt &lhs, const APInt &rhs) |
| static Value | foldDivMul (Value lhs, Value rhs, arith::IntegerOverflowFlags ovfFlags) |
| Fold (a * b) / b -> a | |
| static Speculation::Speculatability | getDivUISpeculatability (Value divisor) |
| Returns whether an unsigned division by divisor is speculatable. | |
| static Speculation::Speculatability | getDivSISpeculatability (Value divisor) |
| Returns whether a signed division by divisor is speculatable. | |
| static APInt | signedCeilNonnegInputs (const APInt &a, const APInt &b, bool &overflow) |
| static Value | foldAndIofAndI (arith::AndIOp op) |
| Fold and(a, and(a, b)) to and(a, b) | |
| template<typename... ShapedTypes, typename... ElementTypes> | |
| static Type | getUnderlyingType (Type type, type_list< ShapedTypes... >, type_list< ElementTypes... >) |
| Returns a non-null type only if the provided type is one of the allowed types or one of the allowed shaped types of the allowed types. | |
| template<typename... ElementTypes> | |
| static Type | getTypeIfLike (Type type) |
| Get allowed underlying types for vectors and tensors. | |
| template<typename... ElementTypes> | |
| static Type | getTypeIfLikeOrMemRef (Type type) |
| Get allowed underlying types for vectors, tensors, and memrefs. | |
| static bool | hasSameEncoding (Type typeA, Type typeB) |
| Return false if both types are ranked tensor with mismatching encoding. | |
| static bool | areValidCastInputsAndOutputs (TypeRange inputs, TypeRange outputs) |
| template<typename ValType, typename Op> | |
| static LogicalResult | verifyExtOp (Op op) |
| template<typename ValType, typename Op> | |
| static LogicalResult | verifyTruncateOp (Op op) |
| template<template< typename > class WidthComparator, typename... ElementTypes> | |
| static bool | checkWidthChangeCast (TypeRange inputs, TypeRange outputs) |
| Validate a cast that changes the width of a type. | |
| static FailureOr< APFloat > | convertFloatValue (APFloat sourceValue, const llvm::fltSemantics &targetSemantics, llvm::RoundingMode roundingMode=kDefaultRoundingMode) |
| Attempts to convert sourceValue to an APFloat value with targetSemantics and roundingMode, without any information loss. | |
| template<typename From, typename To> | |
| static bool | checkIntFloatCast (TypeRange inputs, TypeRange outputs) |
| static unsigned | getIndexCastWidth (Type t) |
Return the bit-width of t for the purpose of index_cast width checks. | |
| static bool | areIndexCastCompatible (TypeRange inputs, TypeRange outputs) |
| static bool | applyCmpPredicateToEqualOperands (arith::CmpIPredicate predicate) |
| Returns true if the predicate is true for two equal operands. | |
| static std::optional< int64_t > | getIntegerWidth (Type t) |
Variables | |
| static constexpr llvm::RoundingMode | kDefaultRoundingMode |
| Default rounding mode according to default LLVM floating-point environment. | |
| #define GET_OP_CLASSES |
Definition at line 3086 of file ArithOps.cpp.
| using type_list = std::tuple<Types...> * |
Definition at line 1491 of file ArithOps.cpp.
|
static |
Definition at line 55 of file ArithOps.cpp.
References applyToIntegerAttrs(), lhs, and rhs.
|
static |
Definition at line 70 of file ArithOps.cpp.
References applyToIntegerAttrs(), lhs, and rhs.
|
static |
Returns true if the predicate is true for two equal operands.
Definition at line 2218 of file ArithOps.cpp.
|
static |
Definition at line 46 of file ArithOps.cpp.
References mlir::Value::getType(), lhs, and rhs.
Referenced by addIntegerAttrs(), andIntegerAttrs(), mulIntegerAttrs(), orIntegerAttrs(), subIntegerAttrs(), and xorIntegerAttrs().
Definition at line 2044 of file ArithOps.cpp.
References areValidCastInputsAndOutputs(), getTypeIfLikeOrMemRef(), mlir::Type::isIndex(), and mlir::Type::isSignlessInteger().
Definition at line 1533 of file ArithOps.cpp.
References hasSameEncoding(), and mlir::verifyCompatibleShapes().
Referenced by areIndexCastCompatible(), checkIntFloatCast(), and checkWidthChangeCast().
|
static |
Definition at line 522 of file ArithOps.cpp.
|
static |
Definition at line 458 of file ArithOps.cpp.
|
static |
Definition at line 1923 of file ArithOps.cpp.
References areValidCastInputsAndOutputs(), and getTypeIfLike().
|
static |
Validate a cast that changes the width of a type.
Definition at line 1575 of file ArithOps.cpp.
References areValidCastInputsAndOutputs(), and getTypeIfLike().
|
static |
Equivalent to convertRoundingModeToLLVM(convertArithRoundingModeToLLVM(roundingMode)).
Not possible to implement as chain of calls as this would introduce a circular dependency with MLIRArithAttrToLLVMConversion and make arith depend on the LLVM dialect and on translation to LLVM.
Definition at line 127 of file ArithOps.cpp.
References kDefaultRoundingMode.
|
static |
Attempts to convert sourceValue to an APFloat value with targetSemantics and roundingMode, without any information loss.
Definition at line 1591 of file ArithOps.cpp.
References kDefaultRoundingMode.
|
static |
Fold and(a, and(a, b)) to and(a, b)
Definition at line 1071 of file ArithOps.cpp.
Definition at line 170 of file ArithOps.cpp.
References mlir::BoolAttr::get(), mlir::DenseElementsAttr::get(), and mlir::Type::getContext().
|
static |
Returns whether a signed division by divisor is speculatable.
This function conservatively assumes that all signed division by -1 are not speculatable.
Definition at line 859 of file ArithOps.cpp.
References mlir::m_IntRangeWithoutNegOneS(), mlir::m_IntRangeWithoutZeroS(), mlir::matchPattern(), mlir::Speculation::NotSpeculatable, and mlir::Speculation::Speculatable.
|
static |
Returns whether an unsigned division by divisor is speculatable.
Definition at line 817 of file ArithOps.cpp.
References mlir::m_IntRangeWithoutZeroU(), mlir::matchPattern(), mlir::Speculation::NotSpeculatable, and mlir::Speculation::Speculatable.
Return the type of the same shape (scalar, vector or tensor) containing i1.
Definition at line 194 of file ArithOps.cpp.
References mlir::Type::getContext().
Return the bit-width of t for the purpose of index_cast width checks.
For vector types use the element type; index maps to its internal storage width (64 on all current targets).
Definition at line 2038 of file ArithOps.cpp.
References mlir::getElementTypeOrSelf().
Definition at line 2236 of file ArithOps.cpp.
|
static |
Definition at line 162 of file ArithOps.cpp.
References mlir::m_ConstantInt(), and mlir::matchPattern().
Definition at line 150 of file ArithOps.cpp.
References mlir::getElementTypeOrSelf(), mlir::Type::getIntOrFloatBitWidth(), and mlir::Type::isIntOrFloat().
Referenced by getScalarOrElementWidth().
Definition at line 158 of file ArithOps.cpp.
References getScalarOrElementWidth(), and mlir::Value::getType().
Get allowed underlying types for vectors and tensors.
Definition at line 1511 of file ArithOps.cpp.
References getUnderlyingType().
Referenced by checkIntFloatCast(), and checkWidthChangeCast().
Get allowed underlying types for vectors, tensors, and memrefs.
Definition at line 1518 of file ArithOps.cpp.
References getUnderlyingType().
Referenced by areIndexCastCompatible().
|
static |
Returns a non-null type only if the provided type is one of the allowed types or one of the allowed shaped types of the allowed types.
Returns the element type if a valid shaped type is provided.
Definition at line 1497 of file ArithOps.cpp.
References mlir::getElementTypeOrSelf().
Referenced by getTypeIfLike(), and getTypeIfLikeOrMemRef().
Return false if both types are ranked tensor with mismatching encoding.
Definition at line 1525 of file ArithOps.cpp.
Referenced by areValidCastInputsAndOutputs().
|
static |
Definition at line 145 of file ArithOps.cpp.
References mlir::arith::invertPredicate().
|
static |
Definition at line 87 of file ArithOps.cpp.
|
static |
Definition at line 65 of file ArithOps.cpp.
References applyToIntegerAttrs(), lhs, and rhs.
|
static |
Definition at line 75 of file ArithOps.cpp.
References applyToIntegerAttrs(), lhs, and rhs.
|
static |
Definition at line 877 of file ArithOps.cpp.
References b.
|
static |
Definition at line 60 of file ArithOps.cpp.
References applyToIntegerAttrs(), lhs, and rhs.
Definition at line 1547 of file ArithOps.cpp.
References mlir::OpState::emitError(), mlir::getElementTypeOrSelf(), and success().
Definition at line 1561 of file ArithOps.cpp.
References mlir::OpState::emitError(), mlir::getElementTypeOrSelf(), and success().
|
static |
Definition at line 80 of file ArithOps.cpp.
References applyToIntegerAttrs(), lhs, and rhs.
|
staticconstexpr |
Default rounding mode according to default LLVM floating-point environment.
Definition at line 38 of file ArithOps.cpp.
Referenced by convertArithRoundingModeToLLVMIR(), and convertFloatValue().