-
Notifications
You must be signed in to change notification settings - Fork 14.8k
[CIR] Introduce IntTypeInterface to allow uniform integer types handling #146660
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
Conversation
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 stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Jul 2, 2025
@llvm/pr-subscribers-clang @llvm/pr-subscribers-clangir Author: Henrich Lauko (xlauko) ChangesThis will in future allow to use builtin integer types within cir operations This mirrors incubat changes from llvm/clangir#1724 Full diff: https://github.com/llvm/llvm-project/pull/146660.diff 2 Files Affected:
diff --git a/clang/include/clang/CIR/Dialect/IR/CIRTypes.td b/clang/include/clang/CIR/Dialect/IR/CIRTypes.td
index bfe42562abad7..898c26d22f6d1 100644
--- a/clang/include/clang/CIR/Dialect/IR/CIRTypes.td
+++ b/clang/include/clang/CIR/Dialect/IR/CIRTypes.td
@@ -35,7 +35,8 @@ class CIR_Type<string name, string typeMnemonic, list<Trait> traits = [],
def CIR_IntType : CIR_Type<"Int", "int", [
DeclareTypeInterfaceMethods<DataLayoutTypeInterface>,
- DeclareTypeInterfaceMethods<CIR_SizedTypeInterface>
+ DeclareTypeInterfaceMethods<CIR_SizedTypeInterface>,
+ DeclareTypeInterfaceMethods<CIR_IntTypeInterface>,
]> {
let summary = "Integer type with arbitrary precision up to a fixed limit";
let description = [{
diff --git a/clang/include/clang/CIR/Interfaces/CIRTypeInterfaces.td b/clang/include/clang/CIR/Interfaces/CIRTypeInterfaces.td
index 1b1acf749e773..cf6c8571ddcd9 100644
--- a/clang/include/clang/CIR/Interfaces/CIRTypeInterfaces.td
+++ b/clang/include/clang/CIR/Interfaces/CIRTypeInterfaces.td
@@ -15,6 +15,48 @@
include "mlir/IR/OpBase.td"
+def CIR_IntTypeInterface : TypeInterface<"IntTypeInterface"> {
+ let description = [{
+ Contains helper functions to query properties about an integer type.
+ }];
+ let cppNamespace = "::cir";
+ let methods = [
+ InterfaceMethod<[{
+ Returns true if this is a signed integer type.
+ }],
+ /*retTy=*/"bool",
+ /*methodName=*/"isSigned",
+ /*args=*/(ins),
+ /*methodBody=*/"",
+ /*defaultImplementation=*/[{
+ return $_type.isSigned();
+ }]
+ >,
+ InterfaceMethod<[{
+ Returns true if this is an unsigned integer type.
+ }],
+ /*retTy=*/"bool",
+ /*methodName=*/"isUnsigned",
+ /*args=*/(ins),
+ /*methodBody=*/"",
+ /*defaultImplementation=*/[{
+ return $_type.isUnsigned();
+ }]
+ >,
+ InterfaceMethod<[{
+ Returns the bit width of this integer type.
+ }],
+ /*retTy=*/"unsigned",
+ /*methodName=*/"getWidth",
+ /*args=*/(ins),
+ /*methodBody=*/"",
+ /*defaultImplementation=*/[{
+ return $_type.getWidth();
+ }]
+ >
+ ];
+}
+
def CIR_FPTypeInterface : TypeInterface<"FPTypeInterface"> {
let description = [{
Contains helper functions to query properties about a floating-point type.
|
erichkeane
approved these changes
Jul 2, 2025
This will in future allow to use builtin integer types within cir operations This mirrors incubat changes from llvm/clangir#1724
bd00b5a
to
8fb5297
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This will in future allow to use builtin integer types within cir operations
This mirrors incubat changes from llvm/clangir#1724