Home
last modified time | relevance | path

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

12

/external/v8/src/compiler/
Dmove-optimizer.cc121 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()
Dgap-resolver.cc92 if (move->IsRedundant()) { in Resolve()
141 DCHECK(!move->IsRedundant()); in PerformMove()
Dregister-allocator-verifier.cc38 if (move->IsRedundant()) continue; in VerifyAllocatedGaps()
278 if (move->IsEliminated() || move->IsRedundant()) continue; in PerformParallelMoves()
Dinstruction.cc256 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()
Dinstruction.h697 bool IsRedundant() const { in NON_EXPORTED_BASE()
751 bool IsRedundant() const; in NON_EXPORTED_BASE()
/external/v8/src/crankshaft/
Dlithium.cc169 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()
Dlithium.h295 bool IsRedundant() const { in IsRedundant() function
356 bool IsRedundant() const; in LITHIUM_OPERAND_LIST()
/external/v8/src/crankshaft/arm64/
Dlithium-gap-resolver-arm64.cc76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
90 DCHECK(!current_move.IsRedundant()); in PerformMove()
/external/v8/src/crankshaft/s390/
Dlithium-gap-resolver-s390.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
80 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-s390.h311 bool IsRedundant() const;
345 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/ppc/
Dlithium-gap-resolver-ppc.cc61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
83 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-ppc.h318 bool IsRedundant() const;
353 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/mips/
Dlithium-gap-resolver-mips.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
81 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-mips.h319 bool IsRedundant() const;
354 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/arm/
Dlithium-gap-resolver-arm.cc74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
96 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-arm.h321 bool IsRedundant() const;
356 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/mips64/
Dlithium-gap-resolver-mips64.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
81 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-mips64.h322 bool IsRedundant() const;
357 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/x64/
Dlithium-gap-resolver-x64.cc53 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
68 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-x64.h326 bool IsRedundant() const;
362 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/x87/
Dlithium-gap-resolver-x87.cc59 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList()
74 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-x87.h326 bool IsRedundant() const;
361 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/ia32/
Dlithium-gap-resolver-ia32.cc58 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList()
73 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-ia32.h323 bool IsRedundant() const;
358 return !IsRedundant(); in HasInterestingComment()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp542 bool IsRedundant = false; in visitInsertValueInst() local
557 IsRedundant = true; in visitInsertValueInst()
564 if (IsRedundant) in visitInsertValueInst()

12