/external/v8/src/compiler/ |
D | gap-resolver.cc | 22 inline bool IsRedundant(MoveOperands* move) { return move->IsRedundant(); } in IsRedundant() function 30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant)); in Resolve() 45 DCHECK(!move->IsRedundant()); in PerformMove()
|
D | move-optimizer.cc | 74 if (!move->IsRedundant()) return i; in FindFirstNonEmptySlot() 130 if (move->IsRedundant()) continue; in CompressMoves() 142 if (move->IsRedundant()) continue; in CompressMoves() 236 if (move->IsRedundant()) continue; in OptimizeMerge() 275 if (move->IsRedundant()) continue; in OptimizeMerge() 321 if (move->IsRedundant()) continue; in FinalizeMoves()
|
D | instruction.cc | 213 bool ParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::compiler::ParallelMove 215 if (!move->IsRedundant()) return false; in IsRedundant() 293 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) { in AreMovesRedundant()
|
D | instruction.h | 596 bool IsRedundant() const { in IsRedundant() function 642 bool IsRedundant() const;
|
D | register-allocator-verifier.cc | 38 if (move->IsRedundant()) continue; in VerifyAllocatedGaps()
|
/external/v8/test/unittests/compiler/ |
D | move-optimizer-unittest.cc | 25 if (move->IsRedundant()) continue; in NonRedundantSize() 35 if (move->IsRedundant()) continue; in Contains() 236 if (move->IsRedundant()) { in TEST_F()
|
D | register-allocator-unittest.cc | 20 if (move->IsEliminated() || move->IsRedundant()) continue; in GetMoveCount() 69 if (move->IsEliminated() || move->IsRedundant()) continue; in IsParallelMovePresent()
|
/external/v8/src/crankshaft/ |
D | lithium.cc | 163 bool LParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::LParallelMove 165 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant() 308 if (label->IsRedundant() && in MarkEmptyBlocks() 315 if (!gap->IsRedundant()) { in MarkEmptyBlocks()
|
D | lithium.h | 294 bool IsRedundant() const { in IsRedundant() function 355 bool IsRedundant() const; in LITHIUM_OPERAND_LIST()
|
/external/v8/test/cctest/compiler/ |
D | test-gap-resolver.cc | 21 if (!m->IsRedundant()) write(m->destination(), copy.read(m->source())); in ExecuteInParallel() 172 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) { in Create()
|
/external/v8/src/crankshaft/ppc/ |
D | lithium-gap-resolver-ppc.cc | 61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 83 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-ppc.h | 323 bool IsRedundant() const; 358 return !IsRedundant(); in HasInterestingComment()
|
/external/v8/src/crankshaft/arm64/ |
D | lithium-gap-resolver-arm64.cc | 76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 90 DCHECK(!current_move.IsRedundant()); in PerformMove()
|
/external/v8/src/crankshaft/mips64/ |
D | lithium-gap-resolver-mips64.cc | 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 81 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-mips64.h | 328 bool IsRedundant() const; 363 return !IsRedundant(); in HasInterestingComment()
|
/external/v8/src/crankshaft/mips/ |
D | lithium-gap-resolver-mips.cc | 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 81 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-mips.h | 325 bool IsRedundant() const; 360 return !IsRedundant(); in HasInterestingComment()
|
/external/v8/src/crankshaft/arm/ |
D | lithium-gap-resolver-arm.cc | 74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 96 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-arm.h | 328 bool IsRedundant() const; 363 return !IsRedundant(); in HasInterestingComment()
|
/external/v8/src/crankshaft/x64/ |
D | lithium-gap-resolver-x64.cc | 53 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 68 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-x64.h | 331 bool IsRedundant() const; 367 return !IsRedundant(); in HasInterestingComment()
|
/external/v8/src/crankshaft/x87/ |
D | lithium-gap-resolver-x87.cc | 59 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList() 74 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-x87.h | 333 bool IsRedundant() const; 368 return !IsRedundant(); in HasInterestingComment()
|
/external/v8/src/crankshaft/ia32/ |
D | lithium-gap-resolver-ia32.cc | 58 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList() 73 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 453 bool IsRedundant = false; in visitInsertValueInst() local 468 IsRedundant = true; in visitInsertValueInst() 475 if (IsRedundant) in visitInsertValueInst()
|