-
Notifications
You must be signed in to change notification settings - Fork 177
[CIR][IR][NFC] Redefine tablegen CIR StructType with C++ #302
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 all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
e2e93fc
[CIR][IR] Redefine tablegen CIR StructType with C++
sitio-couto 0ed9e38
Update on "[CIR][IR] Redefine tablegen CIR StructType with C++"
sitio-couto af70afa
Update on "[CIR][IR] Redefine tablegen CIR StructType with C++"
sitio-couto 3114fbd
Update on "[CIR][IR][NFC] Redefine tablegen CIR StructType with C++"
sitio-couto 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| //===- CIRTypesDetails.h - Details of CIR dialect types -----------*- C++ -*-===// | ||
| // | ||
| // 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 | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
| // | ||
| // This file contains implementation details, such as storage structures, of | ||
| // CIR dialect types. | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
| #ifndef CIR_DIALECT_IR_CIRTYPESDETAILS_H | ||
| #define CIR_DIALECT_IR_CIRTYPESDETAILS_H | ||
|
|
||
| #include "mlir/IR/BuiltinAttributes.h" | ||
| #include "clang/CIR/Dialect/IR/CIRTypes.h" | ||
|
|
||
| namespace mlir { | ||
| namespace cir { | ||
| namespace detail { | ||
|
|
||
| //===----------------------------------------------------------------------===// | ||
| // CIR StructTypeStorage | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| /// Type storage for CIR record types. | ||
| struct StructTypeStorage : public TypeStorage { | ||
| struct KeyTy { | ||
| ArrayRef<Type> members; | ||
| StringAttr name; | ||
| bool incomplete; | ||
| bool packed; | ||
| StructType::RecordKind kind; | ||
| ASTRecordDeclInterface ast; | ||
|
|
||
| KeyTy(ArrayRef<Type> members, StringAttr name, bool incomplete, bool packed, | ||
| StructType::RecordKind kind, ASTRecordDeclInterface ast) | ||
| : members(members), name(name), incomplete(incomplete), packed(packed), | ||
| kind(kind), ast(ast) {} | ||
| }; | ||
|
|
||
| ArrayRef<Type> members; | ||
| StringAttr name; | ||
| bool incomplete; | ||
| bool packed; | ||
| StructType::RecordKind kind; | ||
| ASTRecordDeclInterface ast; | ||
|
|
||
| StructTypeStorage(ArrayRef<Type> members, StringAttr name, bool incomplete, | ||
| bool packed, StructType::RecordKind kind, | ||
| ASTRecordDeclInterface ast) | ||
| : members(members), name(name), incomplete(incomplete), packed(packed), | ||
| kind(kind), ast(ast) {} | ||
|
|
||
| KeyTy getAsKey() const { | ||
| return KeyTy(members, name, incomplete, packed, kind, ast); | ||
| } | ||
|
|
||
| bool operator==(const KeyTy &key) const { | ||
| return (members == key.members) && (name == key.name) && | ||
| (incomplete == key.incomplete) && (packed == key.packed) && | ||
| (kind == key.kind) && (ast == key.ast); | ||
| } | ||
|
|
||
| static llvm::hash_code hashKey(const KeyTy &key) { | ||
| return hash_combine(key.members, key.name, key.incomplete, key.packed, | ||
| key.kind, key.ast); | ||
| } | ||
|
|
||
| static StructTypeStorage *construct(TypeStorageAllocator &allocator, | ||
| const KeyTy &key) { | ||
| return new (allocator.allocate<StructTypeStorage>()) | ||
| StructTypeStorage(allocator.copyInto(key.members), key.name, | ||
| key.incomplete, key.packed, key.kind, key.ast); | ||
| } | ||
| }; | ||
|
|
||
| } // namespace detail | ||
| } // namespace cir | ||
| } // namespace mlir | ||
|
|
||
| #endif // CIR_DIALECT_IR_CIRTYPESDETAILS_H |
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.