[llvm] 9181ab9 - [NFC]] Use llvm::all_of instead of std::all_of
via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 22 21:34:52 PDT 2022
Author: liqinweng
Date: 2022-08-23T12:21:53+08:00
New Revision: 9181ab9223e13d8e2294bf34a0a65fa19d734857
URL: https://github.com/llvm/llvm-project/commit/9181ab9223e13d8e2294bf34a0a65fa19d734857
DIFF: https://github.com/llvm/llvm-project/commit/9181ab9223e13d8e2294bf34a0a65fa19d734857.diff
LOG: [NFC]] Use llvm::all_of instead of std::all_of
Reviewed By: kazu
Differential Revision: https://reviews.llvm.org/D131886
Added:
Modified:
llvm/lib/Analysis/TypeMetadataUtils.cpp
llvm/lib/IR/Verifier.cpp
llvm/lib/Target/SPIRV/SPIRVModuleAnalysis.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Analysis/TypeMetadataUtils.cpp b/llvm/lib/Analysis/TypeMetadataUtils.cpp
index e128187bac493..1c9354fbe01fa 100644
--- a/llvm/lib/Analysis/TypeMetadataUtils.cpp
+++ b/llvm/lib/Analysis/TypeMetadataUtils.cpp
@@ -61,7 +61,7 @@ static void findLoadCallsAtConstantOffset(
} else if (auto GEP = dyn_cast<GetElementPtrInst>(User)) {
// Take into account the GEP offset.
if (VPtr == GEP->getPointerOperand() && GEP->hasAllConstantIndices()) {
- SmallVector<Value *, 8> Indices(GEP->op_begin() + 1, GEP->op_end());
+ SmallVector<Value *, 8> Indices(drop_begin(GEP->operands()));
int64_t GEPOffset = M->getDataLayout().getIndexedOffsetInType(
GEP->getSourceElementType(), Indices);
findLoadCallsAtConstantOffset(M, DevirtCalls, User, Offset + GEPOffset,
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp
index 693757d90a1d4..15f0a80b68dc5 100644
--- a/llvm/lib/IR/Verifier.cpp
+++ b/llvm/lib/IR/Verifier.cpp
@@ -4526,8 +4526,8 @@ void Verifier::visitMemProfMetadata(Instruction &I, MDNode *MD) {
visitCallStackMetadata(StackMD);
// Check that remaining operands are MDString.
- Check(std::all_of(MIB->op_begin() + 1, MIB->op_end(),
- [](const MDOperand &Op) { return isa<MDString>(Op); }),
+ Check(llvm::all_of(llvm::drop_begin(MIB->operands()),
+ [](const MDOperand &Op) { return isa<MDString>(Op); }),
"Not all !memprof MemInfoBlock operands 1 to N are MDString", MIB);
}
}
diff --git a/llvm/lib/Target/SPIRV/SPIRVModuleAnalysis.cpp b/llvm/lib/Target/SPIRV/SPIRVModuleAnalysis.cpp
index 7e7183ef396f7..d9bb5a248f00c 100644
--- a/llvm/lib/Target/SPIRV/SPIRVModuleAnalysis.cpp
+++ b/llvm/lib/Target/SPIRV/SPIRVModuleAnalysis.cpp
@@ -20,6 +20,7 @@
#include "SPIRVTargetMachine.h"
#include "SPIRVUtils.h"
#include "TargetInfo/SPIRVTargetInfo.h"
+#include "llvm/ADT/STLExtras.h"
#include "llvm/CodeGen/MachineModuleInfo.h"
#include "llvm/CodeGen/TargetPassConfig.h"
@@ -77,10 +78,7 @@ getSymbolicOperandRequirements(SPIRV::OperandCategory::OperandCategory Category,
// If there are no capabilities, or we can't satisfy the version or
// capability requirements, use the list of extensions (if the subtarget
// can handle them all).
- if (std::all_of(ReqExts.begin(), ReqExts.end(),
- [&ST](const SPIRV::Extension::Extension &Ext) {
- return ST.canUseExtension(Ext);
- })) {
+ if (llvm::all_of(ReqExts, [&ST](const SPIRV::Extension::Extension &Ext) {
return {true, {}, ReqExts, 0, 0}; // TODO: add versions to extensions.
}
return {false, {}, {}, 0, 0};
More information about the llvm-commits
mailing list