[llvm] [tools] Use *Set::insert_range (NFC) (PR #133384)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 23:52:26 PDT 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/133384
We can use *Set::insert_range to replace "for" loop-based insertions.
In some cases, we can further fold insert_range into the set
declaration.
>From d953b4ab124681de3b809842a7bc03f4ecc4125b Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Thu, 27 Mar 2025 21:31:21 -0700
Subject: [PATCH] [tools] Use *Set::insert_range (NFC)
We can use *Set::insert_range to replace "for" loop-based insertions.
In some cases, we can further fold insert_range into the set
declaration.
---
llvm/tools/bugpoint/CrashDebugger.cpp | 5 +----
llvm/tools/llvm-lto/llvm-lto.cpp | 4 +---
llvm/tools/llvm-objdump/llvm-objdump.cpp | 3 +--
3 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/llvm/tools/bugpoint/CrashDebugger.cpp b/llvm/tools/bugpoint/CrashDebugger.cpp
index 2268aac351789..a7777f778f66e 100644
--- a/llvm/tools/bugpoint/CrashDebugger.cpp
+++ b/llvm/tools/bugpoint/CrashDebugger.cpp
@@ -968,10 +968,7 @@ class ReduceCrashingNamedMDOps : public ListReducer<const MDNode *> {
bool ReduceCrashingNamedMDOps::TestNamedMDOps(
std::vector<const MDNode *> &NamedMDOps) {
// Convert list to set for fast lookup...
- SmallPtrSet<const MDNode *, 32> OldMDNodeOps;
- for (unsigned i = 0, e = NamedMDOps.size(); i != e; ++i) {
- OldMDNodeOps.insert(NamedMDOps[i]);
- }
+ SmallPtrSet<const MDNode *, 32> OldMDNodeOps(llvm::from_range, NamedMDOps);
outs() << "Checking for crash with only " << OldMDNodeOps.size();
if (OldMDNodeOps.size() == 1)
diff --git a/llvm/tools/llvm-lto/llvm-lto.cpp b/llvm/tools/llvm-lto/llvm-lto.cpp
index 0aa47e534855c..bf2b5be977eb4 100644
--- a/llvm/tools/llvm-lto/llvm-lto.cpp
+++ b/llvm/tools/llvm-lto/llvm-lto.cpp
@@ -1090,9 +1090,7 @@ int main(int argc, char **argv) {
CodeGen.setTargetOptions(Options);
CodeGen.setShouldRestoreGlobalsLinkage(RestoreGlobalsLinkage);
- StringSet<MallocAllocator> DSOSymbolsSet;
- for (unsigned i = 0; i < DSOSymbols.size(); ++i)
- DSOSymbolsSet.insert(DSOSymbols[i]);
+ StringSet<MallocAllocator> DSOSymbolsSet(llvm::from_range, DSOSymbols);
std::vector<std::string> KeptDSOSyms;
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.cpp b/llvm/tools/llvm-objdump/llvm-objdump.cpp
index c897881430fae..c62ebbae55885 100644
--- a/llvm/tools/llvm-objdump/llvm-objdump.cpp
+++ b/llvm/tools/llvm-objdump/llvm-objdump.cpp
@@ -2073,8 +2073,7 @@ disassembleObject(ObjectFile &Obj, const ObjectFile &DbgObj,
if (Start < SectionAddr || StopAddress <= Start)
continue;
- for (size_t i = 0; i < SymbolsHere.size(); ++i)
- FoundDisasmSymbolSet.insert(SymNamesHere[i]);
+ FoundDisasmSymbolSet.insert_range(SymNamesHere);
// The end is the section end, the beginning of the next symbol, or
// --stop-address.
More information about the llvm-commits
mailing list