[PATCH] D145464: [BOLT][NFC] Use llvm::is_contained
Amir Ayupov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 6 21:00:12 PST 2023
Amir created this revision.
Amir added a reviewer: bolt.
Herald added a reviewer: rafauler.
Herald added subscribers: treapster, ayermolo.
Herald added a reviewer: maksfb.
Herald added a project: All.
Amir requested review of this revision.
Herald added subscribers: llvm-commits, yota9.
Herald added a project: LLVM.
Apply the replacement throughout BOLT.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D145464
Files:
bolt/lib/Core/BinaryFunction.cpp
bolt/lib/Passes/FrameAnalysis.cpp
bolt/lib/Passes/Instrumentation.cpp
Index: bolt/lib/Passes/Instrumentation.cpp
===================================================================
--- bolt/lib/Passes/Instrumentation.cpp
+++ bolt/lib/Passes/Instrumentation.cpp
@@ -343,7 +343,7 @@
const BinaryBasicBlock *Pred;
std::tie(Pred, BB) = Stack.top();
Stack.pop();
- if (VisitedSet.find(BB) != VisitedSet.end())
+ if (llvm::is_contained(VisitedSet, BB))
continue;
VisitedSet.insert(BB);
@@ -411,7 +411,7 @@
}
if (TargetFunc) {
// Do not instrument edges in the spanning tree
- if (STOutSet[&BB].find(TargetBB) != STOutSet[&BB].end()) {
+ if (llvm::is_contained(STOutSet[&BB], TargetBB)) {
auto L = BC.scopeLock();
createEdgeDescription(*FuncDesc, Function, FromOffset, BBToID[&BB],
Function, ToOffset, BBToID[TargetBB],
@@ -428,7 +428,7 @@
if (IsJumpTable) {
for (BinaryBasicBlock *&Succ : BB.successors()) {
// Do not instrument edges in the spanning tree
- if (STOutSet[&BB].find(&*Succ) != STOutSet[&BB].end()) {
+ if (llvm::is_contained(STOutSet[&BB], &*Succ)) {
auto L = BC.scopeLock();
createEdgeDescription(*FuncDesc, Function, FromOffset, BBToID[&BB],
Function, Succ->getInputOffset(),
@@ -471,7 +471,7 @@
FromOffset = *BC.MIB->getOffset(*LastInstr);
// Do not instrument edges in the spanning tree
- if (STOutSet[&BB].find(FTBB) != STOutSet[&BB].end()) {
+ if (llvm::is_contained(STOutSet[&BB], FTBB)) {
auto L = BC.scopeLock();
createEdgeDescription(*FuncDesc, Function, FromOffset, BBToID[&BB],
Function, FTBB->getInputOffset(), BBToID[FTBB],
Index: bolt/lib/Passes/FrameAnalysis.cpp
===================================================================
--- bolt/lib/Passes/FrameAnalysis.cpp
+++ bolt/lib/Passes/FrameAnalysis.cpp
@@ -352,7 +352,7 @@
// offset specially after an epilogue, where tailcalls happen. It should be
// -8.
for (std::pair<int64_t, uint8_t> Elem : Iter->second) {
- if (ArgsTouchedMap[&BF].find(Elem) == ArgsTouchedMap[&BF].end()) {
+ if (!llvm::is_contained(ArgsTouchedMap[&BF], Elem)) {
ArgsTouchedMap[&BF].emplace(Elem);
Changed = true;
}
Index: bolt/lib/Core/BinaryFunction.cpp
===================================================================
--- bolt/lib/Core/BinaryFunction.cpp
+++ bolt/lib/Core/BinaryFunction.cpp
@@ -992,7 +992,7 @@
if (!Islands)
return 0;
- if (Islands->DataOffsets.find(Offset) == Islands->DataOffsets.end())
+ if (!llvm::is_contained(Islands->DataOffsets, Offset))
return 0;
auto Iter = Islands->CodeOffsets.upper_bound(Offset);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145464.502910.patch
Type: text/x-patch
Size: 2811 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230307/89075d80/attachment.bin>
More information about the llvm-commits
mailing list