[llvm] [LLVM][Intrinsics] Reduce stack size for `Intrinsic::getAttributes` (PR #152219)
Rahul Joshi via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 5 15:51:28 PDT 2025
https://github.com/jurahul created https://github.com/llvm/llvm-project/pull/152219
None
>From 2162e16236fed6b6ae21a0bdd1f8626006d370c1 Mon Sep 17 00:00:00 2001
From: Rahul Joshi <rjoshi at nvidia.com>
Date: Tue, 5 Aug 2025 14:51:08 -0700
Subject: [PATCH] [LLVM][Intrinsics] Reduce stack size for
`Intrinsic::getAttributes`
---
.../utils/TableGen/Basic/IntrinsicEmitter.cpp | 52 +++++++++++--------
1 file changed, 30 insertions(+), 22 deletions(-)
diff --git a/llvm/utils/TableGen/Basic/IntrinsicEmitter.cpp b/llvm/utils/TableGen/Basic/IntrinsicEmitter.cpp
index ac5c455ed63ce..49f719453e0bb 100644
--- a/llvm/utils/TableGen/Basic/IntrinsicEmitter.cpp
+++ b/llvm/utils/TableGen/Basic/IntrinsicEmitter.cpp
@@ -652,6 +652,16 @@ static constexpr uint16_t IntrinsicsToAttributesMap[] = {)";
AttributeList Intrinsic::getAttributes(LLVMContext &C, ID id,
FunctionType *FT) {)";
+ // Find the max number of attributes to create the local array.
+ unsigned MaxNumAttrs = 0;
+ for (const auto [IntPtr, UniqueID] : UniqAttributes) {
+ const CodeGenIntrinsic &Int = *IntPtr;
+ unsigned NumAttrs =
+ llvm::count_if(Int.ArgumentAttributes,
+ [](const auto &Attrs) { return !Attrs.empty(); });
+ NumAttrs += hasFnAttributes(Int);
+ MaxNumAttrs = std::max(MaxNumAttrs, NumAttrs);
+ }
OS << formatv(R"(
if (id == 0)
@@ -659,46 +669,44 @@ AttributeList Intrinsic::getAttributes(LLVMContext &C, ID id,
uint16_t PackedID = IntrinsicsToAttributesMap[id - 1];
uint8_t FnAttrID = PackedID >> 8;
+ std::pair<unsigned, AttributeSet> AS[{}];
+ unsigned NumAttrs = 0;
+ bool HasFnAttr = false;
switch(PackedID & 0xFF) {{
default: llvm_unreachable("Invalid attribute number");
-)");
+)",
+ MaxNumAttrs);
for (const auto [IntPtr, UniqueID] : UniqAttributes) {
OS << formatv(" case {}:\n", UniqueID);
const CodeGenIntrinsic &Int = *IntPtr;
- // Keep track of the number of attributes we're writing out.
- unsigned NumAttrs =
- llvm::count_if(Int.ArgumentAttributes,
- [](const auto &Attrs) { return !Attrs.empty(); });
- NumAttrs += hasFnAttributes(Int);
- if (NumAttrs == 0) {
- OS << " return AttributeList();\n";
- continue;
- }
+ unsigned NumAttrs = 0;
- OS << " return AttributeList::get(C, {\n";
- ListSeparator LS(",\n");
for (const auto &[AttrIdx, Attrs] : enumerate(Int.ArgumentAttributes)) {
if (Attrs.empty())
continue;
unsigned ArgAttrID = UniqArgAttributes.find(Attrs)->second;
- OS << LS
- << formatv(" {{{}, getIntrinsicArgAttributeSet(C, {}, "
- "FT->getContainedType({}))}",
- AttrIdx, ArgAttrID, AttrIdx);
+ OS << formatv(" AS[{}] = {{{}, getIntrinsicArgAttributeSet(C, {}, "
+ "FT->getContainedType({}))};\n",
+ NumAttrs++, AttrIdx, ArgAttrID, AttrIdx);
}
- if (hasFnAttributes(Int)) {
- OS << LS
- << " {AttributeList::FunctionIndex, "
- "getIntrinsicFnAttributeSet(C, FnAttrID)}";
- }
- OS << "\n });\n";
+ if (hasFnAttributes(Int))
+ OS << " HasFnAttr = true;\n";
+
+ if (NumAttrs)
+ OS << formatv(" NumAttrs = {};\n", NumAttrs);
+ OS << " break;\n";
}
OS << R"( }
+ if (HasFnAttr) {
+ AS[NumAttrs++] = {AttributeList::FunctionIndex,
+ getIntrinsicFnAttributeSet(C, FnAttrID)};
+ }
+ return AttributeList::get(C, ArrayRef(AS, NumAttrs));
}
#endif // GET_INTRINSIC_ATTRIBUTES
More information about the llvm-commits
mailing list