Use llvm::any_of and llvm::all_of (NFC)

This commit is contained in:
Kazu Hirata 2021-12-11 11:54:36 -08:00
parent 731676b10d
commit c2bb9637d9
7 changed files with 8 additions and 39 deletions

View file

@ -108,12 +108,7 @@ Comment::child_iterator Comment::child_end() const {
}
bool TextComment::isWhitespaceNoCache() const {
for (StringRef::const_iterator I = Text.begin(), E = Text.end();
I != E; ++I) {
if (!clang::isWhitespace(*I))
return false;
}
return true;
return llvm::all_of(Text, clang::isWhitespace);
}
bool ParagraphComment::isWhitespaceNoCache() const {

View file

@ -2040,11 +2040,7 @@ static bool ContainsCompileOrAssembleAction(const Action *A) {
isa<AssembleJobAction>(A))
return true;
for (const Action *Input : A->inputs())
if (ContainsCompileOrAssembleAction(Input))
return true;
return false;
return llvm::any_of(A->inputs(), ContainsCompileOrAssembleAction);
}
void Driver::BuildUniversalActions(Compilation &C, const ToolChain &TC,

View file

@ -976,11 +976,7 @@ static bool ContainsCompileAction(const Action *A) {
if (isa<CompileJobAction>(A) || isa<BackendJobAction>(A))
return true;
for (const auto &AI : A->inputs())
if (ContainsCompileAction(AI))
return true;
return false;
return llvm::any_of(A->inputs(), ContainsCompileAction);
}
/// Check if -relax-all should be passed to the internal assembler.

View file

@ -40,11 +40,7 @@ public:
if (!Group.diagnostics().empty())
return false;
for (const GroupRecord &GR : Group.subgroups())
if (!unimplemented(GR))
return false;
return true;
return llvm::all_of(Group.subgroups(), unimplemented);
}
static bool enabledByDefault(const GroupRecord &Group) {

View file

@ -57,11 +57,7 @@ bool MetadataVerifier::verifyArray(
auto &Array = Node.getArray();
if (Size && Array.size() != *Size)
return false;
for (auto &Item : Array)
if (!verifyNode(Item))
return false;
return true;
return llvm::all_of(Array, verifyNode);
}
bool MetadataVerifier::verifyEntry(

View file

@ -251,10 +251,7 @@ namespace {
SetVector<MachineInstr *> &Predicates = PredicatedInsts[MI]->Predicates;
if (Exclusive && Predicates.size() != 1)
return false;
for (auto *PredMI : Predicates)
if (isVCTP(PredMI))
return true;
return false;
return llvm::any_of(Predicates, isVCTP);
}
// Is the VPST, controlling the block entry, predicated upon a VCTP.
@ -351,10 +348,7 @@ namespace {
}
bool containsVCTP() const {
for (auto *MI : Insts)
if (isVCTP(MI))
return true;
return false;
return llvm::any_of(Insts, isVCTP);
}
unsigned size() const { return Insts.size(); }

View file

@ -134,11 +134,7 @@ bool X86FastTileConfig::isAMXInstr(MachineInstr &MI) {
if (MI.getOpcode() == X86::PLDTILECFGV || MI.isDebugInstr())
return false;
for (MachineOperand &MO : MI.operands())
if (isTilePhysReg(MO))
return true;
return false;
return llvm::any_of(MI.operands(), isTilePhysReg);
}
MachineInstr *X86FastTileConfig::getKeyAMXInstr(MachineInstr *MI) {