Skip to content

Commit c964f6f

Browse files
committed
[RTGTest] Switch to new immediate types
1 parent 1db8b4d commit c964f6f

File tree

21 files changed

+132
-619
lines changed

21 files changed

+132
-619
lines changed

include/circt-c/Dialect/RTGTest.h

-86
Original file line numberDiff line numberDiff line change
@@ -37,39 +37,6 @@ MLIR_CAPI_EXPORTED bool rtgtestTypeIsAIntegerRegister(MlirType type);
3737
/// Creates an RTGTest IntegerRegisterType in the context.
3838
MLIR_CAPI_EXPORTED MlirType rtgtestIntegerRegisterTypeGet(MlirContext ctxt);
3939

40-
// Immediates.
41-
//===----------------------------------------------------------------------===//
42-
43-
/// If the type is an RTGTest Imm5Type.
44-
MLIR_CAPI_EXPORTED bool rtgtestTypeIsAImm5(MlirType type);
45-
46-
/// Creates an RTGTest Imm5 type in the context.
47-
MLIR_CAPI_EXPORTED MlirType rtgtestImm5TypeGet(MlirContext ctxt);
48-
49-
/// If the type is an RTGTest Imm12Type.
50-
MLIR_CAPI_EXPORTED bool rtgtestTypeIsAImm12(MlirType type);
51-
52-
/// Creates an RTGTest Imm12 type in the context.
53-
MLIR_CAPI_EXPORTED MlirType rtgtestImm12TypeGet(MlirContext ctxt);
54-
55-
/// If the type is an RTGTest Imm13Type.
56-
MLIR_CAPI_EXPORTED bool rtgtestTypeIsAImm13(MlirType type);
57-
58-
/// Creates an RTGTest Imm13 type in the context.
59-
MLIR_CAPI_EXPORTED MlirType rtgtestImm13TypeGet(MlirContext ctxt);
60-
61-
/// If the type is an RTGTest Imm21Type.
62-
MLIR_CAPI_EXPORTED bool rtgtestTypeIsAImm21(MlirType type);
63-
64-
/// Creates an RTGTest Imm21 type in the context.
65-
MLIR_CAPI_EXPORTED MlirType rtgtestImm21TypeGet(MlirContext ctxt);
66-
67-
/// If the type is an RTGTest Imm32Type.
68-
MLIR_CAPI_EXPORTED bool rtgtestTypeIsAImm32(MlirType type);
69-
70-
/// Creates an RTGTest Imm32 type in the context.
71-
MLIR_CAPI_EXPORTED MlirType rtgtestImm32TypeGet(MlirContext ctxt);
72-
7340
//===----------------------------------------------------------------------===//
7441
// Attribute API.
7542
//===----------------------------------------------------------------------===//
@@ -279,59 +246,6 @@ MLIR_CAPI_EXPORTED bool rtgtestAttrIsARegT6(MlirAttribute attr);
279246
/// Creates an RTGTest RegT6 attribute in the context.
280247
MLIR_CAPI_EXPORTED MlirAttribute rtgtestRegT6AttrGet(MlirContext ctxt);
281248

282-
// Immediates.
283-
//===----------------------------------------------------------------------===//
284-
285-
/// If the attribute is an RTGTest Imm5Attr.
286-
MLIR_CAPI_EXPORTED bool rtgtestAttrIsAImm5(MlirAttribute attr);
287-
288-
/// Creates an RTGTest Imm5 attribute in the context.
289-
MLIR_CAPI_EXPORTED MlirAttribute rtgtestImm5AttrGet(MlirContext ctxt,
290-
unsigned value);
291-
292-
/// Returns the value represented by the Imm5 attribute.
293-
MLIR_CAPI_EXPORTED unsigned rtgtestImm5AttrGetValue(MlirAttribute attr);
294-
295-
/// If the attribute is an RTGTest Imm12Attr.
296-
MLIR_CAPI_EXPORTED bool rtgtestAttrIsAImm12(MlirAttribute attr);
297-
298-
/// Creates an RTGTest Imm12 attribute in the context.
299-
MLIR_CAPI_EXPORTED MlirAttribute rtgtestImm12AttrGet(MlirContext ctxt,
300-
unsigned value);
301-
302-
/// Returns the value represented by the Imm12 attribute.
303-
MLIR_CAPI_EXPORTED unsigned rtgtestImm12AttrGetValue(MlirAttribute attr);
304-
305-
/// If the attribute is an RTGTest Imm13Attr.
306-
MLIR_CAPI_EXPORTED bool rtgtestAttrIsAImm13(MlirAttribute attr);
307-
308-
/// Creates an RTGTest Imm13 attribute in the context.
309-
MLIR_CAPI_EXPORTED MlirAttribute rtgtestImm13AttrGet(MlirContext ctxt,
310-
unsigned value);
311-
312-
/// Returns the value represented by the Imm13 attribute.
313-
MLIR_CAPI_EXPORTED unsigned rtgtestImm13AttrGetValue(MlirAttribute attr);
314-
315-
/// If the attribute is an RTGTest Imm21Attr.
316-
MLIR_CAPI_EXPORTED bool rtgtestAttrIsAImm21(MlirAttribute attr);
317-
318-
/// Creates an RTGTest Imm21 attribute in the context.
319-
MLIR_CAPI_EXPORTED MlirAttribute rtgtestImm21AttrGet(MlirContext ctxt,
320-
unsigned value);
321-
322-
/// Returns the value represented by the Imm21 attribute.
323-
MLIR_CAPI_EXPORTED unsigned rtgtestImm21AttrGetValue(MlirAttribute attr);
324-
325-
/// If the attribute is an RTGTest Imm32Attr.
326-
MLIR_CAPI_EXPORTED bool rtgtestAttrIsAImm32(MlirAttribute attr);
327-
328-
/// Creates an RTGTest Imm32 attribute in the context.
329-
MLIR_CAPI_EXPORTED MlirAttribute rtgtestImm32AttrGet(MlirContext ctxt,
330-
unsigned value);
331-
332-
/// Returns the value represented by the Imm32 attribute.
333-
MLIR_CAPI_EXPORTED unsigned rtgtestImm32AttrGetValue(MlirAttribute attr);
334-
335249
#ifdef __cplusplus
336250
}
337251
#endif

include/circt/Dialect/RTG/IR/RTGAttributes.h

+10
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@
1414
#include "mlir/IR/Attributes.h"
1515
#include "mlir/IR/BuiltinAttributes.h"
1616

17+
namespace circt {
18+
namespace rtg {
19+
namespace detail {
20+
21+
struct ImmediateAttrStorage;
22+
23+
} // namespace detail
24+
} // namespace rtg
25+
} // namespace circt
26+
1727
#define GET_ATTRDEF_CLASSES
1828
#include "circt/Dialect/RTG/IR/RTGAttributes.h.inc"
1929

include/circt/Dialect/RTG/IR/RTGAttributes.td

+1-37
Original file line numberDiff line numberDiff line change
@@ -21,43 +21,6 @@ include "mlir/IR/Interfaces.td"
2121
class RTGAttrDef<string name, list<Trait> traits = []>
2222
: AttrDef<RTGDialect, name, traits>;
2323

24-
class ImmediateAttrBase<int width> : RTGAttrDef<"Imm" # width, [
25-
DeclareAttrInterfaceMethods<TypedAttrInterface>,
26-
]> {
27-
let summary = "represents a " # width # "-bit immediate value";
28-
29-
let mnemonic = "imm" # width;
30-
let parameters = (ins "uint32_t":$value);
31-
32-
let assemblyFormat = "`<` $value `>`";
33-
34-
let extraClassDeclaration = [{
35-
llvm::APInt getAPInt() const {
36-
return llvm::APInt(}] # width # [{, getValue());
37-
}
38-
}];
39-
40-
let extraClassDefinition = [{
41-
Type $cppClass::getType() const {
42-
return Imm}] # width # [{Type::get(getContext());
43-
}
44-
45-
LogicalResult $cppClass::verify(
46-
::llvm::function_ref<::mlir::InFlightDiagnostic()> emitError,
47-
uint32_t value) {
48-
49-
if (32 - llvm::countl_zero(value) > }] # width # [{)
50-
return emitError() << "cannot represent " << value << " with }] #
51-
width # [{ bits";
52-
53-
return success();
54-
}
55-
}];
56-
57-
let genVerifyDecl = 1;
58-
}
59-
60-
6124
def DefaultContextAttr : RTGAttrDef<"DefaultContext", [
6225
DeclareAttrInterfaceMethods<ContextResourceAttrInterface>,
6326
]> {
@@ -94,6 +57,7 @@ def ImmediateAttr : RTGISAAttrDef<"Immediate", [
9457
let parameters = (ins "llvm::APInt":$value);
9558

9659
let hasCustomAssemblyFormat = true;
60+
let genStorageClass = false;
9761
}
9862

9963
#endif // CIRCT_DIALECT_RTG_IR_RTGATTRIBUTES_TD

include/circt/Dialect/RTG/IR/RTGTypes.td

-5
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,4 @@ class ImmediateOfWidth<int width> : Type<
157157
"a " # width # "-bit immediate">,
158158
BuildableType<"::circt::rtg::ImmediateType::get($_builder.getContext(), " # width # ")">;
159159

160-
class ImmTypeBase<int width> : TypeDef<RTGDialect, "Imm" # width, []> {
161-
let summary = "represents a " # width # "-bit immediate";
162-
let mnemonic = "imm" # width;
163-
}
164-
165160
#endif // CIRCT_DIALECT_RTG_IR_RTGTYPES_TD

include/circt/Dialect/RTGTest/IR/RTGTestAttributes.td

-8
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,6 @@ def CPUAttr : RTGTestAttrDef<"CPU", [ContextResourceAttrInterface]> {
3636
}];
3737
}
3838

39-
let dialect = RTGTestDialect in {
40-
def Imm5 : ImmediateAttrBase<5>;
41-
def Imm12 : ImmediateAttrBase<12>;
42-
def Imm13 : ImmediateAttrBase<13>;
43-
def Imm21 : ImmediateAttrBase<21>;
44-
def Imm32 : ImmediateAttrBase<32>;
45-
}
46-
4739
class IntegerRegisterAttrBase<string cppName, string name, int classIndex>
4840
: RTGTestAttrDef<cppName, [RegisterAttrInterface]> {
4941

include/circt/Dialect/RTGTest/IR/RTGTestOps.h

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#ifndef CIRCT_DIALECT_RTGTEST_IR_RTGTESTOPS_H
1414
#define CIRCT_DIALECT_RTGTEST_IR_RTGTESTOPS_H
1515

16+
#include "circt/Dialect/RTG/IR/RTGAttributes.h"
1617
#include "circt/Dialect/RTG/IR/RTGISAAssemblyOpInterfaces.h"
1718
#include "circt/Dialect/RTG/IR/RTGOpInterfaces.h"
1819
#include "circt/Dialect/RTG/IR/RTGOps.h"

0 commit comments

Comments
 (0)