/external/v8/src/compiler/ |
H A D | gap-resolver.cc | 22 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 D | move-optimizer.cc | 66 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 D | register-allocator-verifier.cc | 38 if (move->IsRedundant()) continue; 277 if (move->IsEliminated() || move->IsRedundant()) continue;
|
H A D | instruction.cc | 221 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 D | instruction.h | 668 bool IsRedundant() const { function in class:v8::internal::compiler::final 720 bool IsRedundant() const;
|
/external/v8/test/cctest/compiler/ |
H A D | test-gap-resolver.cc | 21 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 D | move-optimizer-unittest.cc | 26 if (move->IsRedundant()) continue; 36 if (move->IsRedundant()) continue; 235 if (move->IsRedundant()) {
|
H A D | register-allocator-unittest.cc | 20 if (move->IsEliminated() || move->IsRedundant()) continue; 69 if (move->IsEliminated() || move->IsRedundant()) continue;
|
/external/v8/src/crankshaft/ |
H A D | lithium.cc | 168 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 D | lithium.h | 295 bool IsRedundant() const { function in class:v8::internal::BASE_EMBEDDED 356 bool IsRedundant() const;
|
/external/v8/src/crankshaft/arm/ |
H A D | lithium-gap-resolver-arm.cc | 74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); 96 DCHECK(!moves_[index].IsRedundant());
|
H A D | lithium-arm.h | 329 bool IsRedundant() const; 364 return !IsRedundant();
|
/external/v8/src/crankshaft/arm64/ |
H A D | lithium-gap-resolver-arm64.cc | 76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); 90 DCHECK(!current_move.IsRedundant());
|
/external/v8/src/crankshaft/mips/ |
H A D | lithium-gap-resolver-mips.cc | 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); 81 DCHECK(!moves_[index].IsRedundant());
|
H A D | lithium-mips.h | 327 bool IsRedundant() const; 362 return !IsRedundant();
|
/external/v8/src/crankshaft/mips64/ |
H A D | lithium-gap-resolver-mips64.cc | 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); 81 DCHECK(!moves_[index].IsRedundant());
|
H A D | lithium-mips64.h | 330 bool IsRedundant() const; 365 return !IsRedundant();
|
/external/v8/src/crankshaft/ppc/ |
H A D | lithium-gap-resolver-ppc.cc | 61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); 83 DCHECK(!moves_[index].IsRedundant());
|
H A D | lithium-ppc.h | 326 bool IsRedundant() const; 361 return !IsRedundant();
|
/external/v8/src/crankshaft/s390/ |
H A D | lithium-gap-resolver-s390.cc | 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); 80 DCHECK(!moves_[index].IsRedundant());
|
/external/v8/src/crankshaft/x64/ |
H A D | lithium-gap-resolver-x64.cc | 53 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); 68 DCHECK(!moves_[index].IsRedundant());
|
/external/v8/src/crankshaft/x87/ |
H A D | lithium-gap-resolver-x87.cc | 59 if (!move.IsRedundant()) AddMove(move); 74 DCHECK(!moves_[index].IsRedundant());
|
/external/v8/src/crankshaft/ia32/ |
H A D | lithium-gap-resolver-ia32.cc | 58 if (!move.IsRedundant()) AddMove(move); 73 DCHECK(!moves_[index].IsRedundant());
|
H A D | lithium-ia32.h | 331 bool IsRedundant() const; 366 return !IsRedundant();
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineVectorOps.cpp | 453 bool IsRedundant = false; local 468 IsRedundant = true; 475 if (IsRedundant)
|