[llvm-branch-commits] [clang] [CIR] Derive lowering attr names from cppClassName, not the def name (PR #220891)
Henrich Lauko via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Sep 3 06:53:46 PDT 2026
https://github.com/xlauko updated https://github.com/llvm/llvm-project/pull/220891
>From 36edf4054428d1006eaf166b63174b259fdd8456 Mon Sep 17 00:00:00 2001
From: Henrich Lauko <hlauko at nvidia.com>
Date: Thu, 3 Sep 2026 12:44:31 +0000
Subject: [PATCH] [CIR] Derive lowering attr names from cppClassName, not the
def name
CIRLoweringEmitter built its CXX_ABI_ALWAYS_LEGAL_ATTRS entries with
GetOpCppClassName, which splits the TableGen def name at the first
underscore. That works only while every def is named CIR_<CppClassName>Attr.
When one is not, the emitter writes an `isa<>` for a class that does not
exist, and the failure lands as a compile error in generated code.
Attributes carry the authoritative name in cppClassName, which
GenerateAttrToValueVisitor was already reading. Factor that out as
GetAttrCppClassRef and use it for both attribute paths. GetOpCppClassName
stays for operations.
NFC, and checkable. No CIR attribute overrides cppClassName, so the generated
CIRLowering.inc is byte-identical.
---
clang/utils/TableGen/CIRLoweringEmitter.cpp | 26 +++++++++++++--------
1 file changed, 16 insertions(+), 10 deletions(-)
diff --git a/clang/utils/TableGen/CIRLoweringEmitter.cpp b/clang/utils/TableGen/CIRLoweringEmitter.cpp
index f67c37b9e1870..39be43a337c74 100644
--- a/clang/utils/TableGen/CIRLoweringEmitter.cpp
+++ b/clang/utils/TableGen/CIRLoweringEmitter.cpp
@@ -62,6 +62,19 @@ std::string GetOpCppClassName(const Record *OpRecord) {
return CppClassName.str();
}
+// Returns the namespace-qualified C++ class name of an attribute. Unlike
+// operations, attributes carry the authoritative name in cppClassName, so the
+// def name is free to differ from it.
+std::string GetAttrCppClassRef(const Record *AttrRecord) {
+ StringRef Ns =
+ AttrRecord->getValueAsDef("dialect")->getValueAsString("cppNamespace");
+ Ns.consume_front("::");
+ std::string CppClassRef = Ns.str();
+ CppClassRef += "::";
+ CppClassRef += AttrRecord->getValueAsString("cppClassName");
+ return CppClassRef;
+}
+
std::string GetOpABILoweringPatternName(llvm::StringRef OpName) {
std::string Name = "CIR";
Name += OpName;
@@ -286,19 +299,13 @@ void Generate(const Record *OpRecord) {
}
void GenerateCIREnumAttrs(const Record *Record) {
- std::string OpName = GetOpCppClassName(Record);
// EnumAttr is in a separate hierarchy, so we have to set these separately, as
// they never have an 'illegal' CXXABI type in them.
- CXXABILoweringAttrAlwaysLegal.push_back("cir::" + OpName);
+ CXXABILoweringAttrAlwaysLegal.push_back(GetAttrCppClassRef(Record));
}
void GenerateAttrToValueVisitor(const Record *Rec) {
- const Record *DialectRec = Rec->getValueAsDef("dialect");
- llvm::StringRef Ns = DialectRec->getValueAsString("cppNamespace");
- Ns.consume_front("::");
- std::string CppClassRef = Ns.str();
- CppClassRef += "::";
- CppClassRef += Rec->getValueAsString("cppClassName");
+ std::string CppClassRef = GetAttrCppClassRef(Rec);
std::string CodeBuffer;
llvm::raw_string_ostream Code(CodeBuffer);
@@ -327,9 +334,8 @@ void GenerateAttrToValueVisitFunc() {
}
void GenerateCIRAttrs(const Record *Record) {
- std::string OpName = GetOpCppClassName(Record);
if (!Record->getValueAsBit("canHaveIllegalCXXABIType"))
- CXXABILoweringAttrAlwaysLegal.push_back("cir::" + OpName);
+ CXXABILoweringAttrAlwaysLegal.push_back(GetAttrCppClassRef(Record));
if (Record->getValueAsBit("hasAttrToValueLowering"))
GenerateAttrToValueVisitor(Record);
}
More information about the llvm-branch-commits
mailing list