-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[mlir][emitc] Add EmitC index types #93155
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
150501b
Add EmitC index types
cferry-AMD ceb2d40
Address review comments
cferry-AMD 1edd8fb
Fix code formatting
cferry-AMD 5c732b1
EmitCSizeType -> EmitCSizeTType
cferry-AMD ae8d161
Add ptrdiff_t
cferry-AMD 5ef2011
Add cast compatibility from/to ptrdiff_t
cferry-AMD 1cd591a
Address review comments
cferry-AMD ac14819
Mention ssize_t/POSIX in docs
cferry-AMD c9de812
Update mlir/docs/Dialects/emitc.md
cferry-AMD 76be5aa
Update comments for data types
cferry-AMD 0d31f95
Address review comments
cferry-AMD 1f8607f
Add remark on type bounds in documentation
cferry-AMD e2d157e
Update mlir/docs/Dialects/emitc.md
cferry-AMD File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
mlir/include/mlir/Dialect/EmitC/Transforms/TypeConversions.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
//===- TypeConversions.h - Convert signless types into C/C++ types -------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef MLIR_DIALECT_EMITC_TRANSFORMS_TYPECONVERSIONS_H | ||
#define MLIR_DIALECT_EMITC_TRANSFORMS_TYPECONVERSIONS_H | ||
|
||
#include <optional> | ||
|
||
namespace mlir { | ||
class TypeConverter; | ||
class Type; | ||
void populateEmitCSizeTTypeConversions(TypeConverter &converter); | ||
|
||
namespace emitc { | ||
std::optional<Type> getUnsignedTypeFor(Type ty); | ||
std::optional<Type> getSignedTypeFor(Type ty); | ||
} // namespace emitc | ||
|
||
} // namespace mlir | ||
|
||
#endif // MLIR_DIALECT_EMITC_TRANSFORMS_TYPECONVERSIONS_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
//===- TypeConversions.cpp - Convert signless types into C/C++ types ------===// | ||
// | ||
// 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/EmitC/Transforms/TypeConversions.h" | ||
#include "mlir/Dialect/EmitC/IR/EmitC.h" | ||
#include "mlir/IR/BuiltinTypes.h" | ||
#include "mlir/Transforms/DialectConversion.h" | ||
#include <optional> | ||
|
||
using namespace mlir; | ||
|
||
namespace { | ||
|
||
std::optional<Value> materializeAsUnrealizedCast(OpBuilder &builder, | ||
Type resultType, | ||
ValueRange inputs, | ||
Location loc) { | ||
if (inputs.size() != 1) | ||
return std::nullopt; | ||
|
||
return builder.create<UnrealizedConversionCastOp>(loc, resultType, inputs) | ||
.getResult(0); | ||
} | ||
|
||
} // namespace | ||
|
||
void mlir::populateEmitCSizeTTypeConversions(TypeConverter &converter) { | ||
converter.addConversion( | ||
[](IndexType type) { return emitc::SizeTType::get(type.getContext()); }); | ||
|
||
converter.addSourceMaterialization(materializeAsUnrealizedCast); | ||
converter.addTargetMaterialization(materializeAsUnrealizedCast); | ||
converter.addArgumentMaterialization(materializeAsUnrealizedCast); | ||
} | ||
|
||
/// Get an unsigned data type as wide as \p ty. | ||
cferry-AMD marked this conversation as resolved.
Show resolved
Hide resolved
|
||
std::optional<Type> mlir::emitc::getUnsignedTypeFor(Type ty) { | ||
if (ty.isInteger()) | ||
return IntegerType::get(ty.getContext(), ty.getIntOrFloatBitWidth(), | ||
IntegerType::SignednessSemantics::Unsigned); | ||
if (isa<emitc::PtrDiffTType, emitc::SignedSizeTType>(ty)) | ||
return emitc::SizeTType::get(ty.getContext()); | ||
if (isSupportedIntegerType(ty)) | ||
return ty; | ||
mgehre-amd marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return {}; | ||
} | ||
|
||
/// Get a signed data type as wide as \p ty that supports arithmetic on negative | ||
/// values. | ||
std::optional<Type> mlir::emitc::getSignedTypeFor(Type ty) { | ||
if (ty.isInteger()) | ||
return IntegerType::get(ty.getContext(), ty.getIntOrFloatBitWidth(), | ||
IntegerType::SignednessSemantics::Signed); | ||
if (isa<emitc::SizeTType>(ty)) | ||
return emitc::PtrDiffTType::get(ty.getContext()); | ||
if (isSupportedIntegerType(ty)) | ||
return ty; | ||
return {}; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.