Searched refs:IsRedundant (Results 1 - 25 of 35) sorted by relevance

12

/external/v8/src/compiler/
H A Dmove-optimizer.cc121 if (!move->IsRedundant()) return i;
239 if (move->IsRedundant()) continue;
251 if (move->IsRedundant()) continue;
277 if (move->IsRedundant()) continue;
306 if (move->IsRedundant()) continue;
317 if (move->IsRedundant()) continue;
412 if (move->IsRedundant()) continue;
483 if (move->IsRedundant()) continue;
532 if (move->IsRedundant()) continue;
H A Dgap-resolver.cc92 if (move->IsRedundant()) {
141 DCHECK(!move->IsRedundant());
H A Dregister-allocator-verifier.cc40 if (move->IsRedundant()) continue;
280 if (move->IsEliminated() || move->IsRedundant()) continue;
H A Dinstruction.cc267 bool ParallelMove::IsRedundant() const { function in class:v8::internal::compiler::ParallelMove
269 if (!move->IsRedundant()) return false;
352 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) {
H A Dinstruction.h700 bool IsRedundant() const { function in class:v8::internal::compiler::final
754 bool IsRedundant() const;
/external/v8/src/crankshaft/
H A Dlithium.cc170 bool LParallelMove::IsRedundant() const { function in class:v8::internal::LParallelMove
172 if (!move_operands_[i].IsRedundant()) return false;
302 if (label->IsRedundant() &&
309 if (!gap->IsRedundant()) {
H A Dlithium.h295 bool IsRedundant() const { function in class:v8::internal::BASE_EMBEDDED
356 bool IsRedundant() const;
/external/v8/src/crankshaft/arm/
H A Dlithium-gap-resolver-arm.cc74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
96 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-arm.h321 bool IsRedundant() const;
356 return !IsRedundant();
/external/v8/src/crankshaft/arm64/
H A Dlithium-gap-resolver-arm64.cc76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
90 DCHECK(!current_move.IsRedundant());
H A Dlithium-arm64.h376 bool IsRedundant() const;
411 return !IsRedundant();
/external/v8/src/crankshaft/mips/
H A Dlithium-gap-resolver-mips.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
81 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-mips.h319 bool IsRedundant() const;
354 return !IsRedundant();
/external/v8/src/crankshaft/mips64/
H A Dlithium-gap-resolver-mips64.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
81 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-mips64.h322 bool IsRedundant() const;
357 return !IsRedundant();
/external/v8/src/crankshaft/ppc/
H A Dlithium-gap-resolver-ppc.cc61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
83 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-ppc.h318 bool IsRedundant() const;
353 return !IsRedundant();
/external/v8/src/crankshaft/s390/
H A Dlithium-gap-resolver-s390.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
80 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-s390.h310 bool IsRedundant() const;
344 return !IsRedundant();
/external/v8/src/crankshaft/x64/
H A Dlithium-gap-resolver-x64.cc54 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
69 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-x64.h326 bool IsRedundant() const;
362 return !IsRedundant();
/external/v8/src/crankshaft/x87/
H A Dlithium-gap-resolver-x87.cc59 if (!move.IsRedundant()) AddMove(move);
74 DCHECK(!moves_[index].IsRedundant());
/external/v8/src/crankshaft/ia32/
H A Dlithium-gap-resolver-ia32.cc58 if (!move.IsRedundant()) AddMove(move);
73 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-ia32.h323 bool IsRedundant() const;
358 return !IsRedundant();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp542 bool IsRedundant = false; local
557 IsRedundant = true;
564 if (IsRedundant)

Completed in 684 milliseconds

12