Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mlir][index] Implement folders for CastSOp and CastUOp #66960

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions mlir/include/mlir/Dialect/Index/IR/IndexOps.td
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def Index_XOrOp : IndexBinaryOp<"xor", [Commutative, Pure]> {
// CastSOp
//===----------------------------------------------------------------------===//

def Index_CastSOp : IndexOp<"casts", [Pure,
def Index_CastSOp : IndexOp<"casts", [Pure,
DeclareOpInterfaceMethods<CastOpInterface>]> {
let summary = "index signed cast";
let description = [{
Expand All @@ -469,13 +469,14 @@ def Index_CastSOp : IndexOp<"casts", [Pure,
let arguments = (ins AnyTypeOf<[AnyInteger, Index]>:$input);
let results = (outs AnyTypeOf<[AnyInteger, Index]>:$output);
let assemblyFormat = "$input attr-dict `:` type($input) `to` type($output)";
let hasFolder = 1;
}

//===----------------------------------------------------------------------===//
// CastUOp
//===----------------------------------------------------------------------===//

def Index_CastUOp : IndexOp<"castu", [Pure,
def Index_CastUOp : IndexOp<"castu", [Pure,
DeclareOpInterfaceMethods<CastOpInterface>]> {
let summary = "index unsigned cast";
let description = [{
Expand All @@ -498,6 +499,7 @@ def Index_CastUOp : IndexOp<"castu", [Pure,
let arguments = (ins AnyTypeOf<[AnyInteger, Index]>:$input);
let results = (outs AnyTypeOf<[AnyInteger, Index]>:$output);
let assemblyFormat = "$input attr-dict `:` type($input) `to` type($output)";
let hasFolder = 1;
}

//===----------------------------------------------------------------------===//
Expand Down
59 changes: 59 additions & 0 deletions mlir/lib/Dialect/Index/IR/IndexOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -444,11 +444,63 @@ OpFoldResult XOrOp::fold(FoldAdaptor adaptor) {
// CastSOp
//===----------------------------------------------------------------------===//

static OpFoldResult
foldCastOp(Attribute input, Type type,
function_ref<APInt(const APInt &, unsigned)> extFn,
function_ref<APInt(const APInt &, unsigned)> extOrTruncFn) {
auto attr = dyn_cast_if_present<IntegerAttr>(input);
if (!attr)
return {};
const APInt &value = attr.getValue();

if (isa<IndexType>(type)) {
// When casting to an index type, perform the cast assuming a 64-bit target.
// The result can be truncated to 32 bits as needed and always be correct.
// This is because `cast32(cast64(value)) == cast32(value)`.
APInt result = extOrTruncFn(value, 64);
return IntegerAttr::get(type, result);
}

// When casting from an index type, we must ensure the results respect
// `cast_t(value) == cast_t(trunc32(value))`.
auto intType = cast<IntegerType>(type);
unsigned width = intType.getWidth();

// If the result type is at most 32 bits, then the cast can always be folded
// because it is always a truncation.
if (width <= 32) {
APInt result = value.trunc(width);
return IntegerAttr::get(type, result);
}

// If the result type is at least 64 bits, then the cast is always a
// extension. The results will differ if `trunc32(value) != value)`.
if (width >= 64) {
if (extFn(value.trunc(32), 64) != value)
return {};
APInt result = extFn(value, width);
return IntegerAttr::get(type, result);
}

// Otherwise, we just have to check the property directly.
APInt result = value.trunc(width);
if (result != extFn(value.trunc(32), width))
return {};
return IntegerAttr::get(type, result);
}

bool CastSOp::areCastCompatible(TypeRange lhsTypes, TypeRange rhsTypes) {
return llvm::isa<IndexType>(lhsTypes.front()) !=
llvm::isa<IndexType>(rhsTypes.front());
}

OpFoldResult CastSOp::fold(FoldAdaptor adaptor) {
return foldCastOp(
adaptor.getInput(), getType(),
[](const APInt &x, unsigned width) { return x.sext(width); },
[](const APInt &x, unsigned width) { return x.sextOrTrunc(width); });
}

//===----------------------------------------------------------------------===//
// CastUOp
//===----------------------------------------------------------------------===//
Expand All @@ -458,6 +510,13 @@ bool CastUOp::areCastCompatible(TypeRange lhsTypes, TypeRange rhsTypes) {
llvm::isa<IndexType>(rhsTypes.front());
}

OpFoldResult CastUOp::fold(FoldAdaptor adaptor) {
return foldCastOp(
adaptor.getInput(), getType(),
[](const APInt &x, unsigned width) { return x.zext(width); },
[](const APInt &x, unsigned width) { return x.zextOrTrunc(width); });
}

//===----------------------------------------------------------------------===//
// CmpOp
//===----------------------------------------------------------------------===//
Expand Down
16 changes: 16 additions & 0 deletions mlir/test/Dialect/Index/index-canonicalize.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -556,3 +556,19 @@ func.func @sub_identity(%arg0: index) -> index {
// CHECK-NEXT: return %arg0
return %0 : index
}

// CHECK-LABEL: @castu_to_index
func.func @castu_to_index() -> index {
// CHECK: index.constant 8000000000000
Mogball marked this conversation as resolved.
Show resolved Hide resolved
%0 = arith.constant 8000000000000 : i48
%1 = index.castu %0 : i48 to index
return %1 : index
}

// CHECK-LABEL: @casts_to_index
func.func @casts_to_index() -> index {
// CHECK: index.constant -1000
%0 = arith.constant -1000 : i48
%1 = index.casts %0 : i48 to index
return %1 : index
}
1 change: 1 addition & 0 deletions mlir/unittests/Dialect/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ target_link_libraries(MLIRDialectTests
MLIRIR
MLIRDialect)

add_subdirectory(Index)
add_subdirectory(LLVMIR)
add_subdirectory(MemRef)
add_subdirectory(SparseTensor)
Expand Down
7 changes: 7 additions & 0 deletions mlir/unittests/Dialect/Index/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
add_mlir_unittest(MLIRIndexOpsTests
IndexOpsFoldersTest.cpp
)
target_link_libraries(MLIRIndexOpsTests
PRIVATE
MLIRIndexDialect
)
104 changes: 104 additions & 0 deletions mlir/unittests/Dialect/Index/IndexOpsFoldersTest.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
//===- IndexOpsFoldersTest.cpp - unit tests for index op folders ----------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "mlir/Dialect/Index/IR/IndexDialect.h"
#include "mlir/Dialect/Index/IR/IndexOps.h"
#include "mlir/IR/OwningOpRef.h"
#include "gtest/gtest.h"

using namespace mlir;

namespace {
/// Test fixture for testing operation folders.
class IndexFolderTest : public testing::Test {
public:
IndexFolderTest() { ctx.getOrLoadDialect<index::IndexDialect>(); }

/// Instantiate an operation, invoke its folder, and return the attribute
/// result.
template <typename OpT>
void foldOp(IntegerAttr &value, Type type, ArrayRef<Attribute> operands);

protected:
/// The MLIR context to use.
MLIRContext ctx;
/// A builder to use.
OpBuilder b{&ctx};
};
} // namespace

template <typename OpT>
void IndexFolderTest::foldOp(IntegerAttr &value, Type type,
ArrayRef<Attribute> operands) {
// This function returns null so that `ASSERT_*` works within it.
OperationState state(UnknownLoc::get(&ctx), OpT::getOperationName());
state.addTypes(type);
OwningOpRef<OpT> op = cast<OpT>(b.create(state));
SmallVector<OpFoldResult> results;
LogicalResult result = op->getOperation()->fold(operands, results);
// Propagate the failure to the test.
if (failed(result)) {
value = nullptr;
return;
}
ASSERT_EQ(results.size(), 1u);
value = dyn_cast_or_null<IntegerAttr>(dyn_cast<Attribute>(results.front()));
ASSERT_TRUE(value);
}

TEST_F(IndexFolderTest, TestCastUOpFolder) {
IntegerAttr value;
auto fold = [&](Type type, Attribute input) {
foldOp<index::CastUOp>(value, type, input);
};

// Target width less than or equal to 32 bits.
fold(b.getIntegerType(16), b.getIndexAttr(8000000000));
ASSERT_TRUE(value);
EXPECT_EQ(value.getInt(), 20480u);

// Target width greater than or equal to 64 bits.
fold(b.getIntegerType(64), b.getIndexAttr(2000));
ASSERT_TRUE(value);
EXPECT_EQ(value.getInt(), 2000u);

// Fails to fold, because truncating to 32 bits and then extending creates a
// different value.
fold(b.getIntegerType(64), b.getIndexAttr(8000000000));
EXPECT_FALSE(value);

// Target width between 32 and 64 bits.
fold(b.getIntegerType(40), b.getIndexAttr(0x10000000010000));
// Fold succeeds because the upper bits are truncated in the cast.
ASSERT_TRUE(value);
EXPECT_EQ(value.getInt(), 65536);

// Fails to fold because the upper bits are not truncated.
fold(b.getIntegerType(60), b.getIndexAttr(0x10000000010000));
EXPECT_FALSE(value);
}

TEST_F(IndexFolderTest, TestCastSOpFolder) {
IntegerAttr value;
auto fold = [&](Type type, Attribute input) {
foldOp<index::CastSOp>(value, type, input);
};

// Just test the extension cases to ensure signs are being respected.

// Target width greater than or equal to 64 bits.
fold(b.getIntegerType(64), b.getIndexAttr(-2000));
ASSERT_TRUE(value);
EXPECT_EQ(value.getInt(), -2000);

// Target width between 32 and 64 bits.
fold(b.getIntegerType(40), b.getIndexAttr(-0x10000000010000));
// Fold succeeds because the upper bits are truncated in the cast.
ASSERT_TRUE(value);
EXPECT_EQ(value.getInt(), -65536);
}