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

12

/external/v8/src/compiler/
H A Dgap-resolver.cc22 inline bool IsRedundant(MoveOperands* move) { return move->IsRedundant(); } function in namespace:v8::internal::compiler::__anon17311
30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant));
45 DCHECK(!move->IsRedundant());
H A Dmove-optimizer.cc66 if (!move->IsRedundant()) return i;
184 if (move->IsRedundant()) continue;
196 if (move->IsRedundant()) continue;
222 if (move->IsRedundant()) continue;
251 if (move->IsRedundant()) continue;
263 if (move->IsRedundant()) continue;
358 if (move->IsRedundant()) continue;
430 if (move->IsRedundant()) continue;
479 if (move->IsRedundant()) continue;
H A Dregister-allocator-verifier.cc38 if (move->IsRedundant()) continue;
277 if (move->IsEliminated() || move->IsRedundant()) continue;
H A Dinstruction.cc221 bool ParallelMove::IsRedundant() const { function in class:v8::internal::compiler::ParallelMove
223 if (!move->IsRedundant()) return false;
303 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) {
H A Dinstruction.h668 bool IsRedundant() const { function in class:v8::internal::compiler::final
720 bool IsRedundant() const;
/external/v8/test/cctest/compiler/
H A Dtest-gap-resolver.cc21 if (!m->IsRedundant()) write(m->destination(), copy.read(m->source()));
172 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) {
/external/v8/test/unittests/compiler/
H A Dmove-optimizer-unittest.cc26 if (move->IsRedundant()) continue;
36 if (move->IsRedundant()) continue;
235 if (move->IsRedundant()) {
H A Dregister-allocator-unittest.cc20 if (move->IsEliminated() || move->IsRedundant()) continue;
69 if (move->IsEliminated() || move->IsRedundant()) continue;
/external/v8/src/crankshaft/
H A Dlithium.cc168 bool LParallelMove::IsRedundant() const { function in class:v8::internal::LParallelMove
170 if (!move_operands_[i].IsRedundant()) return false;
301 if (label->IsRedundant() &&
308 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.h329 bool IsRedundant() const;
364 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());
/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.h327 bool IsRedundant() const;
362 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.h330 bool IsRedundant() const;
365 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.h326 bool IsRedundant() const;
361 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());
/external/v8/src/crankshaft/x64/
H A Dlithium-gap-resolver-x64.cc53 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
68 DCHECK(!moves_[index].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.h331 bool IsRedundant() const;
366 return !IsRedundant();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp453 bool IsRedundant = false; local
468 IsRedundant = true;
475 if (IsRedundant)

Completed in 173 milliseconds

12