[Mlir-commits] [mlir] 2721f5a - [mlir][vector] Prevent folding of OOB values in insert/extract (#135498)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Apr 17 20:53:29 PDT 2025
Author: Fehr Mathieu
Date: 2025-04-18T05:53:26+02:00
New Revision: 2721f5af12bdf9af29969a86351fe485af00e648
URL: https://github.com/llvm/llvm-project/commit/2721f5af12bdf9af29969a86351fe485af00e648
DIFF: https://github.com/llvm/llvm-project/commit/2721f5af12bdf9af29969a86351fe485af00e648.diff
LOG: [mlir][vector] Prevent folding of OOB values in insert/extract (#135498)
Out of bound position values should not be folded in vector.extract and
vector.insert operations, as only in bounds constants and -1 are valid.
Fixes #134516
Added:
Modified:
mlir/lib/Dialect/Vector/IR/VectorOps.cpp
mlir/test/Dialect/Vector/canonicalize.mlir
Removed:
################################################################################
diff --git a/mlir/lib/Dialect/Vector/IR/VectorOps.cpp b/mlir/lib/Dialect/Vector/IR/VectorOps.cpp
index cea31276d10a8..368259b38b153 100644
--- a/mlir/lib/Dialect/Vector/IR/VectorOps.cpp
+++ b/mlir/lib/Dialect/Vector/IR/VectorOps.cpp
@@ -1997,6 +1997,11 @@ static Value extractInsertFoldConstantOp(OpType op, AdaptorType adaptor,
std::vector<int64_t> staticPosition = op.getStaticPosition().vec();
OperandRange dynamicPosition = op.getDynamicPosition();
ArrayRef<Attribute> dynamicPositionAttr = adaptor.getDynamicPosition();
+ ArrayRef<int64_t> vectorShape;
+ if constexpr (std::is_same_v<OpType, ExtractOp>)
+ vectorShape = op.getSourceVectorType().getShape();
+ else
+ vectorShape = op.getDestVectorType().getShape();
// If the dynamic operands is empty, it is returned directly.
if (!dynamicPosition.size())
@@ -2013,9 +2018,13 @@ static Value extractInsertFoldConstantOp(OpType op, AdaptorType adaptor,
Attribute positionAttr = dynamicPositionAttr[index];
Value position = dynamicPosition[index++];
if (auto attr = mlir::dyn_cast_if_present<IntegerAttr>(positionAttr)) {
- staticPosition[i] = attr.getInt();
- opChange = true;
- continue;
+ int64_t value = attr.getInt();
+ // Do not fold if the value is out of bounds.
+ if (value >= 0 && value < vectorShape[i]) {
+ staticPosition[i] = attr.getInt();
+ opChange = true;
+ continue;
+ }
}
operands.push_back(position);
}
diff --git a/mlir/test/Dialect/Vector/canonicalize.mlir b/mlir/test/Dialect/Vector/canonicalize.mlir
index f50d92fc9c8b1..2d365ac2b4287 100644
--- a/mlir/test/Dialect/Vector/canonicalize.mlir
+++ b/mlir/test/Dialect/Vector/canonicalize.mlir
@@ -3311,3 +3311,41 @@ func.func @fold_insert_constant_indices(%arg : vector<4x1xi32>) -> vector<4x1xi3
%res = vector.insert %1, %arg[%0, %0] : i32 into vector<4x1xi32>
return %res : vector<4x1xi32>
}
+
+// -----
+
+// Check that out of bounds indices are not folded for vector.insert.
+
+// CHECK-LABEL: @fold_insert_oob
+// CHECK-SAME: %[[ARG:.*]]: vector<4x1x2xi32>) -> vector<4x1x2xi32> {
+// CHECK: %[[OOB1:.*]] = arith.constant -2 : index
+// CHECK: %[[OOB2:.*]] = arith.constant 2 : index
+// CHECK: %[[VAL:.*]] = arith.constant 1 : i32
+// CHECK: %[[RES:.*]] = vector.insert %[[VAL]], %[[ARG]] [0, %[[OOB1]], %[[OOB2]]] : i32 into vector<4x1x2xi32>
+// CHECK: return %[[RES]] : vector<4x1x2xi32>
+func.func @fold_insert_oob(%arg : vector<4x1x2xi32>) -> vector<4x1x2xi32> {
+ %c0 = arith.constant 0 : index
+ %c-2 = arith.constant -2 : index
+ %c2 = arith.constant 2 : index
+ %c1 = arith.constant 1 : i32
+ %res = vector.insert %c1, %arg[%c0, %c-2, %c2] : i32 into vector<4x1x2xi32>
+ return %res : vector<4x1x2xi32>
+}
+
+// -----
+
+// Check that out of bounds indices are not folded for vector.extract.
+
+// CHECK-LABEL: @fold_extract_oob
+// CHECK-SAME: %[[ARG:.*]]: vector<4x1x2xi32>) -> i32 {
+// CHECK: %[[OOB1:.*]] = arith.constant -2 : index
+// CHECK: %[[OOB2:.*]] = arith.constant 2 : index
+// CHECK: %[[RES:.*]] = vector.extract %[[ARG]][0, %[[OOB1]], %[[OOB2]]] : i32 from vector<4x1x2xi32>
+// CHECK: return %[[RES]] : i32
+func.func @fold_extract_oob(%arg : vector<4x1x2xi32>) -> i32 {
+ %c0 = arith.constant 0 : index
+ %c-2 = arith.constant -2 : index
+ %c2 = arith.constant 2 : index
+ %res = vector.extract %arg[%c0, %c-2, %c2] : i32 from vector<4x1x2xi32>
+ return %res : i32
+}
More information about the Mlir-commits
mailing list