diff --git a/clang/include/clang/CIR/Dialect/IR/CIRAttrs.td b/clang/include/clang/CIR/Dialect/IR/CIRAttrs.td index 4442689f56c6..446bf37e5888 100644 --- a/clang/include/clang/CIR/Dialect/IR/CIRAttrs.td +++ b/clang/include/clang/CIR/Dialect/IR/CIRAttrs.td @@ -30,6 +30,20 @@ class CIR_Attr traits = [], let mnemonic = attrMnemonic; } +class CIR_TypedAttr traits = []> + : CIR_Attr { + + let parameters = (ins AttributeSelfTypeParameter<"">:$type); + + let builders = [ + AttrBuilderWithInferredContext<(ins "mlir::Type":$type), [{ + return $_get(type.getContext(), type); + }]> + ]; + + let assemblyFormat = [{}]; +} + class CIRUnitAttr traits = []> : CIR_Attr { let returnType = "bool"; @@ -224,65 +238,35 @@ def CIR_BoolAttr : CIR_Attr<"Bool", "bool", [TypedAttrInterface]> { // ZeroAttr //===----------------------------------------------------------------------===// -def ZeroAttr : CIR_Attr<"Zero", "zero", [TypedAttrInterface]> { +def ZeroAttr : CIR_TypedAttr<"Zero", "zero"> { let summary = "Attribute to represent zero initialization"; let description = [{ The ZeroAttr is used to indicate zero initialization on structs. }]; - - let parameters = (ins AttributeSelfTypeParameter<"">:$type); - - let builders = [ - AttrBuilderWithInferredContext<(ins "mlir::Type":$type), [{ - return $_get(type.getContext(), type); - }]> - ]; - - let assemblyFormat = [{}]; } //===----------------------------------------------------------------------===// // UndefAttr //===----------------------------------------------------------------------===// -def UndefAttr : CIR_Attr<"Undef", "undef", [TypedAttrInterface]> { +def UndefAttr : CIR_TypedAttr<"Undef", "undef"> { let summary = "Represent an undef constant"; let description = [{ The UndefAttr represents an undef constant, corresponding to LLVM's notion of undef. }]; - - let parameters = (ins AttributeSelfTypeParameter<"">:$type); - - let builders = [ - AttrBuilderWithInferredContext<(ins "mlir::Type":$type), [{ - return $_get(type.getContext(), type); - }]> - ]; - - let assemblyFormat = [{}]; } //===----------------------------------------------------------------------===// // PoisonAttr //===----------------------------------------------------------------------===// -def PoisonAttr : CIR_Attr<"Poison", "poison", [TypedAttrInterface]> { +def PoisonAttr : CIR_TypedAttr<"Poison", "poison"> { let summary = "Represent a typed poison constant"; let description = [{ The PoisonAttr represents a typed poison constant, corresponding to LLVM's notion of poison. }]; - - let parameters = (ins AttributeSelfTypeParameter<"">:$type); - - let builders = [ - AttrBuilderWithInferredContext<(ins "mlir::Type":$type), [{ - return $_get(type.getContext(), type); - }]> - ]; - - let assemblyFormat = [{}]; } //===----------------------------------------------------------------------===//