[llvm] [IR] Cache llvm.module.flags metadata in Module (PR #103410)
Alexis Engelke via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 13 13:04:36 PDT 2024
https://github.com/aengelke created https://github.com/llvm/llvm-project/pull/103410
This metadata is queried quite often, so avoiding frequent lookups in
the hash map is beneficial. Therefore, cache the metadata node directly
in the module.
>From 0f849027af7dffb96e3a928f91b3da4ff66af747 Mon Sep 17 00:00:00 2001
From: Alexis Engelke <engelke at in.tum.de>
Date: Tue, 13 Aug 2024 20:04:25 +0000
Subject: [PATCH] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20initia?=
=?UTF-8?q?l=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Created using spr 1.3.5-bogner
---
llvm/include/llvm/IR/Module.h | 5 ++++-
llvm/lib/IR/Module.cpp | 13 ++++++-------
2 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/llvm/include/llvm/IR/Module.h b/llvm/include/llvm/IR/Module.h
index 7042a54a59e7d6..e8905f7ed393ca 100644
--- a/llvm/include/llvm/IR/Module.h
+++ b/llvm/include/llvm/IR/Module.h
@@ -202,6 +202,9 @@ class LLVM_EXTERNAL_VISIBILITY Module {
///< ID and FunctionType maps to the extension that
///< is used to make the intrinsic name unique.
+ /// llvm.module.flags metadata
+ NamedMDNode *ModuleFlags = nullptr;
+
friend class Constant;
/// @}
@@ -528,7 +531,7 @@ class LLVM_EXTERNAL_VISIBILITY Module {
/// Returns the NamedMDNode in the module that represents module-level flags.
/// This method returns null if there are no module-level flags.
- NamedMDNode *getModuleFlagsMetadata() const;
+ NamedMDNode *getModuleFlagsMetadata() const { return ModuleFlags; }
/// Returns the NamedMDNode in the module that represents module-level flags.
/// If module-level flags aren't found, it creates the named metadata that
diff --git a/llvm/lib/IR/Module.cpp b/llvm/lib/IR/Module.cpp
index 4738ec7639f57a..7ba5b2784f5460 100644
--- a/llvm/lib/IR/Module.cpp
+++ b/llvm/lib/IR/Module.cpp
@@ -272,6 +272,8 @@ NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) {
NMD = new NamedMDNode(Name);
NMD->setParent(this);
insertNamedMDNode(NMD);
+ if (Name == "llvm.module.flags")
+ ModuleFlags = NMD;
}
return NMD;
}
@@ -280,6 +282,8 @@ NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) {
/// delete it.
void Module::eraseNamedMetadata(NamedMDNode *NMD) {
NamedMDSymTab.erase(NMD->getName());
+ if (NMD == ModuleFlags)
+ ModuleFlags = nullptr;
eraseNamedMDNode(NMD);
}
@@ -323,17 +327,12 @@ Metadata *Module::getModuleFlag(StringRef Key) const {
return nullptr;
}
-/// getModuleFlagsMetadata - Returns the NamedMDNode in the module that
-/// represents module-level flags. This method returns null if there are no
-/// module-level flags.
-NamedMDNode *Module::getModuleFlagsMetadata() const {
- return getNamedMetadata("llvm.module.flags");
-}
-
/// getOrInsertModuleFlagsMetadata - Returns the NamedMDNode in the module that
/// represents module-level flags. If module-level flags aren't found, it
/// creates the named metadata that contains them.
NamedMDNode *Module::getOrInsertModuleFlagsMetadata() {
+ if (ModuleFlags)
+ return ModuleFlags;
return getOrInsertNamedMetadata("llvm.module.flags");
}
More information about the llvm-commits
mailing list