[PATCH] D145464: [BOLT][NFC] Use llvm::is_contained
Amir Ayupov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 14 15:37:24 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2eae9d8eb2f6: [BOLT][NFC] Use llvm::is_contained (authored by Amir).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145464/new/
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
@@ -337,7 +337,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);
@@ -405,7 +405,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],
@@ -422,7 +422,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(),
@@ -465,7 +465,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
@@ -987,7 +987,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.505304.patch
Type: text/x-patch
Size: 2811 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230314/ce8aeecf/attachment.bin>
More information about the llvm-commits
mailing list