/external/v8/src/compiler/ |
D | move-optimizer.cc | 121 if (!move->IsRedundant()) return i; in FindFirstNonEmptySlot() 239 if (move->IsRedundant()) continue; in MigrateMoves() 251 if (move->IsRedundant()) continue; in MigrateMoves() 277 if (move->IsRedundant()) continue; in MigrateMoves() 306 if (move->IsRedundant()) continue; in CompressMoves() 317 if (move->IsRedundant()) continue; in CompressMoves() 412 if (move->IsRedundant()) continue; in OptimizeMerge() 483 if (move->IsRedundant()) continue; in OptimizeMerge() 532 if (move->IsRedundant()) continue; in FinalizeMoves()
|
D | gap-resolver.cc | 92 if (move->IsRedundant()) { in Resolve() 141 DCHECK(!move->IsRedundant()); in PerformMove()
|
D | register-allocator-verifier.cc | 38 if (move->IsRedundant()) continue; in VerifyAllocatedGaps() 278 if (move->IsEliminated() || move->IsRedundant()) continue; in PerformParallelMoves()
|
D | instruction.cc | 256 bool ParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::compiler::ParallelMove 258 if (!move->IsRedundant()) return false; in IsRedundant() 341 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) { in AreMovesRedundant()
|
D | instruction.h | 697 bool IsRedundant() const { in NON_EXPORTED_BASE() 751 bool IsRedundant() const; in NON_EXPORTED_BASE()
|
/external/v8/src/crankshaft/ |
D | lithium.cc | 169 bool LParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::LParallelMove 171 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant() 301 if (label->IsRedundant() && in MarkEmptyBlocks() 308 if (!gap->IsRedundant()) { in MarkEmptyBlocks()
|
D | lithium.h | 295 bool IsRedundant() const { in IsRedundant() function 356 bool IsRedundant() const; in LITHIUM_OPERAND_LIST()
|
/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/s390/ |
D | lithium-gap-resolver-s390.cc | 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 80 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-s390.h | 311 bool IsRedundant() const; 345 return !IsRedundant(); in HasInterestingComment()
|
/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 | 318 bool IsRedundant() const; 353 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 | 319 bool IsRedundant() const; 354 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 | 321 bool IsRedundant() const; 356 return !IsRedundant(); in HasInterestingComment()
|
/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 | 322 bool IsRedundant() const; 357 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 | 326 bool IsRedundant() const; 362 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 | 326 bool IsRedundant() const; 361 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()
|
D | lithium-ia32.h | 323 bool IsRedundant() const; 358 return !IsRedundant(); in HasInterestingComment()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 542 bool IsRedundant = false; in visitInsertValueInst() local 557 IsRedundant = true; in visitInsertValueInst() 564 if (IsRedundant) in visitInsertValueInst()
|